/* ══════════════════════════════════════════════════════
   JACY BATISTA THEME – main.css
   Terapeuta Psicanalista
══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #F5F0E8;
  --warm:   #EDE5D4;
  --sand:   #D6C9B0;
  --terra:  #8B6F47;
  --deep:   #3D2B1F;
  --ink:    #1C1208;
  --rose:   #C2866E;
  --sage:   #7A8C6E;
  --gold:   #B8924A;
  --white:  #FDFAF5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .4;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-body); font-size: .7rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 1rem;
}
.gold-line { display: block; width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--terra); color: var(--white);
  padding: .9rem 2.4rem; font-family: var(--font-body); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); color: var(--white); }
.btn-outline {
  display: inline-block; border: 1px solid var(--terra); color: var(--terra);
  padding: .9rem 2.4rem; font-family: var(--font-body); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all .3s;
}
.btn-outline:hover { background: var(--terra); color: var(--white); transform: translateY(-2px); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(245,240,232,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(60,40,20,.08);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 400; color: var(--deep); text-decoration: none; letter-spacing: .04em;
}
.nav-logo span { color: var(--terra); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--deep); text-decoration: none; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--terra) !important; color: var(--white) !important;
  padding: .55rem 1.5rem !important; border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--deep) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--deep); transition: .3s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(194,134,110,.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(122,140,110,.10) 0%, transparent 55%),
    var(--cream);
}
.hero-left {
  position: relative; z-index: 1;
  padding: 8rem 3rem 6rem 5rem;
  animation: fadeSlideUp .9s ease both;
}
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terra); display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
h1 {
  font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--deep); margin-bottom: 1.8rem;
}
h1 em { font-style: italic; color: var(--terra); }
.hero-subtitle { font-size: 1rem; color: #6B5A46; max-width: 440px; margin-bottom: 3rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 3rem; animation: fadeIn 1.2s ease .3s both;
}
.hero-photo-frame { position: relative; width: 420px; max-width: 90%; }
.hero-photo-frame::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%; border: 1px solid var(--sand); border-radius: 4px;
}
.hero-photo-frame::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 60%; height: 60%; border: 1px solid var(--rose); border-radius: 2px; opacity: .5;
}
.hero-photo { width: 100%; aspect-ratio: 3/4; border-radius: 4px; object-fit: cover; display: block; }
.hero-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: 4px;
  background: linear-gradient(160deg, var(--warm) 0%, var(--sand) 40%, rgba(139,111,71,.2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 2rem; position: relative; overflow: hidden;
}
.hero-photo-placeholder::before {
  content: ''; position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 160px; background: rgba(139,111,71,.18); border-radius: 60px 60px 20px 20px;
}
.hero-photo-placeholder::after {
  content: ''; position: absolute; bottom: 210px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 70px; background: rgba(139,111,71,.2); border-radius: 50%;
}
.photo-name-tag { position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.1rem; color: var(--deep); font-style: italic; text-align: center; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra);
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ══════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════ */
#intro-strip { background: var(--deep); padding: 4rem 2rem; text-align: center; }
.intro-strip-inner { max-width: 760px; margin: 0 auto; }
.intro-strip-inner blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.4;
}
.intro-strip-inner cite {
  display: block; font-family: var(--font-body); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-top: 1.2rem; font-style: normal;
}

/* ══════════════════════════════════════
   SOBRE
══════════════════════════════════════ */
#sobre { padding: 9rem 2rem; }
#sobre .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 7rem; align-items: center; }
.sobre-visual-inner { position: relative; width: 100%; padding-bottom: 120%; }
.sobre-img-main { position: absolute; inset: 0; background: linear-gradient(145deg, var(--warm) 0%, var(--sand) 60%, rgba(194,134,110,.25) 100%); border-radius: 4px; }
.sobre-card {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--terra); color: var(--white); padding: 1.8rem 2rem; border-radius: 2px; width: 200px;
}
.sobre-card-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; line-height: 1; display: block; }
.sobre-card-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .4rem; display: block; }
.sobre-deco { position: absolute; top: -20px; left: -20px; width: 80px; height: 80px; border: 1px solid var(--sand); border-radius: 50%; opacity: .6; }
.sobre-content h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; color: var(--deep); line-height: 1.15; margin-bottom: 1.5rem; }
.sobre-content h2 em { font-style: italic; color: var(--terra); }
.sobre-content p { color: #5C4A36; margin-bottom: 1.2rem; font-size: .97rem; }
.credential-list { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: .8rem; }
.credential-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .88rem; color: #5C4A36; }
.credential-list li::before { content: '◆'; color: var(--gold); font-size: .5rem; margin-top: .45rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   ABORDAGEM
══════════════════════════════════════ */
#abordagem { background: var(--warm); padding: 9rem 2rem; position: relative; overflow: hidden; }
#abordagem::before {
  content: 'PSICANÁLISE'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(6rem, 14vw, 14rem); font-weight: 300;
  color: rgba(139,111,71,.06); white-space: nowrap; pointer-events: none; letter-spacing: .05em;
}
#abordagem .container { position: relative; z-index: 1; }
.abordagem-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.abordagem-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--deep); line-height: 1.2; margin-bottom: 1rem; }
.abordagem-header h2 em { font-style: italic; color: var(--terra); }
.abordagem-header p { color: #6B5A46; font-size: .95rem; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.pillar { background: var(--white); border-radius: 4px; padding: 3rem 2.5rem; position: relative; transition: transform .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(60,40,20,.1); }
.pillar-num { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: rgba(139,111,71,.15); line-height: 1; position: absolute; top: 1.5rem; right: 2rem; }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--terra); }
.pillar h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--deep); margin-bottom: .8rem; }
.pillar p { font-size: .88rem; color: #6B5A46; line-height: 1.75; }

/* ══════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════ */
#como { padding: 9rem 2rem; }
.como-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.como-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--deep); line-height: 1.2; }
.como-header h2 em { font-style: italic; color: var(--terra); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--sand) 20%, var(--sand) 80%, transparent); }
.step { text-align: center; padding: 0 1.5rem; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--sand); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--terra);
  position: relative; z-index: 1; transition: background .3s, border-color .3s;
}
.step:hover .step-circle { background: var(--terra); border-color: var(--terra); color: var(--white); }
.step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--deep); margin-bottom: .5rem; }
.step p { font-size: .84rem; color: #6B5A46; }

/* ══════════════════════════════════════
   ESPECIALIDADES
══════════════════════════════════════ */
#especialidades { background: var(--deep); padding: 9rem 2rem; overflow: hidden; position: relative; }
#especialidades::after { content: ''; position: absolute; bottom: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(194,134,110,.15) 0%, transparent 70%); pointer-events: none; }
.espec-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.espec-header .section-label { color: var(--gold); }
.espec-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--cream); line-height: 1.2; }
.espec-header h2 em { font-style: italic; color: var(--rose); }
.espec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.espec-card { border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 2.5rem; transition: border-color .3s, background .3s; position: relative; overflow: hidden; }
.espec-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(194,134,110,.07) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.espec-card:hover { border-color: rgba(194,134,110,.35); }
.espec-card:hover::before { opacity: 1; }
.espec-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.espec-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: .6rem; }
.espec-card p { font-size: .84rem; color: rgba(245,240,232,.6); line-height: 1.7; }

/* ══════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════ */
#depoimentos { padding: 9rem 2rem; background: var(--cream); position: relative; overflow: hidden; }
#depoimentos::before { content: '"'; position: absolute; top: -1rem; left: 3%; font-family: var(--font-display); font-size: 30rem; color: rgba(139,111,71,.05); line-height: 1; pointer-events: none; }
.dep-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.dep-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--deep); }
.dep-header h2 em { font-style: italic; color: var(--terra); }
.dep-header p { color: #6B5A46; margin-top: 1rem; font-size: .95rem; }
.testimonials-slider { position: relative; max-width: 900px; margin: 0 auto; }
.testimonials-track { overflow: hidden; }
.testimonials-inner { display: flex; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card { background: var(--white); border-radius: 4px; padding: 3.5rem 4rem; position: relative; box-shadow: 0 4px 32px rgba(60,40,20,.07); }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 6rem; color: var(--terra); opacity: .25; position: absolute; top: 1.5rem; left: 2.5rem; line-height: 1; }
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1.5rem; color: var(--gold); font-size: 1rem; }
.testimonial-text { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--deep); line-height: 1.6; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--terra)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 400; flex-shrink: 0; }
.author-info strong { display: block; font-size: .9rem; font-weight: 500; color: var(--deep); }
.author-info span { font-size: .78rem; color: var(--terra); letter-spacing: .05em; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--sand); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; color: var(--terra); font-size: 1.1rem; }
.slider-btn:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
.slider-dots { display: flex; gap: .6rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sand); cursor: pointer; transition: all .3s; }
.dot.active { background: var(--terra); width: 20px; border-radius: 3px; }

/* ══════════════════════════════════════
   NÚMEROS
══════════════════════════════════════ */
#numeros { background: linear-gradient(135deg, var(--terra) 0%, var(--deep) 100%); padding: 6rem 2rem; }
.numeros-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.numero-item { padding: 2rem; }
.numero-val { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--white); line-height: 1; display: block; margin-bottom: .5rem; }
.numero-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════
   MODALIDADES
══════════════════════════════════════ */
#modalidades { padding: 9rem 2rem; background: var(--warm); }
.modal-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
.modal-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--deep); }
.modal-header h2 em { font-style: italic; color: var(--terra); }
.modal-header p { color: #6B5A46; margin-top: 1rem; }
.modal-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.modal-card { background: var(--white); border-radius: 4px; padding: 3rem; border-left: 3px solid transparent; transition: border-color .3s, transform .3s, box-shadow .3s; }
.modal-card:hover { border-left-color: var(--terra); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(60,40,20,.1); }
.modal-card-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.modal-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--deep); margin-bottom: .8rem; }
.modal-card p { font-size: .88rem; color: #6B5A46; line-height: 1.75; }
.modal-card .tag { display: inline-block; margin-top: 1.2rem; background: var(--warm); color: var(--terra); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq { padding: 9rem 2rem; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--deep); }
.faq-header h2 em { font-style: italic; color: var(--terra); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 1.25rem; color: var(--deep); font-weight: 400; transition: color .3s; }
.faq-question:hover { color: var(--terra); }
.faq-arrow { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; color: var(--terra); font-size: .8rem; }
.faq-item.open .faq-arrow { background: var(--terra); border-color: var(--terra); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 1.8rem; color: #6B5A46; font-size: .92rem; line-height: 1.8; }

/* ══════════════════════════════════════
   CONTATO
══════════════════════════════════════ */
#contato { background: var(--deep); padding: 9rem 2rem; position: relative; overflow: hidden; }
#contato::before { content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(194,134,110,.12) 0%, transparent 60%); }
#contato::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,140,110,.1) 0%, transparent 60%); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; position: relative; z-index: 1; }
.contato-left .section-label { color: var(--gold); }
.contato-left h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 1.5rem; }
.contato-left h2 em { font-style: italic; color: var(--rose); }
.contato-left p { color: rgba(245,240,232,.7); font-size: .95rem; margin-bottom: 2.5rem; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-item-text strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-item-text span, .contact-item-text a { font-size: .9rem; color: rgba(245,240,232,.75); text-decoration: none; transition: color .3s; }
.contact-item-text a:hover { color: var(--rose); }
.contato-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 2px; padding: .85rem 1.1rem; color: var(--cream); font-family: var(--font-body); font-size: .9rem; outline: none; transition: border-color .3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group select option { background: var(--deep); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; background: var(--terra); color: var(--white); border: none; padding: 1rem; font-family: var(--font-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .3s; margin-top: .5rem; }
.btn-submit:hover { background: var(--rose); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--ink); padding: 3rem 2rem; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: .5rem; }
.footer-logo span { color: var(--terra); font-style: italic; }
.footer-tagline { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,240,232,.4); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; list-style: none; margin-bottom: 1.5rem; }
.footer-links a { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,240,232,.5); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--terra); }
.footer-bottom { font-size: .75rem; color: rgba(245,240,232,.25); border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.5rem; margin-top: 1rem; }

/* ══════════════════════════════════════
   WHATSAPP
══════════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; display: flex; align-items: center; gap: .8rem; background: #25D366; color: white; padding: .85rem 1.5rem .85rem 1rem; border-radius: 50px; text-decoration: none; font-size: .82rem; font-weight: 500; letter-spacing: .05em; box-shadow: 0 8px 32px rgba(37,211,102,.4); transition: transform .3s, box-shadow .3s; animation: fadeIn .8s ease 1.5s both; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.5); color: white; }
.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce     { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 2rem 2rem; }
  .hero-right { display: none; }
  #sobre .container { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-visual { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .espec-grid { grid-template-columns: 1fr 1fr; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .modal-cards { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .testimonial-card { padding: 2.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .espec-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
