/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; margin: 0; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

:root {
  --verde-900: #29331F;
  --verde-800: #3B4A2E;
  --verde-700: #4E6140;
  --verde-500: #6E8A5C;
  --verde-300: #A9BE9A;
  --verde-100: #DCE6D3;
  --bege-100: #FAF6ED;
  --bege-200: #F1E9D8;
  --bege-300: #E6D9BF;
  --branco: #FFFFFF;
  --ink: #2B2B24;
  --ink-soft: #55574A;
  --bg: var(--bege-100);
  --shadow: 0 20px 50px -25px rgba(41, 51, 31, .35);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--verde-700);
  font-weight: 600;
  margin-bottom: 14px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--verde-900); color: #fff;
  padding: 12px 18px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 237, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(41, 51, 31, .08);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 20px;
}
.logo-slot img { height: 54px; width: auto; border-radius: 50%; }
.desktop-nav { display: flex; gap: 26px; margin-left: 48px; flex: 1; }
.desktop-nav a {
  text-decoration: none; font-size: .93rem; color: var(--verde-900); font-weight: 500;
  position: relative; padding: 6px 0;
}
.desktop-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--verde-500); transition: right .3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.cta-header {
  text-decoration: none; font-weight: 600; font-size: .88rem;
  border: 1.5px solid var(--verde-700); color: var(--verde-800);
  padding: 10px 20px; border-radius: 100px; white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.cta-header:hover { background: var(--verde-700); color: #fff; }
.header-right-mobile { display: none; align-items: center; gap: 10px; margin-left: auto; }
.cta-header-mobile {
  text-decoration: none; font-weight: 600; font-size: .82rem;
  border: 1.5px solid var(--verde-700); color: var(--verde-800);
  padding: 8px 14px; border-radius: 100px;
}
.hamburger {
  position: relative; z-index: 70; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(41,51,31,.15); background: transparent; display: grid; place-items: center;
}
.hamburger svg { width: 20px; height: 20px; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .desktop-nav, .cta-header { display: none; }
  .header-right-mobile { display: flex; }
}

/* Mobile nav */
.overlay {
  position: fixed; inset: 0; background: rgba(41,51,31,.35); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 84vw);
  background: var(--bege-100); z-index: 58;
  transform: translateX(100%); transition: transform .35s ease;
  display: flex; flex-direction: column; padding: 100px 32px 32px; gap: 22px;
  box-shadow: -10px 0 40px rgba(0,0,0,.12);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav a { text-decoration: none; font-size: 1.1rem; color: var(--verde-900); font-weight: 500; }
.cta-mobile {
  margin-top: 12px; text-align: center; background: var(--verde-700); color: #fff !important;
  padding: 14px; border-radius: 100px; font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(180deg, var(--bege-100), var(--bege-200));
  overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  width: 100%;
}
.hero-photo-wrap { position: relative; order: 2; }
.hero-photo-wrap img {
  width: 100%; border-radius: 18px 100px 18px 18px; box-shadow: var(--shadow);
  aspect-ratio: 4/5; object-fit: cover; will-change: transform;
}
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--verde-300);
  border-radius: 18px 100px 18px 18px; z-index: -1;
}
.hero-text { order: 1; }
h1.hero-h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.12; color: var(--verde-900);
  margin-bottom: 20px;
}
h1.hero-h1 .word { display: inline-block; opacity: 0; transform: translateY(14px); animation: wordIn .6s ease forwards; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
.hero-h1 em { font-style: italic; color: var(--verde-700); }
.hero-lede { font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); max-width: 46ch; margin-bottom: 14px; }
.hero-crp { font-size: .92rem; color: var(--verde-800); font-weight: 600; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.btn-primary {
  text-decoration: none; background: var(--verde-800); color: #fff; font-weight: 600;
  padding: 15px 30px; border-radius: 100px; font-size: .95rem; display: inline-block;
  transition: transform .25s ease, background .25s ease; box-shadow: 0 14px 30px -14px rgba(41,51,31,.55);
}
.btn-primary:hover { background: var(--verde-900); transform: translateY(-2px); }
.btn-whats {
  text-decoration: none; font-weight: 600; padding: 14px 28px; border-radius: 100px; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 10px; border: 1.8px solid #3F7A46; color: #2E5C34;
  background: rgba(63,122,70,.06); transition: background .25s ease, transform .25s ease;
  animation: whatsGlow 3s ease-in-out infinite;
}
.btn-whats:hover { background: rgba(63,122,70,.14); transform: translateY(-2px); }
.btn-whats svg { width: 18px; height: 18px; }
@keyframes whatsGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,122,70,.25); }
  50% { box-shadow: 0 0 0 8px rgba(63,122,70,0); }
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: .86rem; color: var(--ink-soft); }
.hero-tags span { display: inline-flex; align-items: center; gap: 6px; }
.hero-tags svg { width: 14px; height: 14px; color: var(--verde-700); }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--verde-700); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: 1; max-width: 340px; margin: 0 auto; }
  .hero-text { order: 2; text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-ctas, .hero-tags { justify-content: center; }
}

/* ===== Divider ===== */
.section-divider { display: flex; align-items: center; justify-content: center; padding: 6px 0; }
.divider-line { width: 60px; height: 1px; background: var(--verde-300); }
.divider-leaf { margin: 0 16px; color: var(--verde-500); }
.divider-leaf svg { width: 22px; height: 22px; }

/* ===== Intro ===== */
.intro { padding: 90px 0 40px; }
.intro .container { max-width: 760px; text-align: center; }
.intro h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--verde-900); margin-bottom: 22px; }
.intro p { font-size: 1.06rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 16px; }
.intro .badge-formacao {
  display: inline-block; margin-top: 10px; font-family: 'Fraunces', serif; font-style: italic;
  color: var(--verde-700); font-size: 1.05rem; border-top: 1px solid var(--verde-300); padding-top: 18px;
}

/* ===== Sobre (varied asymmetric layout) ===== */
.sobre { padding: 60px 0 90px; position: relative; }
.sobre .container {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 0 60px; align-items: start;
}
.sobre-media { position: relative; }
.sobre-media img { border-radius: 100px 18px 100px 18px; box-shadow: var(--shadow); }
.sobre-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 18px; }
.sobre-copy p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.sobre-quote {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem; color: var(--verde-800);
  border-left: 3px solid var(--verde-500); padding-left: 20px; margin: 24px 0;
}
.sobre-credenciais { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.sobre-credenciais li {
  font-size: .82rem; font-weight: 600; color: var(--verde-800); background: var(--bege-200);
  padding: 8px 14px; border-radius: 100px;
}
/* ===== Formação CTA (quote over photo) ===== */
.formacao-cta {
  position: relative; padding: 0; overflow: hidden; background-color: var(--verde-900);
  min-height: 600px; display: flex; align-items: center;
}
.formacao-cta::before {
  content: ''; position: absolute; inset: 0; background-image: var(--bg-image);
  background-size: cover; background-repeat: no-repeat; background-position: center; opacity: .3;
}
.formacao-overlay { display: none; }
.formacao-cta .container { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.formacao-cta p {
  font-family: 'Fraunces', serif; font-style: italic; color: #fff;
  font-size: clamp(1rem, 2.6vw, 1.7rem); white-space: nowrap; line-height: 1.5;
}
@media (max-width: 640px) {
  .formacao-cta { min-height: 260px; }
  .formacao-cta::before { background-image: var(--bg-image-mobile); }
  .formacao-cta p { white-space: normal; }
}
@media (max-width: 860px) {
  .sobre .container { grid-template-columns: 1fr; }
  .sobre-media { max-width: 320px; margin: 0 auto 60px; }
}

/* ===== Público / Atendimento cards ===== */
.publico { padding: 30px 0 90px; }
.publico .head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.publico .head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 14px; }
.publico .head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.publico-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 26px; }
.publico-grid .publico-card:nth-child(1) { transition-delay: 0s; }
.publico-grid .publico-card:nth-child(2) { transition-delay: .12s; }
.publico-grid .publico-card:nth-child(3) { transition-delay: .24s; }
.publico-card {
  background: var(--branco); border-radius: 20px; padding: 34px 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--verde-500);
}
.publico-card:nth-child(2) { border-top-color: var(--verde-700); }
.publico-card:nth-child(3) { border-top-color: var(--verde-900); }
.publico-card h3 { font-size: 1.25rem; color: var(--verde-900); margin-bottom: 14px; }
.publico-card > p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }
.publico-card details summary {
  list-style: none; cursor: pointer; color: var(--verde-800); font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.publico-card details summary::-webkit-details-marker { display: none; }
.publico-card details summary svg { width: 14px; height: 14px; transition: transform .3s ease; }
.publico-card details[open] summary svg { transform: rotate(180deg); }
.publico-card details[open] summary .txt-fechado { display: none; }
.publico-card details:not([open]) summary .txt-aberto { display: none; }
.publico-full { padding-top: 16px; color: var(--ink-soft); line-height: 1.75; font-size: .96rem; }
.publico-full p { margin-bottom: 12px; }

.modalidade-card {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; align-items: stretch;
  background: var(--verde-900); color: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.modalidade-card img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.modalidade-copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.modalidade-copy .eyebrow { color: var(--verde-300); }
.modalidade-copy h3 { color: #fff; font-size: 1.5rem; margin-bottom: 18px; }
.modalidade-list { display: grid; gap: 16px; }
.modalidade-item h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; font-family: 'Work Sans', sans-serif; font-weight: 600; }
.modalidade-item p { color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.65; }
.modalidade-copy .btn-primary { background: #fff; color: var(--verde-900); margin-top: 22px; align-self: flex-start; }
.modalidade-copy .btn-primary:hover { background: var(--bege-200); }

@media (max-width: 900px) {
  .publico-grid { grid-template-columns: 1fr; }
  .modalidade-card { grid-template-columns: 1fr; }
  .modalidade-card img { min-height: 220px; }
}

/* ===== Abordagem timeline ===== */
.abordagem { padding: 90px 0; background: var(--bege-200); }
.abordagem .head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.abordagem .head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 14px; }
.abordagem .head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.timeline-step:nth-child(1) { transition-delay: 0s; }
.timeline-step:nth-child(2) { transition-delay: .1s; }
.timeline-step:nth-child(3) { transition-delay: .2s; }
.timeline-step:nth-child(4) { transition-delay: .3s; }
.timeline::before {
  content: ''; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--verde-500) 0 10px, transparent 10px 18px);
}
.timeline-step { position: relative; text-align: center; padding-top: 60px; }
.timeline-step .tnum {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--verde-800); color: #fff;
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 1.1rem; z-index: 2;
}
.timeline-step h3 { font-size: 1.08rem; color: var(--verde-900); margin-bottom: 10px; }
.timeline-step p { color: var(--ink-soft); font-size: .92rem; line-height: 1.65; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 44px; }
  .timeline::before { top: 0; bottom: 0; left: 22px; width: 2px; height: auto; right: auto; background: repeating-linear-gradient(180deg, var(--verde-500) 0 10px, transparent 10px 18px); }
  .timeline-step { text-align: left; padding-top: 0; padding-left: 64px; }
  .timeline-step .tnum { left: 0; top: 0; transform: none; }
}

/* ===== Consultório ===== */
.consultorio { padding: 90px 0; }
.consultorio .head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.consultorio .head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 14px; }
.consultorio .head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.consultorio-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 20px; }
.consultorio-grid > * { min-width: 0; }
.consultorio-grid .g-bottom:nth-of-type(2) { transition-delay: .12s; }
.consultorio-grid .consultorio-info { transition-delay: .24s; }
.consultorio-grid img { border-radius: 18px; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.consultorio-grid .g-top { grid-column: 1 / -1; aspect-ratio: 16/9; }
.consultorio-grid .g-bottom { aspect-ratio: 5/4; }
.consultorio-info {
  background: var(--verde-900); color: #fff; border-radius: 18px; padding: 26px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.consultorio-info .item { display: flex; gap: 12px; align-items: flex-start; }
.consultorio-info svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--verde-300); }
.consultorio-info strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.consultorio-info span { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.consultorio-info .btn-whats {
  border-color: #6FD07C; color: #B7ECBB; background: rgba(111,208,124,.1); align-self: flex-start;
}
.consultorio-info .btn-whats:hover { background: rgba(111,208,124,.2); }
@media (max-width: 900px) {
  .consultorio-grid .g-top { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .consultorio-grid { grid-template-columns: minmax(0,1fr); }
  .consultorio-grid .g-bottom { aspect-ratio: 4/3; }
}

/* ===== Conteúdos (Instagram) ===== */
.conteudos { padding: 90px 0; background: var(--bege-200); }
.conteudos .head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.conteudos .head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 14px; }
.conteudos .head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.conteudos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.conteudos-grid .conteudo-pill:nth-child(1) { transition-delay: 0s; }
.conteudos-grid .conteudo-pill:nth-child(2) { transition-delay: .1s; }
.conteudos-grid .conteudo-pill:nth-child(3) { transition-delay: .2s; }
.conteudos-grid .conteudo-pill:nth-child(4) { transition-delay: .3s; }
.conteudo-pill {
  background: var(--branco); border-radius: 16px; padding: 26px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.conteudo-pill svg { width: 26px; height: 26px; color: var(--verde-700); margin-bottom: 12px; }
.conteudo-pill h3 { font-size: .98rem; color: var(--verde-900); margin-bottom: 8px; }
.conteudo-pill p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
.conteudos-cta { text-align: center; }
.conteudos-cta .btn-primary { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 860px) { .conteudos-grid { grid-template-columns: 1fr 1fr; } }

/* ===== FAQ ===== */
.duvidas { padding: 90px 0; }
.duvidas .head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.duvidas .head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--verde-900); margin-bottom: 14px; }
.duvidas .head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--bege-300); }
.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: .08s; }
.faq-item:nth-child(3) { transition-delay: .16s; }
.faq-item:nth-child(4) { transition-delay: .24s; }
.faq-item:nth-child(5) { transition-delay: .32s; }
.faq-item:first-child { padding-top: 0; }
.faq-item h3 {
  font-size: 1.12rem; color: var(--verde-900); margin-bottom: 10px; display: flex; gap: 12px;
}
.faq-item h3::before { content: 'P'; color: var(--verde-500); font-family: 'Fraunces', serif; font-style: italic; }
.faq-item p { color: var(--ink-soft); line-height: 1.7; font-size: .98rem; padding-left: 26px; }

/* ===== Contato ===== */
.contato {
  position: relative; padding: 110px 0; background: var(--verde-900); color: #fff; overflow: hidden;
}
.contato-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
  max-width: 1080px; text-align: left;
}
.contato .eyebrow { color: var(--verde-300); }
.contato h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.contato .lede { font-size: 1.06rem; line-height: 1.75; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.contato-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.contato .btn-primary { background: #fff; color: var(--verde-900); }
.contato .btn-primary:hover { background: var(--bege-200); }
.contato .btn-whats { border-color: #6FD07C; color: #B7ECBB; background: rgba(111,208,124,.1); }
.contato .btn-whats:hover { background: rgba(111,208,124,.2); }
.contato-links { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: .9rem; color: rgba(255,255,255,.75); }
.contato-links a { text-decoration: underline; color: #fff; }
.contato-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px 100px 18px 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
@media (max-width: 860px) {
  .contato-inner { grid-template-columns: 1fr; text-align: center; }
  .contato-ctas, .contato-links { justify-content: center; }
  .contato-media { max-width: 320px; margin: 0 auto; }
}

/* ===== Footer ===== */
footer { background: var(--verde-900); color: rgba(255,255,255,.85); padding: 0 0 30px; }
.footer-grid {
  max-width: 1120px; margin: 0 auto; padding: 50px 24px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-slot img { height: 60px; border-radius: 50%; margin-bottom: 14px; }
.footer-brand p { font-size: .86rem; line-height: 1.6; color: rgba(255,255,255,.7); }
.footer-col h4 { font-family: 'Work Sans', sans-serif; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--verde-300); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; font-size: .88rem; color: rgba(255,255,255,.78); text-decoration: none; margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: #fff; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.08); padding: 8px 14px; border-radius: 100px; margin-top: 6px;
}
.footer-badge svg { width: 14px; height: 14px; color: var(--verde-300); }
.footer-bottom {
  max-width: 1120px; margin: 0 auto; padding: 20px 24px 0; text-align: center;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--verde-800); color: #fff; display: grid; place-items: center; text-decoration: none;
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; z-index: 40;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
