@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Amiri';
  src: url('fonts/Amiri-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --verde-escuro: #00342B;
  --verde-medio: #009053;
  --verde-claro: #7CCDB0;
  --verde-bg: #E8F5F0;
  --preto: #0D0D0D;
  --cinza: #6B6B6B;
  --cinza-claro: #F4F4F2;
  --branco: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Amiri', Georgia, serif;
  background: var(--branco);
  color: var(--preto);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,52,43,0.1);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { height: 38px; display: flex; align-items: center; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Amiri', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--verde-escuro);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  background: var(--verde-escuro) !important;
  color: white !important;
  padding: 10px 24px;
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
}
.nav-cta:hover { opacity: 0.85 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--verde-escuro);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--verde-escuro);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-bg-symbol {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  width: 58%;
  max-width: 680px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  color: white;
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--verde-claro); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-pillars { display: flex; flex-direction: column; gap: 1px; width: 100%; }
.hero-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--verde-medio);
  padding: 22px 28px;
  transition: background 0.3s;
}
.hero-pillar:hover { background: rgba(255,255,255,0.09); }
.hero-pillar-title {
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
}
.hero-pillar-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--verde-medio);
  color: white;
  padding: 14px 36px;
  font-family: 'Amiri', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { background: #007a47; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-family: 'Amiri', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.07); }
.btn-large { padding: 18px 48px; font-size: 15px; }

/* ─── DIVIDER STRIP ─── */
.divider-strip {
  background: var(--verde-medio);
  padding: 18px 5vw;
  display: flex;
  gap: 50px;
  overflow: hidden;
}
.divider-item {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  font-family: 'Amiri', serif;
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 5vw; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 14px;
  font-weight: 400;
}
.section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--verde-escuro);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--verde-medio); }
.section-lead {
  font-size: 18px;
  color: var(--cinza);
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
}
.deco-line { width: 60px; height: 1px; background: var(--verde-medio); margin: 28px 0; }

/* ─── SOBRE ─── */
.sobre { background: white; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.sobre-text p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 400;
}
.filosofia-lista { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.filosofia-lista li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--preto);
}
.filosofia-lista li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--verde-medio);
  flex-shrink: 0;
  margin-top: 13px;
}
.sobre-right {
  background: var(--verde-escuro);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.sobre-right-bg {
  position: absolute;
  bottom: -10%;
  right: -10%;
  opacity: 0.08;
  width: 65%;
  pointer-events: none;
}
.sobre-card-title {
  font-family: 'Amiri', serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.sobre-card-title em { font-style: italic; color: var(--verde-claro); }
.sobre-card-text {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.sobre-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.value-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  font-family: 'Amiri', serif;
}

/* ─── ESPECIALIDADES ─── */
.especialidades { background: var(--cinza-claro); }
.especialidades-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.espec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.espec-card {
  background: white;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.espec-card:hover { border-top-color: var(--verde-medio); transform: translateY(-4px); }
.espec-number {
  font-family: 'Amiri', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--verde-bg);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color 0.3s;
}
.espec-card:hover .espec-number { color: rgba(0,144,83,0.12); }
.espec-icon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--verde-medio); }
.espec-icon svg { width: 100%; height: 100%; stroke: var(--verde-medio); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.espec-name {
  font-family: 'Amiri', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--verde-escuro);
  margin-bottom: 10px;
}
.espec-desc { font-size: 15px; color: var(--cinza); line-height: 1.7; }

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--verde-escuro);
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  width: 60%;
  pointer-events: none;
}
.manifesto-quote {
  font-family: 'Amiri', serif;
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.manifesto-quote em { color: var(--verde-claro); font-style: normal; }
.manifesto-sub {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
  font-family: 'Amiri', serif;
}

/* ─── PARA QUEM ─── */
.para-quem { background: white; }
.pq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.pq-items { display: flex; flex-direction: column; }
.pq-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,52,43,0.1);
  display: flex;
  align-items: center;
  gap: 22px;
}
.pq-item:first-child { border-top: 1px solid rgba(0,52,43,0.1); }
.pq-dot { width: 8px; height: 8px; background: var(--verde-medio); border-radius: 50%; flex-shrink: 0; }
.pq-text { font-size: 17px; color: var(--preto); line-height: 1.55; }
.pq-right { display: flex; flex-direction: column; gap: 20px; }
.pq-stat {
  background: var(--cinza-claro);
  padding: 30px 34px;
  border-left: 4px solid var(--verde-escuro);
}
.pq-stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 10px;
  font-family: 'Amiri', serif;
}
.pq-stat-text {
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--verde-escuro);
  line-height: 1.4;
}

/* ─── ESTRUTURA ─── */
.estrutura { background: var(--verde-bg); }
.estrutura-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.est-card { background: white; padding: 36px 28px; }
.est-line { width: 32px; height: 2px; background: var(--verde-medio); margin-bottom: 18px; }
.est-title {
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--verde-escuro);
  margin-bottom: 10px;
  line-height: 1.3;
}
.est-desc { font-size: 14px; color: var(--cinza); line-height: 1.7; }

/* ─── COMPROMISSO ─── */
.compromisso { background: white; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.comp-card { background: var(--cinza-claro); padding: 52px; }
.comp-card:nth-child(2) { background: var(--verde-escuro); }
.comp-title {
  font-family: 'Amiri', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--verde-escuro);
  margin-bottom: 18px;
  line-height: 1.3;
}
.comp-card:nth-child(2) .comp-title { color: white; }
.comp-text { font-size: 16px; color: #4a4a4a; line-height: 1.85; }
.comp-card:nth-child(2) .comp-text { color: rgba(255,255,255,0.68); }

/* ─── CTA ─── */
.cta-section {
  background: var(--verde-escuro);
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  width: 48%;
  pointer-events: none;
}
.cta-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: 'Amiri', serif;
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.cta-title em { font-style: italic; color: var(--verde-claro); }
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 44px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  background: #050F0C;
  padding: 60px 5vw 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo { height: 28px; width: auto; margin-bottom: 18px; opacity: 0.6; }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-family: 'Amiri', serif;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.7s ease both; }
.hero-title    { animation: fadeUp 0.7s 0.1s ease both; }
.hero-desc     { animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions  { animation: fadeUp 0.7s 0.3s ease both; }
.hero-right    { animation: fadeUp 0.7s 0.4s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .estrutura-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 24px 5vw 32px;
    border-bottom: 1px solid rgba(0,52,43,0.1);
    gap: 20px;
    z-index: 99;
  }
  .nav-links.open .nav-cta { width: fit-content; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 48px; }
  .hero-bg-symbol { width: 100%; right: -20%; top: auto; bottom: 0; transform: none; opacity: 0.04; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .pq-grid { grid-template-columns: 1fr; gap: 48px; }
  .espec-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .especialidades-header { flex-direction: column; align-items: flex-start; }
  .divider-strip { gap: 28px; }
}
@media (max-width: 600px) {
  section { padding: 72px 5vw; }
  .espec-grid { grid-template-columns: 1fr; }
  .estrutura-grid { grid-template-columns: 1fr; }
  .sobre-right { padding: 32px 24px; }
  .comp-card { padding: 36px 28px; }
  .hero-title { font-size: 40px; }
  .divider-strip { display: none; }
}

/* ─── PROFISSIONAIS ─── */
.profissionais { background: var(--cinza-claro); }
.profissionais .section-lead { margin-bottom: 0; }

.prof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.prof-card {
  background: white;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  overflow: hidden;
  transition: transform 0.3s;
}
.prof-card:hover { transform: translateY(-3px); }

.prof-card--destaque {
  grid-column: 1 / -1;
  grid-template-columns: 300px 1fr;
}

.prof-photo-wrap {
  overflow: hidden;
  position: relative;
  background: var(--verde-bg);
}
.prof-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.4s;
}
.prof-card:hover .prof-photo { filter: grayscale(0%); transform: scale(1.02); }

.prof-card--destaque .prof-photo-wrap { min-height: 380px; }
.prof-card:not(.prof-card--destaque) .prof-photo-wrap { min-height: 320px; }

.prof-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prof-role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde-medio);
  font-family: 'Amiri', serif;
  font-weight: 400;
}

.prof-name {
  font-family: 'Amiri', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--verde-escuro);
  line-height: 1.15;
}
.prof-card--destaque .prof-name { font-size: 34px; }

.prof-credentials {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,52,43,0.08);
  border-bottom: 1px solid rgba(0,52,43,0.08);
}
.prof-credentials span {
  font-size: 13px;
  color: var(--cinza);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.prof-credentials span::before {
  content: '— ';
  color: var(--verde-medio);
}

.prof-bio {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.85;
  font-weight: 400;
  flex: 1;
}

.prof-filosofia {
  background: var(--verde-bg);
  border-left: 3px solid var(--verde-medio);
  padding: 14px 18px;
  margin-top: auto;
}
.prof-filosofia-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde-medio);
  display: block;
  margin-bottom: 6px;
  font-family: 'Amiri', serif;
}
.prof-filosofia p {
  font-family: 'Amiri', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--verde-escuro);
  line-height: 1.5;
}

.prof-photo-wrap--placeholder { background: var(--verde-bg); }
.prof-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.prof-photo-placeholder svg { width: 64px; height: 64px; stroke: var(--verde-medio); opacity: 0.45; }
.prof-photo-placeholder span {
  font-family: 'Amiri', serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  opacity: 0.45;
}

@media (max-width: 900px) {
  .prof-grid { grid-template-columns: 1fr; }
  .prof-card--destaque { grid-column: auto; grid-template-columns: 200px 1fr; }
  .prof-card--destaque .prof-photo-wrap { min-height: 280px; }
  .prof-card:not(.prof-card--destaque) { grid-template-columns: 160px 1fr; }
  .prof-card:not(.prof-card--destaque) .prof-photo-wrap { min-height: 260px; }
  .prof-info { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .prof-card,
  .prof-card--destaque { grid-template-columns: 1fr; }
  .prof-photo-wrap,
  .prof-card--destaque .prof-photo-wrap,
  .prof-card:not(.prof-card--destaque) .prof-photo-wrap { min-height: 280px; max-height: 320px; }
  .prof-name { font-size: 24px; }
  .prof-card--destaque .prof-name { font-size: 26px; }
}

/* ─── AGENDAMENTO ─── */
.agende-section {
  background: var(--verde-escuro);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
.agende-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  width: 48%;
  pointer-events: none;
}
.agende-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.agende-left { display: flex; flex-direction: column; gap: 0; }
.agende-left .cta-title { text-align: left; }
.agende-left .cta-label { text-align: left; }
.agende-left .cta-desc { text-align: left; }

/* Form wrapper */
.agende-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px 40px;
}
.agende-form { display: flex; flex-direction: column; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: 'Amiri', serif;
  font-weight: 400;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-family: 'Amiri', serif;
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--verde-claro);
  background: rgba(255,255,255,0.09);
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-group select option { background: var(--verde-escuro); color: white; }

.form-btn {
  background: var(--verde-medio);
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: 'Amiri', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 4px;
}
.form-btn:hover { background: #007a47; }
.form-btn:active { transform: scale(0.99); }

.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-family: 'Amiri', serif;
}

.form-success {
  background: rgba(0,144,83,0.18);
  border: 1px solid rgba(0,144,83,0.4);
  color: var(--verde-claro);
  padding: 16px 20px;
  font-size: 15px;
  text-align: center;
  border-radius: 0;
  font-family: 'Amiri', serif;
}
.form-success-icon {
  display: inline-block;
  margin-right: 8px;
  font-weight: 700;
}

/* Input validation states */
.form-group input.invalid,
.form-group select.invalid {
  border-color: #e87070;
}

/* Responsive form */
@media (max-width: 900px) {
  .agende-inner { grid-template-columns: 1fr; gap: 48px; }
  .agende-form-wrap { padding: 32px 24px; }
}
