/* ═══════════════════════════════════════
   NATHÁLIA SOUTO · PSICÓLOGA
   Design System – Paleta Vinho & Areia
   ═══════════════════════════════════════ */

:root {
  /* Paleta principal */
  --cream:       #e5e1dd;
  --cream-dark:  #d9d4cf;
  --terracota:   #632024;
  --terracota-d: #4e191d;
  --sage:        #25344f;
  --sage-light:  #3d5275;
  --sage-dark:   #1a2538;
  --brown:       #25344f;
  --brown-light: #3d5275;
  --text-main:   #1a1a1a;
  --text-soft:   #4a4a4a;
  --text-label:  #7a7a7a;
  --white:       #FFFFFF;

  /* Fontes */
  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Raleway', system-ui, sans-serif;

  /* Sombras */
  --shadow-sm:   0 2px 12px rgba(37,52,79,.10);
  --shadow-md:   0 8px 32px rgba(37,52,79,.14);
  --shadow-lg:   0 20px 60px rgba(37,52,79,.18);

  /* Bordas */
  --radius-sm:   10px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-full: 999px;

  /* Transições */
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Seção base ── */
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.section h2 em {
  font-style: italic;
  color: var(--terracota);
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 660px;
  margin-bottom: 56px;
}

/* ── Botões ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracota);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 24px rgba(201,123,90,.35);
}
.btn-primary:hover {
  background: var(--terracota-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,123,90,.45);
}
.btn-primary svg { fill: white; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--brown-light);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: translateY(-2px);
}

.btn-large { padding: 20px 44px; font-size: 1.05rem; }

.btn-nav {
  background: var(--terracota);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: background .2s;
}
.btn-nav:hover { background: var(--terracota-d); }

/* ═══════════════════════════
   NAVBAR
   ═══════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.1;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo span {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  color: var(--text-label);
  letter-spacing: .06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn-nav) {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s;
}
.nav-links a:not(.btn-nav):hover { color: var(--terracota); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(99,32,36,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(37,52,79,.06) 0%, transparent 60%),
    linear-gradient(160deg, #e5e1dd 0%, #d9d4cf 60%, #cec9c4 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,32,36,.08) 0%, transparent 70%);
  animation: floatOrb 8s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Hero split layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content {
  position: relative;
}

/* Hero photo */
.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .9s var(--ease) .2s both;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
}
.hero-photo-frame:hover .hero-photo-img { transform: scale(1.04); }

.hero-badge {
  display: inline-block;
  background: rgba(122,158,135,.15);
  color: var(--sage-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(122,158,135,.3);
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.01em;
  animation: fadeUp .8s var(--ease) .1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracota);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp .8s var(--ease) .2s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp .8s var(--ease) .3s both;
}
.hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .4s both;
}
.hero-chips span {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(107,76,59,.12);
  font-size: .82rem;
  font-weight: 500;
  color: var(--brown);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s var(--ease) .8s both;
}
.hero-scroll-indicator span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-label);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--terracota), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 48px; }
  50%       { opacity: .4; height: 32px; }
}

/* ═══════════════════════════
   TCC SECTION
   ═══════════════════════════ */
.tcc-section {
  background: var(--white);
}
.tcc-section .section-intro {
  margin-bottom: 60px;
}
.tcc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tcc-conclusion {
  grid-column: 1 / -1;
  background: var(--cream);
  border: 1px solid rgba(99,32,36,.10);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 8px;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  text-align: center;
  position: relative;
}
.tcc-conclusion::before {
  content: '✦';
  display: block;
  font-size: 1.4rem;
  color: var(--terracota);
  margin-bottom: 10px;
}
.tcc-card {
  background: var(--cream);
  border: 1px solid rgba(99,32,36,.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  cursor: default;
}
.tcc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,32,36,.28);
}
.tcc-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  transition: transform .3s;
}
.tcc-card:hover .tcc-icon { transform: scale(1.15); }
.tcc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.tcc-card p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ═══════════════════════════
   SOBRE
   ═══════════════════════════ */
.sobre-section {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 60%);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-photo-wrapper {
  position: relative;
}
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
}
.sobre-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.sobre-photo-wrapper:hover .sobre-photo-img { transform: scale(1.03); }
.sobre-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--terracota);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(201,123,90,.4);
}
.sobre-text h2 {
  margin-bottom: 20px;
}
.sobre-text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.sobre-text p em {
  color: var(--terracota);
  font-style: italic;
}
.sobre-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.sobre-tags span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--sage-dark);
}

/* ═══════════════════════════
   COMO FUNCIONA
   ═══════════════════════════ */
.como-section {
  background: var(--white);
}
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.step.visible {
  opacity: 1;
  transform: translateX(0);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(201,123,90,.25);
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  transition: color .3s;
}
.step:hover .step-number { color: var(--terracota); }
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  margin-top: 4px;
}
.step-content p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.step-connector {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--terracota), transparent);
  margin-left: 40px;
  opacity: .4;
}
.como-cta-wrapper {
  text-align: center;
  margin-top: 56px;
}

/* ═══════════════════════════
   FAQ
   ═══════════════════════════ */
.faq-section {
  background: var(--cream-dark);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107,76,59,.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: rgba(201,123,90,.05); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--terracota);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-answer p {
  padding: 0 28px 24px;
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.75;
  border-top: 1px solid rgba(107,76,59,.07);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ═══════════════════════════
   CTA BANNER
   ═══════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #25344f 0%, #1a2538 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,32,36,.25) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,32,36,.15) 0%, transparent 70%);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-banner-text h2 em {
  color: #e5a8ab;
  font-style: italic;
}
.cta-banner-text p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  flex-shrink: 0;
}
.cta-banner .btn-primary svg { fill: var(--terracota); }
.cta-banner .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════════════════
   NEWSLETTER
   ═══════════════════════════ */
.newsletter-section {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,32,36,.07) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-content .section-label { margin-bottom: 14px; }
.newsletter-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 20px;
}
.newsletter-content h2 em {
  font-style: italic;
  color: var(--terracota);
}
.newsletter-content p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.newsletter-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 0;
}
.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-soft);
  list-style: none;
}
.newsletter-perks li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracota);
  flex-shrink: 0;
}
.newsletter-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(99,32,36,.08);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nl-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}
.newsletter-form-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}
.newsletter-form-box p {
  font-size: .9rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 320px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newsletter-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(37,52,79,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-main);
  background: var(--cream);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.newsletter-form input:focus {
  border-color: var(--terracota);
  box-shadow: 0 0 0 3px rgba(99,32,36,.1);
  background: var(--white);
}
.newsletter-form input::placeholder { color: var(--text-label); }
.newsletter-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.newsletter-privacy {
  font-size: .78rem;
  color: var(--text-label);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer {
  background: #111a26;
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}
.footer-ethics {
  margin-top: 16px !important;
  font-size: .78rem !important;
  color: rgba(255,255,255,.4) !important;
  line-height: 1.6 !important;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-city {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}

/* ═══════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: waPop .6s var(--ease) 1.5s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════
   ANIMAÇÕES
   ═══════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════
   QUOTE / CITAÇÃO
   ═══════════════════════════ */
.quote-section {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 60%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,32,36,.07) 0%, transparent 65%);
  pointer-events: none;
}
.quote-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.quote-photo-col {
  position: relative;
}
.quote-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
}
.quote-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.quote-photo-frame:hover .quote-photo-img { transform: scale(1.03); }
.quote-content {
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: .7;
  color: var(--terracota);
  opacity: .18;
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border-left: 4px solid var(--terracota);
  padding-left: 28px;
}
.quote-author {
  display: block;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  font-style: normal;
  color: var(--terracota);
  letter-spacing: .05em;
  margin-bottom: 20px;
  padding-left: 28px;
}
.quote-caption {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-left: 28px;
  max-width: 520px;
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
  .sobre-inner { grid-template-columns: 300px 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 48px; }
  .quote-inner { grid-template-columns: 280px 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(229,225,221,.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn-nav) { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
  .hero-photo-col {
    display: flex;
    justify-content: center;
    order: -1;
  }
  .hero-photo-frame {
    width: 200px;
    max-width: 200px;
    border-radius: 50%;
    aspect-ratio: 1/1;
  }
  .hero-photo-img {
    object-position: center 10%;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }



  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-photo-wrapper { max-width: 320px; margin: 0 auto; }

  .cta-banner-inner { flex-direction: column; text-align: center; }

  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form-box { padding: 32px 24px; }

  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-photo-col { max-width: 280px; margin: 0 auto; }
  .quote-text, .quote-author, .quote-caption { padding-left: 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-chips { flex-direction: column; align-items: flex-start; }
}
