@font-face {
  font-family: 'Moonrising';
  src: url('../fonts/Moonrising.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* ============================================
   RICARDO TRODO — PSICÓLOGO
   Escuta qualificada e acolhedora
   Online e Presencial
   ============================================ */


:root {
  --primary:        #244920;   /* verde principal */
  --primary-light:  #315f2b;
  --primary-soft:   rgba(36,73,32,.08);
  --green-deep:     #193619;
  --green-900:      #112611;
  --green-950:      #0c1c0c;
  --accent:         #6f7d78;   /* gris elegante sobre claro */
  --accent-light:   #c9d3cf;   /* gris elegante claro sobre verde */
  --dark:           #244920;
  --white:          #ffffff;
  --light:          #f3f5f4;   /* gris muy claro / off-white */
  --light-mid:      #e6eae8;
  --stone:          #dfe4e2;
  --muted:          #5c6a66;
  --border:         rgba(36,73,32,.14);
  --border-dark:    rgba(255,255,255,.1);
  --brand:          'Moonrising', 'Aboreto', sans-serif;
  --serif:          var(--brand);
  --sans:           'Poppins', system-ui, sans-serif;
  --shadow:         0 2px 12px rgba(17,38,17,.07);
  --shadow-md:      0 6px 28px rgba(17,38,17,.12);
  --shadow-lg:      0 16px 48px rgba(17,38,17,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: var(--primary); }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .9rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--dark);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
p { font-size: .93rem; line-height: 1.8; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }
.section-intro {
  max-width: 600px;
  margin: 1rem 0 3rem;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(36,73,32,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,.28);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(36,73,32,.4);
}
/* Em seções escuras o btn-dark vira claro/pedra para contraste */
.manifesto-section .btn-dark,
.sobre-section .btn-dark {
  background: var(--white);
  color: var(--primary);
}
.manifesto-section .btn-dark:hover,
.sobre-section .btn-dark:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.2);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(145deg, #0c1c0c 0%, #193619 55%, #244920 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img { width: 190px; opacity: .95; }
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(255,255,255,.18);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--accent-light); transition: width .08s;
}
.loading-pct { font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .14em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(145deg, #0c1c0c 0%, #193619 55%, #244920 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img { width: 110px; opacity: 0; }

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .85rem 0;
  border-color: rgba(36,73,32,.1);
  box-shadow: 0 1px 24px rgba(17,38,17,.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light { height: 46px; width: auto; display: block; }
.logo-dark  { height: 46px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

nav.header-nav { display: flex; align-items: center; gap: 1.6rem; }
nav.header-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  transition: color .3s;
}
nav.header-nav a:hover { color: var(--white); }
#header.scrolled nav.header-nav a { color: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
.header-cta {
  padding: .7rem 1.5rem; font-size: .72rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.header-cta:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
#header.scrolled .header-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
#header.scrolled .header-cta:hover { background: var(--primary-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--green-950);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 400; color: rgba(255,255,255,.82); transition: color .3s;
}
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--primary);
  padding: .8rem 2rem; border-radius: 100px; margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 700vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--green-950);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(12,28,12,.90) 0%, rgba(12,28,12,.55) 42%, rgba(12,28,12,.1) 66%, transparent 84%),
    linear-gradient(to top,   rgba(12,28,12,.75) 0%, rgba(12,28,12,.22) 46%, transparent 72%);
}
.hero-content {
  position: absolute;
  top: clamp(12rem, 32vh, 19rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(44vw, 540px);
  z-index: 10;
}
.hero-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-h1 {
  font-family: var(--brand);
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 8px rgba(0,0,0,.35);
}
.hero-h1 em { font-style: italic; color: var(--accent-light); display: block; }
.hero-sub {
  font-size: .88rem; line-height: 1.75;
  color: rgba(255,255,255,.82); margin-bottom: 1.6rem;
  max-width: 400px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero-actions .btn { padding: .78rem 1.6rem; font-size: .72rem; }
.hero-actions .btn-primary {
  background: var(--white); color: var(--primary);
}
.hero-actions .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.25);
}
.hero-microcopy {
  margin-top: 1.2rem;
  font-size: .62rem; letter-spacing: .12em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .56rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--accent-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: #F0E3C1;
  padding: 1.1rem 0; overflow: hidden;
  border-top: 1px solid rgba(36,73,32,.12);
  border-bottom: 1px solid rgba(36,73,32,.12);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 52s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(36,73,32,.88); }
.marquee-content .dot { color: var(--primary); font-size: .4rem; opacity: .55; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── MANIFESTO ──────────────────────────── */
.manifesto-section {
  background-color: #244920;
  background-image:
    linear-gradient(30deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(30deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(150deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(160deg, rgba(49,95,43,.72) 0%, rgba(36,73,32,.92) 55%, rgba(25,54,25,.96) 100%);
  background-size: 92px 160px, 92px 160px, 92px 160px, 92px 160px, 100% 100%;
  background-position: 0 0, 46px 0, 0 80px, 46px 80px, 0 0;
  text-align: center;
}
.manifesto-section .label { color: var(--accent-light); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,.96);
  margin: 1.2rem 0 1.6rem;
}
.manifesto-sub {
  font-size: .95rem; color: rgba(255,255,255,.7);
  max-width: 620px; margin: 0 auto 2.4rem;
}

/* ─── ÁREAS DE ATUAÇÃO (cards) ───────────── */
.experiencias-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.experiencias-section .label { color: var(--accent); }
.experiencias-section h2 { max-width: 600px; margin-top: .5rem; color: var(--dark); }
.experiencias-section .section-intro { color: var(--muted); }
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.experiencia-card {
  background: var(--light);
  border: 1px solid rgba(36,73,32,.2);
  border-radius: 0;
  padding: clamp(1.6rem,2.8vw,2.4rem);
  min-height: 235px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
  row-gap: 1.35rem;
  align-items: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.experiencia-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent 75%);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.experiencia-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(36,73,32,.5); }
.experiencia-card:hover::before { transform: scaleX(1); }
.experiencia-card--wide { grid-column: span 2; }
.experiencia-icon {
  width: 52px; height: 52px; border-radius: 0;
  background: rgba(36,73,32,.08);
  border: 1px solid rgba(36,73,32,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.experiencia-card h3 {
  font-size: .9rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .055em;
}
.experiencia-card p {
  grid-column: 1 / -1;
  align-self: start;
  font-size: .84rem;
  color: var(--muted);
}

/* ─── MODALIDADES (cards com imagem) ─────── */
.destinos-section {
  background-color: #244920;
  background-image:
    linear-gradient(30deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(30deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(150deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(160deg, rgba(49,95,43,.72) 0%, rgba(36,73,32,.92) 55%, rgba(25,54,25,.96) 100%);
  background-size: 92px 160px, 92px 160px, 92px 160px, 92px 160px, 100% 100%;
  background-position: 0 0, 46px 0, 0 80px, 46px 80px, 0 0;
}
.destinos-section .label { color: var(--accent-light); }
.destinos-section h2 { color: rgba(255,255,255,.96); max-width: 600px; margin-top: .5rem; }
.destinos-section .section-intro { color: rgba(255,255,255,.68); }
.destinos-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 1.4rem;
}
.destino-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.destino-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(0,0,0,.35); border-color: rgba(201,211,207,.35); }
.destino-img-wrap {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.destino-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.destino-card:hover .destino-img-wrap img { transform: scale(1.06); }
.destino-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(12,28,12,.55) 0%, transparent 55%);
}
.destino-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.destino-region {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-light);
}
.destino-body h3 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; color: rgba(255,255,255,.96);
}
.destino-body > p { font-size: .84rem; color: rgba(255,255,255,.68); flex: 1; }
.destino-cta {
  margin-top: .6rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-light);
  transition: color .25s, transform .2s;
  align-self: flex-start;
}
.destino-cta:hover { color: #fff; transform: translateX(3px); }

/* ─── CUIDADO NOS DETALHES (featured) ────── */
.hoteis-section { background: var(--light); }
.hoteis-section h2 { max-width: 640px; margin-top: .5rem; }
.hotel-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 1rem;
}
.hotel-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
}
.hotel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.hotel-img-wrap:hover img { transform: scale(1.04); }
.hotel-location {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .6rem;
}
.hotel-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400; color: var(--dark); margin-bottom: 1rem;
}
.hotel-content p + p { margin-top: .9rem; }
.hotel-detail { font-size: .84rem; }
.hotel-content .btn { margin-top: 1.6rem; }

/* ─── SOBRE ──────────────────────────────── */
.sobre-section {
  background-color: #244920;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='168' viewBox='0 0 240 168'%3E%3Cg fill='none' stroke='%23F0E3C1' stroke-opacity='.045' stroke-width='3'%3E%3Cpath d='M-40 8L20 44M-40 24L20 60M-40 40L20 76M20 44L80 8M20 60L80 24M20 76L80 40M80 8L140 44M80 24L140 60M80 40L140 76M140 44L200 8M140 60L200 24M140 76L200 40M200 8L260 44M200 24L260 60M200 40L260 76'/%3E%3Cpath d='M-100 92L-40 128M-100 108L-40 144M-100 124L-40 160M-40 128L20 92M-40 144L20 108M-40 160L20 124M20 92L80 128M20 108L80 144M20 124L80 160M80 128L140 92M80 144L140 108M80 160L140 124M140 92L200 128M140 108L200 144M140 124L200 160M200 128L260 92M200 144L260 108M200 160L260 124'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 168px;
}
.sobre-section .label { color: var(--accent-light); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 5rem; align-items: center;
}
.sobre-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 3/4;
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
}
.sobre-text h2 { color: rgba(255,255,255,.96); margin-bottom: 1.2rem; margin-top: .4rem; }
.sobre-text p { color: rgba(255,255,255,.72); }
.sobre-text p + p { margin-top: .9rem; }
.sobre-highlight {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,211,207,.25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(201,211,207,.08) 100%);
  position: relative; overflow: hidden;
}
.sobre-highlight strong {
  display: block; font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; color: var(--accent-light); margin-bottom: .3rem;
}
.sobre-highlight span { display: block; font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.sobre-text .btn { margin-top: .5rem; }
.sobre-text .btn-primary { background: var(--white); color: var(--primary); }
.sobre-text .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }

/* ─── ATENDIMENTO / CONTATO ──────────────── */
.local-section { background: var(--white); border-top: 1px solid var(--light-mid); }
.local-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
}
.local-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: .5rem; margin-bottom: 1.2rem;
}
.local-address {
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.local-address-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.4rem;
  background: rgba(36,73,32,.04);
  border: 1px solid rgba(36,73,32,.12);
  border-radius: 12px;
  font-size: .88rem; color: var(--dark);
  font-weight: 500;
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.local-address-item:hover { border-color: rgba(36,73,32,.4); background: rgba(36,73,32,.07); }
.local-address-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.local-address-item span { line-height: 1.6; }
.local-address-item a { transition: color .25s; }
.local-address-item a:hover { color: var(--primary); }

/* ─── AGENDA / CALENDÁRIO ────────────────── */
.agenda-section { background: var(--light); border-top: 1px solid var(--light-mid); }
.agenda-section h2 { max-width: 640px; margin-top: .5rem; }

.agenda-modalidade {
  display: inline-flex; gap: .4rem;
  padding: .35rem;
  background: rgba(36,73,32,.06);
  border: 1px solid rgba(36,73,32,.12);
  border-radius: 100px;
  margin-bottom: 2.4rem;
}
.modalidade-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.modalidade-btn svg { flex-shrink: 0; }
.modalidade-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36,73,32,.28);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Calendar */
.agenda-calendar {
  background: #fff;
  border: 1px solid rgba(36,73,32,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-month {
  font-family: var(--serif);
  font-size: 1.2rem; color: var(--primary);
  text-transform: capitalize; letter-spacing: .01em;
}
.cal-nav {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: rgba(36,73,32,.06);
  transition: background .2s, color .2s;
}
.cal-nav:hover { background: var(--primary); color: #fff; }
.cal-nav:disabled { opacity: .3; pointer-events: none; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem; margin-bottom: .5rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  padding: .3rem 0;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 12px;
  font-size: .9rem; font-weight: 500;
  color: var(--dark);
  background: transparent;
  transition: background .2s, color .2s, transform .15s;
}
.cal-day.empty { pointer-events: none; }
.cal-day.available { color: var(--primary); font-weight: 600; }
.cal-day.available::after {
  content: ''; position: absolute; bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.cal-day.available:hover { background: rgba(36,73,32,.1); transform: translateY(-1px); }
.cal-day.unavailable { color: rgba(36,73,32,.28); pointer-events: none; }
.cal-day.past { color: rgba(36,73,32,.2); pointer-events: none; }
.cal-day.selected {
  background: var(--primary); color: #fff;
}
.cal-day.selected::after { background: #fff; }

.cal-legend {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(36,73,32,.1);
}
.legend-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--muted);
}
.legend-item i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.legend-item .dot-free { background: var(--primary); }
.legend-item .dot-sel  { background: var(--accent); }
.legend-item .dot-none { background: rgba(36,73,32,.22); }

/* Slots (à lateral no desktop) */
.agenda-slots {
  background: #fff;
  border: 1px solid rgba(36,73,32,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: sticky; top: 90px;
}
.slots-head {
  font-family: var(--serif);
  font-size: 1.15rem; color: var(--primary);
  margin-bottom: .3rem;
}
.slots-sub {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 1.2rem;
}
.slots-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  min-height: 40px;
}
.slot-btn {
  padding: .7rem .5rem;
  border-radius: 12px;
  border: 1px solid rgba(36,73,32,.16);
  background: rgba(36,73,32,.03);
  font-size: .88rem; font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
.slot-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.slot-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-btn.taken {
  color: rgba(36,73,32,.3);
  text-decoration: line-through;
  pointer-events: none;
  background: rgba(36,73,32,.02);
  border-style: dashed;
}
.slots-empty {
  grid-column: 1 / -1;
  font-size: .84rem; color: var(--muted);
  padding: .6rem 0;
}
.slots-summary {
  margin-top: 1.2rem; padding: .9rem 1rem;
  background: rgba(36,73,32,.05);
  border: 1px solid rgba(36,73,32,.12);
  border-radius: 12px;
  font-size: .84rem; color: var(--dark); line-height: 1.7;
}
.slots-summary strong { color: var(--primary); font-weight: 600; }
.agenda-confirm {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; margin-top: 1.2rem;
  padding: .95rem 1.2rem;
  border-radius: 100px;
  background: #25D366; color: #fff;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s, transform .2s, box-shadow .3s, opacity .2s;
}
.agenda-confirm:hover:not(:disabled) {
  background: #1fb355; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.agenda-confirm:disabled { opacity: .4; pointer-events: none; }
.slots-note {
  font-size: .68rem; color: var(--muted);
  text-align: center; margin-top: .9rem; letter-spacing: .02em;
}

/* ─── DORES / IDENTIFICAÇÃO ──────────────── */
.problemas-section { background: var(--white); }
.problemas-showcase {
  position: relative;
  min-height: 760px;
}
.problemas-route {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 0;
  width: 31%;
  height: 28%;
  border-top: 2px dashed rgba(36,73,32,.38);
  border-left: 2px dashed rgba(36,73,32,.38);
  border-bottom: 2px dashed rgba(36,73,32,.38);
}
.problemas-route::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -8px;
  border-left: 13px solid rgba(36,73,32,.5);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.problemas-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(58%, 690px);
  height: 82%;
  overflow: hidden;
}
.problemas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.problemas-side-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 4%;
  width: 68px;
  height: 300px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problemas-side-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .16em;
  white-space: nowrap;
}
.problemas-card {
  position: absolute;
  z-index: 1;
  left: 3%;
  bottom: 0;
  width: min(54%, 610px);
  padding: clamp(2rem,3vw,3rem);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(36,73,32,.13);
}
.problemas-card h2 {
  max-width: 520px;
  margin-top: .35rem;
  font-size: clamp(1.8rem,2.8vw,2.7rem);
}
.ponte-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem,1.55vw,1.25rem);
  color: var(--primary);
  text-align: left;
  max-width: 600px;
  margin: 1.35rem 0 2rem;
  line-height: 1.5;
}
.problemas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .78rem;
}
.problemas-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted);
}
.problemas-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .03rem;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36,73,32,.48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .68rem;
  line-height: 1;
}
/* ─── BENEFÍCIOS / TRANSFORMAÇÃO ─────────── */
.beneficios-section {
  background-color: #244920;
  background-image:
    linear-gradient(30deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(30deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(150deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(160deg, rgba(49,95,43,.72) 0%, rgba(36,73,32,.92) 55%, rgba(25,54,25,.96) 100%);
  background-size: 92px 160px, 92px 160px, 92px 160px, 92px 160px, 100% 100%;
  background-position: 0 0, 46px 0, 0 80px, 46px 80px, 0 0;
  overflow: hidden;
}
.beneficios-stage {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
}
.beneficios-image {
  position: absolute;
  left: 0;
  top: 0;
  width: min(38%, 430px);
  height: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 18px;
}
.beneficios-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.beneficios-card {
  position: relative;
  z-index: 1;
  width: min(68%, 760px);
  margin-left: 30%;
  padding: clamp(2.2rem,4vw,3.6rem);
  background-color: #244920;
  background-image:
    linear-gradient(30deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(30deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(150deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(160deg, rgba(49,95,43,.72) 0%, rgba(36,73,32,.92) 55%, rgba(25,54,25,.96) 100%);
  background-size: 92px 160px, 92px 160px, 92px 160px, 92px 160px, 100% 100%;
  background-position: 0 0, 46px 0, 0 80px, 46px 80px, 0 0;
  border-radius: 42px 0 0 0;
  box-shadow: none;
}
.beneficios-card .label { color: var(--accent-light); }
.beneficios-card h2 {
  color: rgba(255,255,255,.96);
  max-width: 610px;
  margin-top: .35rem;
  font-size: clamp(1.85rem,3.2vw,3rem);
}
.beneficios-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .72rem 2rem;
  margin: 1.8rem 0 2rem;
}
.beneficios-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.beneficios-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: .78rem;
}
.beneficios-section .btn-primary { background: var(--white); color: var(--primary); }
.beneficios-section .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }
/* ─── DEPOIMENTOS ────────────────────────── */
.depoimentos-section {
  background: var(--light);
  border-top: 1px solid var(--light-mid);
  overflow: hidden;
}
.depoimentos-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.depoimentos-section h2 { margin-top: .5rem; }
.depoimentos-section .section-intro { max-width: 620px; }
.google-rating {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: .7rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(36,73,32,.1);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(25,54,25,.08);
}
.google-wordmark {
  grid-row: 1 / 3;
  font: 600 1.28rem/1 Arial, sans-serif;
  letter-spacing: -.09em;
  padding-right: .08em;
}
.google-wordmark b { font-weight: 600; }
.google-wordmark b:nth-child(1), .google-wordmark b:nth-child(4) { color: #4285f4; }
.google-wordmark b:nth-child(2), .google-wordmark b:nth-child(6) { color: #ea4335; }
.google-wordmark b:nth-child(3) { color: #fbbc05; }
.google-wordmark b:nth-child(5) { color: #34a853; }
.rating-score { font-size: 1rem; font-weight: 700; color: var(--dark); }
.rating-stars, .card-rating { color: #f5aa18; letter-spacing: .1em; }
.rating-stars { font-size: .75rem; }
.google-rating small {
  grid-column: 1 / -1;
  margin-top: .5rem;
  color: var(--muted);
  font-size: .62rem;
  text-align: right;
}
.depoimentos-carousel {
  width: 100%;
  overflow: hidden;
  padding: .8rem 0 1.8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.depoimentos-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: depoimentos-marquee 42s linear infinite;
  will-change: transform;
}
.depoimentos-carousel:hover .depoimentos-track { animation-play-state: paused; }
.depoimentos-group { display: flex; gap: 1rem; }
.depoimento-card {
  width: clamp(280px, 30vw, 380px);
  min-height: 220px;
  background: #fff;
  border: 1px solid rgba(36,73,32,.1);
  border-radius: 18px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 36px rgba(25,54,25,.09);
}
.card-rating { font-size: .82rem; }
.depoimento-texto {
  flex: 1;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}
.depoimento-autor {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
}
@keyframes depoimentos-marquee {
  to { transform: translateX(calc(-50% - .5rem)); }
}
@media (prefers-reduced-motion: reduce) {
  .depoimentos-track { animation: none; }
  .depoimentos-carousel { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
/* ─── CONTEÚDO / JORNADA ────────────────── */
.conteudo-section { background: linear-gradient(180deg, var(--light) 0%, #fff 100%); }
.conteudo-section h2 { max-width: 760px; margin-top: .5rem; }
.conteudo-section .section-intro { max-width: 720px; }
.conteudo-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.4rem; }
.conteudo-card { position: relative; padding: clamp(2rem,4vw,3rem); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.conteudo-card--accent { background: var(--primary); border-color: var(--primary); }
.conteudo-num { display: block; margin-bottom: 1.5rem; color: var(--accent); font: 600 .7rem/1 var(--sans); letter-spacing: .18em; }
.conteudo-card h3 { margin-bottom: 1.25rem; font-family: var(--brand); font-size: clamp(1.15rem,2vw,1.55rem); font-weight: 400; }
.conteudo-card ul { display: grid; gap: .9rem; }
.conteudo-card li { position: relative; padding-left: 1.25rem; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.conteudo-card li::before { content: ''; position: absolute; left: 0; top: .65rem; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }
.conteudo-card--accent .conteudo-num { color: var(--accent-light); }
.conteudo-card--accent h3 { color: #fff; }
.conteudo-card--accent li { color: rgba(255,255,255,.78); }
.conteudo-card--accent li::before { background: #F0E3C1; }
.armadilhas-section { background: var(--white); border-top: 1px solid var(--border); }
.armadilhas-layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(3rem,7vw,7rem); align-items: start; }
.armadilhas-layout h2 { margin-top: .5rem; }
.armadilhas-layout .section-intro { margin-bottom: 0; }
.armadilhas-list { counter-reset: armadilha; display: grid; }
.armadilhas-list li { counter-increment: armadilha; display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .9rem; line-height: 1.65; }
.armadilhas-list li::before { content: counter(armadilha, decimal-leading-zero); color: var(--primary); font: 600 .68rem/1.65 var(--sans); letter-spacing: .08em; }
@media(max-width:768px) {
  .conteudo-grid, .armadilhas-layout { grid-template-columns: 1fr; }
  .armadilhas-layout { gap: 2rem; }
  .conteudo-card { padding: 1.6rem 1.35rem; }
}
/* ─── FAQ ────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section h2 { margin-top: .5rem; }
.faq-list { max-width: 780px; margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid rgba(36,73,32,.14);
  padding: 1.3rem 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .96rem; font-weight: 600; color: var(--dark);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.3rem; font-weight: 400; color: var(--primary);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--primary); }
.faq-item p {
  margin-top: .9rem; font-size: .88rem; line-height: 1.8;
  color: var(--muted); max-width: 680px;
}

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background: linear-gradient(145deg, #0c1c0c 0%, #244920 45%, #193619 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,211,207,.16), transparent 65%);
  pointer-events: none;
}
.cta-final .label { color: rgba(255,255,255,.6); }
.cta-final h2 { color: var(--white); max-width: 700px; margin: .5rem auto 1.2rem; }
.cta-final > .container > p { color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 2.8rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-final .btn-outline { border-color: rgba(255,255,255,.4); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: #244920;
  border-top: 1px solid rgba(36,73,32,.12);
  padding: clamp(4rem,7vw,7rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before,
footer::after {
  content: '';
  position: absolute;
  bottom: 3rem;
  width: 280px;
  height: 180px;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(201,211,207,.8) 1.5px, transparent 1.7px);
  background-size: 13px 13px;
  pointer-events: none;
}
footer::before { left: -70px; transform: rotate(-12deg); }
footer::after { right: -70px; transform: rotate(12deg); }
footer > .container { position: relative; z-index: 1; }
.footer-statement {
  margin-bottom: clamp(3.5rem,7vw,6rem);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.footer-statement-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: footerStatementScroll 24s linear infinite;
}
.footer-statement span {
  display: block;
  flex-shrink: 0;
  padding-right: clamp(3rem,7vw,8rem);
  font-family: var(--serif);
  font-size: clamp(2.4rem,5.2vw,5rem);
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -.025em;
  white-space: nowrap;
  color: rgba(255,255,255,.13);
}
@keyframes footerStatementScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .75fr 1fr;
  gap: clamp(2rem,4vw,4.5rem);
  align-items: start;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.7); max-width: 280px; line-height: 1.78; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; background: #25D366; color: var(--white);
  padding: .65rem 1.25rem; border-radius: 100px; font-size: .76rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .67rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
  margin-bottom: 1.35rem;
}
.footer-col a,
.footer-col address span {
  font-size: .82rem; color: rgba(255,255,255,.7);
  display: block; line-height: 2; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: .5rem;
}
.footer-credit {
  color: rgba(255,255,255,.42);
  transition: color .25s;
}
.footer-credit:hover { color: rgba(255,255,255,.78); }

/* ─── BOTÃO FLUTUANTE BOT ────────────────── */
#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, box-shadow .3s;
  pointer-events: none; outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 16px rgba(17,38,17,.35);
}
#float-bot.vis  { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-bot.hide { opacity: 0 !important; transform: translateY(16px) !important; pointer-events: none !important; }
#float-bot:hover { transform: translateY(-3px) !important; }
.bot-avatar {
  width: 34px; height: 34px; min-width: 34px; min-height: 34px;
  border-radius: 0;
  object-fit: contain;
  display: block; pointer-events: none; position: relative; z-index: 2;
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary); opacity: 0;
  animation: radar-pulse 2.4s ease-out infinite; pointer-events: none; z-index: 1;
}
#float-bot::after { animation-delay: 1.2s; }
@keyframes radar-pulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.2);opacity:0} }

/* ─── WEBCHAT WIDGET ─────────────────────── */
#kore-btn { display: none !important; }

/* ─── SPLASH CURSOR CANVAS ───────────────── */
#fluid {
  position: fixed; inset: 0; z-index: 9999;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}

/* ─── MAGIC BENTO BORDER GLOW ───────────── */
.experiencia-card,
.destino-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight,
.destino-img-wrap {
  --mouse-x: -999px;
  --mouse-y: -999px;
}
.experiencia-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight { position: relative; }

/* Glow claro/pedra para cards de vidro escuro */
.destino-card::after,
.sobre-img-wrap::after,
.sobre-highlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(226, 233, 230, 1)  0%,
    rgba(201, 211, 207, .5) 42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* Glow verde para cards de fundo claro */
.experiencia-card::after,
.hotel-img-wrap::after,
.local-address-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(49, 95, 43, .9)   0%,
    rgba(36, 73, 32, .45)  42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px) {
  .experiencia-card--wide { grid-column: span 2; }
}

@media(max-width:1100px) {
  .hotel-featured { grid-template-columns: 1fr; gap: 3rem; }
  .local-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media(max-width:1024px) {
  .experiencias-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main { grid-row: span 2; }
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(56vw,480px); top: clamp(10rem,28vh,16rem); }
  /* Agenda: horários abaixo do calendário no tablet/móvel */
  .agenda-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .agenda-slots { position: static; }
  .beneficios-stage { min-height: 650px; }
  .beneficios-image { width: 43%; }
  .beneficios-card { width: 72%; margin-left: 26%; }
  .beneficios-list { gap: .72rem 1.4rem; }
  .problemas-showcase { min-height: 790px; }
  .problemas-image { width: 64%; height: 72%; }
  .problemas-card { left: 1%; width: 62%; padding: 2.5rem; }
  .problemas-list { gap: .78rem; }
}

@media(max-width:768px) {
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { padding: 0 1.2rem; gap: .8rem; }
  .logo-light, .logo-dark { height: 36px; }
  .header-cta { padding: .6rem 1rem; font-size: .68rem; }
  .hamburger { flex-shrink: 0; }

  .hero-sequence { height: 420vh; }
  .hero-content { top: auto; bottom: clamp(4rem,8vh,7rem); left: 1.5rem; right: 1.5rem; max-width: 100%; }
  .hero-label { font-size: .55rem; }
  .hero-h1 { font-size: clamp(1.5rem,5vw,2rem); }
  .hero-sub { font-size: .84rem; }
  .hero-actions { gap: .6rem; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: .68rem 1.3rem; font-size: .68rem; }

  .experiencias-grid, .destinos-grid { grid-template-columns: 1fr; }
  .experiencia-card--wide { grid-column: span 1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { aspect-ratio: 4/5; width: 100%; max-width: 320px; margin: 0 auto; }
  .hotel-featured { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  #float-bot { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .bot-avatar { width: 30px; height: 30px; min-width: 30px; min-height: 30px; }
  .agenda-calendar, .agenda-slots { padding: 1.2rem; }
  .depoimentos-heading { align-items: flex-start; flex-direction: column; }
  .google-rating { width: 100%; max-width: 320px; }
  .depoimento-card { width: min(82vw, 340px); }
  .beneficios-stage {
    min-height: 0;
    padding-top: 280px;
    display: block;
  }
  .beneficios-image {
    width: 88%;
    height: 330px;
    border-radius: 18px 18px 0 18px;
  }
  .beneficios-card {
    width: calc(100% - 1.5rem);
    margin-left: 1.5rem;
    padding: 1.8rem 1.35rem;
    border-radius: 32px 0 0 0;
  }
  .beneficios-list { grid-template-columns: 1fr; gap: .72rem; }
  .footer-statement { margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .footer-main { grid-column: 1 / -1; grid-row: auto; }
  .problemas-showcase {
    min-height: 0;
    padding-top: 270px;
  }
  .problemas-route { display: none; }
  .problemas-image {
    width: 92%;
    height: 320px;
  }
  .problemas-side-label {
    right: 0;
    width: 54px;
    height: 220px;
  }
  .problemas-side-label span { font-size: .86rem; }
  .problemas-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin-left: 1.5rem;
    padding: 1.8rem 1.35rem;
  }
  .problemas-card h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .problemas-list { gap: .9rem; }
  .ponte-quote { margin: 1.1rem 0 1.6rem; }
  .faq-item summary { font-size: .9rem; }
}

@media(max-width:540px) {
  .header-cta { display: none; }
  .hero-actions .btn { padding: .6rem 1rem; font-size: .64rem; }
  .experiencia-card { padding: 1.6rem 1.4rem; }
  .destino-body { padding: 1.3rem 1.3rem 1.5rem; }
  .agenda-modalidade { width: 100%; }
  .modalidade-btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media(max-width:420px) {
  .hero-content { left: 1rem; right: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .experiencia-card { padding: 1.4rem 1.2rem; }
  h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
  .container { padding: 0 1rem; }
  .slots-list { grid-template-columns: repeat(2, 1fr); }
}

@media(prefers-reduced-motion:reduce) {
  .footer-statement-track { animation: none; }
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════
   ASSISTENTE RICARDO TRODO — Chat widget
══════════════════════════════════════════════════════ */
#vip-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  max-height: 520px;
  background: var(--green-950);
  border: 1px solid rgba(201,211,207,.3);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(201,211,207,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
#vip-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#vip-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem .9rem 1.1rem;
  background: linear-gradient(135deg, #193619 0%, #244920 100%);
  border-bottom: 1px solid rgba(201,211,207,.22);
  flex-shrink: 0;
}
#vip-chat-identity { display: flex; align-items: center; gap: .7rem; }
#vip-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,211,207,.35);
  flex-shrink: 0;
}
#vip-chat-name {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}
#vip-chat-status {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
}
#vip-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}
#vip-chat-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.8);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
#vip-chat-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Messages */
#vip-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,211,207,.3) transparent;
}
#vip-chat-msgs::-webkit-scrollbar { width: 4px; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background: rgba(201,211,207,.3); border-radius: 4px; }

.fcm-row {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  gap: .4rem;
}
.fcm-bot { align-self: flex-start; }
.fcm-user { align-self: flex-end; }

.fcm-bubble {
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.6;
  word-break: break-word;
}
.fcm-bot .fcm-bubble {
  background: #193619;
  color: #e7edeb;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #244920, #193619);
  border: 1px solid rgba(201,211,207,.3);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}

/* Typing indicator */
.fcm-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .7rem .9rem !important;
}
.fcm-typing-bubble span {
  width: 7px; height: 7px;
  background: #7d8a85;
  border-radius: 50%;
  animation: fcm-bounce .9s infinite;
}
.fcm-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.fcm-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes fcm-bounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* CTA button inside chat */
.fcm-cta {
  background: rgba(201,211,207,.12);
  border: 1px solid rgba(201,211,207,.4);
  color: var(--accent-light);
  font-size: .74rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
  letter-spacing: .01em;
}
.fcm-cta:hover { background: rgba(201,211,207,.28); color: #fff; }

/* Input area */
#vip-chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-top: 1px solid rgba(36,73,32,.12);
  background: #081408;
  flex-shrink: 0;
}
#vip-chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  color: #e7edeb;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}
#vip-chat-input::placeholder { color: #56645f; }
#vip-chat-input:focus { border-color: rgba(201,211,207,.6); }
#vip-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background-color: #244920;
  background-image:
    linear-gradient(30deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, rgba(240,227,193,.075) 39%, rgba(240,227,193,.075) 41%, transparent 42%),
    linear-gradient(30deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(150deg, transparent 58%, rgba(15,38,14,.16) 59%, rgba(15,38,14,.16) 61%, transparent 62%),
    linear-gradient(160deg, rgba(49,95,43,.72) 0%, rgba(36,73,32,.92) 55%, rgba(25,54,25,.96) 100%);
  background-size: 92px 160px, 92px 160px, 92px 160px, 92px 160px, 100% 100%;
  background-position: 0 0, 46px 0, 0 80px, 46px 80px, 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#vip-chat-send:hover { background: var(--primary-light); transform: scale(1.05); }
#vip-chat-send:active { transform: scale(.95); }

/* Mobile overlay backdrop */
#vip-chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 598;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#vip-chat-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:600px) {
  #vip-chat {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 88vh;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(201,211,207,.3);
    box-shadow: 0 -8px 40px rgba(0,0,0,.6);
    transform: translateY(100%);
    opacity: 1;
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    z-index: 599;
  }
  #vip-chat.open {
    transform: translateY(0);
    opacity: 1;
  }
  #vip-chat::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    margin: .65rem auto .1rem;
    flex-shrink: 0;
  }
  #vip-chat-header {
    padding: .65rem 1rem .75rem;
  }
  #vip-chat-avatar {
    width: 36px;
    height: 36px;
  }
  #vip-chat-name { font-size: .9rem; }
  #vip-chat-msgs {
    padding: .85rem 1rem;
    gap: .55rem;
  }
  .fcm-bubble { font-size: .84rem; padding: .6rem .8rem; }
  #vip-chat-form {
    padding: .65rem .9rem;
    padding-bottom: max(.65rem, env(safe-area-inset-bottom));
  }
  #vip-chat-input { font-size: 16px; padding: .6rem .75rem; }
  #vip-chat-send { width: 42px; height: 42px; flex-shrink: 0; }
  .fcm-row { max-width: 90%; }
  #vip-chat-backdrop { display: block; }
}

/* Testimonios: composición editorial oscura */
.depoimentos-section{position:relative;overflow:hidden;background-color:#171918;background-image:repeating-linear-gradient(32deg,rgba(240,227,193,.035) 0 2px,transparent 2px 13px),repeating-linear-gradient(148deg,rgba(36,73,32,.08) 0 2px,transparent 2px 18px);border-top:1px solid rgba(240,227,193,.12)}
.depoimentos-heading{display:block;max-width:900px;margin:0 auto clamp(2.4rem,5vw,4rem);text-align:center}.depoimentos-heading .label{color:#d9ba68}.depoimentos-section h2{max-width:860px;margin:.55rem auto 1rem;color:#fff;font-family:var(--brand);font-size:clamp(2rem,4vw,3.5rem);line-height:1.25}.depoimentos-section .section-intro{max-width:650px;margin:0 auto;color:rgba(255,255,255,.58)}
.depoimentos-slider{max-width:1120px}.depoimentos-pair{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.2rem,3vw,2.5rem)}
.depoimento-card{position:relative;display:grid;grid-template-columns:118px 1fr;gap:1.8rem;width:auto;min-height:250px;padding:2rem 2.2rem;overflow:hidden;background:#232524;border:0;border-right:1px solid #d9ba68;border-radius:0;box-shadow:0 16px 38px rgba(0,0,0,.18)}.depoimento-card::before{content:'';position:absolute;left:145px;top:2rem;bottom:2rem;width:1px;background:rgba(240,227,193,.22)}
.depoimento-avatar{position:relative;align-self:start;width:92px;height:92px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(145deg,#315f2b,#244920);border:3px solid rgba(240,227,193,.7);color:#fff;font-family:var(--brand);font-size:1.35rem}.depoimento-avatar b{position:absolute;right:-5px;bottom:-13px;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:#d9ba68;color:#fff;font:700 1.4rem/1 var(--serif)}
.depoimento-content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:flex-start}.depoimento-texto{flex:1;margin-bottom:.75rem;color:rgba(255,255,255,.74);font-size:.9rem;font-style:normal;line-height:1.7}.card-rating{color:#d9ba68;font-size:.8rem;letter-spacing:.1em;margin-bottom:.7rem}.depoimento-autor{color:#fff;font-size:.78rem;font-weight:600;letter-spacing:.03em;text-transform:none}.depoimento-content small{color:rgba(255,255,255,.48);font-size:.68rem;margin-top:.12rem}.depoimento-quote{position:absolute;right:1.6rem;bottom:.5rem;color:rgba(240,227,193,.09);font:700 5.5rem/1 var(--serif)}
.depoimentos-dots{display:flex;justify-content:center;gap:.65rem;margin-top:2.8rem}.depoimentos-dots span{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,.72)}.depoimentos-dots .active{width:17px;height:17px;margin-top:-2px;background:#d9ba68}
@media(max-width:900px){.depoimentos-pair{grid-template-columns:1fr}}
@media(max-width:540px){.depoimento-card{grid-template-columns:72px 1fr;gap:1.2rem;width:auto;padding:1.5rem 1.25rem}.depoimento-card::before{left:96px;top:1.5rem;bottom:1.5rem}.depoimento-avatar{width:64px;height:64px;font-size:1rem}.depoimento-avatar b{width:28px;height:28px;font-size:1.1rem}.depoimento-quote{font-size:4rem}}
/* Ajuste claro y animado para testimonios */
.depoimentos-section{background:#fff;background-image:radial-gradient(circle at 15% 20%,rgba(240,227,193,.42),transparent 24%),radial-gradient(circle at 88% 80%,rgba(36,73,32,.06),transparent 25%);border-top:1px solid rgba(36,73,32,.1)}
.depoimentos-heading .label{color:var(--primary)}.depoimentos-section h2{color:var(--primary)}.depoimentos-section .section-intro{color:var(--muted)}
.depoimentos-google{width:max-content;max-width:100%;margin:1.6rem auto 0;padding:.85rem 1.15rem;display:flex;align-items:center;justify-content:center;gap:.65rem;flex-wrap:wrap;background:#fff;border:1px solid rgba(36,73,32,.12);border-radius:999px;box-shadow:0 10px 28px rgba(36,73,32,.09)}
.depoimentos-google .google-wordmark{font-size:1rem;font-weight:700}.depoimentos-google strong{color:var(--primary);font-size:1.05rem}.google-stars{color:#d9a928;letter-spacing:.08em}.depoimentos-google small{color:var(--muted);font-size:.65rem}
.depoimento-card{background:#244920;border-right:1px solid #F0E3C1;box-shadow:0 18px 42px rgba(36,73,32,.2);animation:depoimentoFloat 5.5s ease-in-out infinite;transition:transform .35s ease,box-shadow .35s ease}
.depoimento-card:nth-child(2){animation-delay:-2.75s}.depoimento-card:hover{animation-play-state:paused;transform:translateY(-8px);box-shadow:0 24px 52px rgba(36,73,32,.28)}
.depoimento-card::before{background:rgba(240,227,193,.28)}.depoimento-avatar{background:#F0E3C1;border-color:rgba(255,255,255,.75);color:#244920}.depoimento-avatar b{background:#d9ba68}.depoimento-texto{color:rgba(255,255,255,.86)}.depoimento-autor{color:#fff}.depoimento-content small{color:rgba(255,255,255,.58)}.depoimento-quote{color:rgba(240,227,193,.14)}
.depoimentos-dots span{background:rgba(36,73,32,.25)}.depoimentos-dots .active{background:#244920}
@keyframes depoimentoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media(prefers-reduced-motion:reduce){.depoimento-card{animation:none}}
/* Ajuste tipográfico y transición del carrusel */
.depoimentos-section h2{font-family:var(--serif);font-size:clamp(1.65rem,2.7vw,2.55rem);line-height:1.22}.depoimentos-section .section-intro{font-size:.84rem}.depoimento-texto{font-family:var(--sans);font-size:.82rem;line-height:1.65}.depoimento-autor{font-family:var(--sans);font-size:.72rem}
.depoimentos-pair{opacity:1;transform:translateY(0);transition:opacity .18s ease,transform .18s ease}.depoimentos-pair.is-changing{opacity:0;transform:translateY(8px)}
.depoimentos-dots button{width:12px;height:12px;padding:0;border:0;border-radius:50%;background:rgba(36,73,32,.25);cursor:pointer;transition:transform .25s,background .25s}.depoimentos-dots button.active{background:#244920;transform:scale(1.35)}
@media(max-width:540px){.depoimentos-section h2{font-size:clamp(1.45rem,6vw,1.9rem)}.depoimento-texto{font-size:.78rem}}
/* Textura exclusiva do fundo de beneficios */
.beneficios-section{
  background-color:#244920;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='168' viewBox='0 0 240 168'%3E%3Cg fill='none' stroke='%23F0E3C1' stroke-opacity='.045' stroke-width='3'%3E%3Cpath d='M-40 8L20 44M-40 24L20 60M-40 40L20 76M20 44L80 8M20 60L80 24M20 76L80 40M80 8L140 44M80 24L140 60M80 40L140 76M140 44L200 8M140 60L200 24M140 76L200 40M200 8L260 44M200 24L260 60M200 40L260 76'/%3E%3Cpath d='M-100 92L-40 128M-100 108L-40 144M-100 124L-40 160M-40 128L20 92M-40 144L20 108M-40 160L20 124M20 92L80 128M20 108L80 144M20 124L80 160M80 128L140 92M80 144L140 108M80 160L140 124M140 92L200 128M140 108L200 144M140 124L200 160M200 128L260 92M200 144L260 108M200 160L260 124'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:240px 168px;
}
.beneficios-card{background:#244920;background-image:none}
/* CTA final com imagem e sobreposição verde */
.cta-final{
  min-height:clamp(500px,62vw,720px);
  padding:clamp(5rem,10vw,9rem) 0;
  display:grid;
  place-items:center;
  isolation:isolate;
  background-image:linear-gradient(rgba(20,52,18,.78),rgba(20,52,18,.82)),url('../cta.jpeg');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-final::before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(36,73,32,.22),transparent 35%,transparent 65%,rgba(36,73,32,.22));pointer-events:none}
.cta-final-content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center}
.cta-final .label{color:#F0E3C1;letter-spacing:.16em}.cta-final h2{max-width:820px;margin:1rem auto 2.4rem;color:#fff;font-family:var(--serif);font-size:clamp(2.35rem,4.8vw,4.8rem);line-height:1.08}
.cta-journey{display:inline-flex;align-items:center;gap:1rem;color:#fff;font-size:.9rem;font-weight:600}.cta-journey b{width:62px;height:62px;display:grid;place-items:center;border-radius:50%;background:#F0E3C1;color:#244920;font-size:1.65rem;font-weight:400;transition:transform .3s ease,background .3s ease}.cta-journey:hover b{transform:translate(5px,-5px);background:#fff}
@media(max-width:600px){.cta-final{min-height:500px;background-position:center}.cta-final h2{font-size:clamp(2rem,10vw,3rem)}.cta-journey b{width:54px;height:54px}}
/* Separación visual entre CTA y footer */
footer{margin-top:clamp(2rem,4vw,4.5rem);border-top:0}
@media(max-width:600px){footer{margin-top:1.5rem}}
/* Footer compacto */
footer{padding:clamp(2.4rem,4vw,3.8rem) 0 1.25rem}
.footer-grid{gap:clamp(1.5rem,3vw,3rem)}
.footer-logo{height:44px;margin-bottom:.75rem}
.footer-tagline{font-size:.78rem;line-height:1.65}
.footer-wa{margin-top:1rem}
.footer-col h4{margin-bottom:.9rem}
.footer-col a,.footer-col address span{font-size:.78rem;line-height:1.8}
.footer-bottom{margin-top:2rem;padding-top:1rem}
@media(max-width:600px){footer{padding:2rem 0 1rem}.footer-grid{gap:1.8rem 1.2rem}.footer-bottom{margin-top:1.5rem}}
/* Footer realmente compacto */
footer{padding:1.5rem 0 .75rem!important}
.footer-grid{gap:1.25rem 2rem!important;align-items:start}
.footer-logo{height:36px!important;margin-bottom:.45rem!important}
.footer-tagline{max-width:240px!important;font-size:.7rem!important;line-height:1.45!important}
.footer-wa{margin-top:.65rem!important;padding:.48rem .9rem!important;font-size:.68rem!important}
.footer-col h4{margin-bottom:.5rem!important;font-size:.61rem!important}
.footer-col a,.footer-col address span{font-size:.7rem!important;line-height:1.55!important}
.footer-bottom{margin-top:1rem!important;padding-top:.65rem!important;font-size:.62rem!important}
@media(max-width:768px){footer{padding:1.25rem 0 .65rem!important}.footer-grid{gap:1.1rem!important}.footer-main{margin-bottom:0!important}.footer-bottom{margin-top:.8rem!important}}
/* Tarjetas verdes de Como funciona */
.experiencia-card{background:#244920;border-color:rgba(240,227,193,.28);box-shadow:0 10px 28px rgba(36,73,32,.12)}
.experiencia-card:hover{border-color:rgba(240,227,193,.65);box-shadow:0 18px 38px rgba(36,73,32,.22)}
.experiencia-card::before{background:linear-gradient(90deg,#F0E3C1,transparent 75%)}
.experiencia-icon{background:#F0E3C1;border-color:rgba(255,255,255,.55);color:#244920}
.experiencia-card h3{color:#F0E3C1}
.experiencia-card p{color:rgba(255,255,255,.76)}
.experiencia-card::after{background:radial-gradient(336px circle at var(--mouse-x) var(--mouse-y),rgba(240,227,193,.65) 0%,rgba(240,227,193,.18) 42%,transparent 72%)}
/* Tarjetas premium translúcidas de Como funciona */
.experiencias-section{position:relative;background:linear-gradient(180deg,#fbfcfb 0%,#f3f6f2 100%)}
.experiencia-card{
  background:linear-gradient(145deg,rgba(36,73,32,.82),rgba(25,54,25,.68));
  border:1px solid rgba(240,227,193,.34);
  box-shadow:0 18px 45px rgba(25,54,25,.14),inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter:blur(16px) saturate(115%);
  -webkit-backdrop-filter:blur(16px) saturate(115%);
  overflow:hidden;
}
.experiencia-card:hover{
  background:linear-gradient(145deg,rgba(49,95,43,.86),rgba(36,73,32,.72));
  border-color:rgba(240,227,193,.58);
  box-shadow:0 24px 54px rgba(25,54,25,.2),inset 0 1px 0 rgba(255,255,255,.22);
}
.experiencia-icon{
  background:rgba(240,227,193,.14);
  border:1px solid rgba(240,227,193,.48);
  color:#F0E3C1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.experiencia-card h3{color:#F0E3C1}.experiencia-card p{color:rgba(255,255,255,.78)}
.experiencia-card::before{background:linear-gradient(90deg,rgba(240,227,193,.85),rgba(240,227,193,0))}
.experiencia-card::after{background:radial-gradient(300px circle at var(--mouse-x) var(--mouse-y),rgba(255,255,255,.22),rgba(240,227,193,.08) 38%,transparent 70%)}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){.experiencia-card{background:rgba(36,73,32,.92)}}
/* Corrección de pigmentación verde en cards de vidrio */
.experiencia-card{
  background:linear-gradient(145deg,rgba(42,91,38,.94),rgba(30,69,27,.88));
  border-color:rgba(240,227,193,.38);
  box-shadow:0 18px 45px rgba(25,54,25,.2),inset 0 1px 0 rgba(240,227,193,.13);
  backdrop-filter:blur(14px) saturate(145%);
  -webkit-backdrop-filter:blur(14px) saturate(145%);
}
.experiencia-card:hover{
  background:linear-gradient(145deg,rgba(49,103,44,.96),rgba(36,78,32,.91));
  border-color:rgba(240,227,193,.62);
}
.experiencia-card::after{background:radial-gradient(280px circle at var(--mouse-x) var(--mouse-y),rgba(240,227,193,.14),rgba(240,227,193,.045) 38%,transparent 70%)}
.experiencia-icon{background:rgba(240,227,193,.16);border-color:rgba(240,227,193,.55);color:#F0E3C1}
/* Botones principales beige de marca */
.btn-primary,.btn-white,.btn-dark,.hero-actions .btn-primary,.sobre-text .btn-primary,.beneficios-section .btn-primary,.header-cta{
  background:#F0E3C1!important;
  color:#244920!important;
  border-color:#F0E3C1!important;
  box-shadow:0 8px 22px rgba(25,54,25,.14);
}
.btn-primary:hover,.btn-white:hover,.btn-dark:hover,.hero-actions .btn-primary:hover,.sobre-text .btn-primary:hover,.beneficios-section .btn-primary:hover,.header-cta:hover{
  background:#fff!important;
  color:#244920!important;
  border-color:#fff!important;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(25,54,25,.2);
}
.btn-outline{background:transparent!important;color:#F0E3C1!important;border-color:rgba(240,227,193,.68)!important}
.btn-outline:hover{background:#F0E3C1!important;color:#244920!important;border-color:#F0E3C1!important}
/* Menú verde de marca */
#header{background:rgba(36,73,32,.84);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom-color:rgba(240,227,193,.14)}
#header.scrolled{background:rgba(36,73,32,.97);border-color:rgba(240,227,193,.18);box-shadow:0 8px 28px rgba(25,54,25,.16)}
nav.header-nav a,#header.scrolled nav.header-nav a{color:rgba(255,255,255,.84)}
nav.header-nav a:hover,#header.scrolled nav.header-nav a:hover{color:#F0E3C1}
#header.scrolled .hamburger span,.hamburger span{background:#F0E3C1}
.mobile-nav{background:#244920;background-image:linear-gradient(145deg,rgba(49,95,43,.45),rgba(25,54,25,.5))}
.mobile-nav a{color:rgba(255,255,255,.88)}.mobile-nav a:hover{color:#F0E3C1}.mobile-nav .mobile-cta{background:#F0E3C1;color:#244920}
/* Remate semicircular inferior de beneficios */
.beneficios-section{position:relative;overflow:visible;margin-bottom:clamp(45px,5vw,75px)}
.beneficios-section::after{
  content:'';
  position:absolute;
  z-index:0;
  left:50%;
  bottom:clamp(-75px,-5vw,-45px);
  width:100%;
  height:clamp(90px,10vw,150px);
  transform:translateX(-50%);
  background:#244920;
  border-radius:0 0 50% 50% / 0 0 100% 100%;
  pointer-events:none;
}
.beneficios-section>.container{position:relative;z-index:1}
@media(max-width:600px){.beneficios-section{margin-bottom:36px}.beneficios-section::after{bottom:-36px;height:72px;width:115%}}
/* Unión limpia entre curva y depoimentos */
.depoimentos-section{border-top:0!important;margin-top:-2px}
.beneficios-section::after{transform:translateX(-50%) translateY(2px)}
/* Fondo limpio sin bloque de degradado en depoimentos */
.depoimentos-section{background:#fff!important;background-image:none!important}
/* Continuidad de textura sobre el remate semicircular */
.beneficios-section::after{
  background-color:#244920;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='168' viewBox='0 0 240 168'%3E%3Cg fill='none' stroke='%23F0E3C1' stroke-opacity='.045' stroke-width='3'%3E%3Cpath d='M-40 8L20 44M-40 24L20 60M-40 40L20 76M20 44L80 8M20 60L80 24M20 76L80 40M80 8L140 44M80 24L140 60M80 40L140 76M140 44L200 8M140 60L200 24M140 76L200 40M200 8L260 44M200 24L260 60M200 40L260 76'/%3E%3Cpath d='M-100 92L-40 128M-100 108L-40 144M-100 124L-40 160M-40 128L20 92M-40 144L20 108M-40 160L20 124M20 92L80 128M20 108L80 144M20 124L80 160M80 128L140 92M80 144L140 108M80 160L140 124M140 92L200 128M140 108L200 144M140 124L200 160M200 128L260 92M200 144L260 108M200 160L260 124'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:240px 168px;
  background-position:center top;
}
/* Corrección segura de desbordamiento horizontal móvil */
html,body{width:100%;max-width:100%;overflow-x:clip;overscroll-behavior-x:none}
main,section,footer,#header,.mobile-nav{max-width:100vw}
img,canvas,svg{max-width:100%}
@media(max-width:768px){
  .beneficios-section{overflow:hidden;margin-bottom:36px}
  .beneficios-section::after{width:100%;left:50%}
  .depoimentos-google{width:fit-content;max-width:calc(100vw - 2rem)}
  .depoimento-card{max-width:100%}
  .marquee-section{max-width:100vw;overflow:hidden}
}
.maps-review-btn{display:inline-flex;align-items:center;justify-content:center;margin:1rem auto 0;padding:.72rem 1.15rem;border:1px solid rgba(240,227,193,.55);color:#F0E3C1;font:600 .72rem/1 var(--sans);letter-spacing:.04em;transition:background .25s,color .25s,transform .25s}.maps-review-btn:hover{background:#F0E3C1;color:#244920;transform:translateY(-2px)}

/* ESCALA TIPOGRÁFICA COMPACTA */
h2{font-size:clamp(1.55rem,2.6vw,2.35rem);line-height:1.18}
.section-intro{max-width:680px;font-size:.88rem;line-height:1.68;margin-bottom:2.2rem}
.hero-h1{font-size:clamp(1.45rem,2vw,2.25rem);line-height:1.16}
.problemas-card h2,.beneficios-card h2,.depoimentos-section h2,.cta-final h2{font-size:clamp(1.5rem,2.5vw,2.3rem);line-height:1.2}
.conteudo-card h3{font-size:clamp(1.05rem,1.5vw,1.3rem);line-height:1.3}
.conteudo-card li,.armadilhas-list li,.faq-item p{font-size:.84rem;line-height:1.6}
@media(max-width:768px){h2,.problemas-card h2,.beneficios-card h2,.depoimentos-section h2,.cta-final h2{font-size:clamp(1.4rem,5vw,1.85rem)}.hero-h1{font-size:clamp(1.35rem,4.8vw,1.75rem)}}

/* TITULOS COMPACTOS V2 */
h1.hero-h1{font-size:clamp(1.25rem,1.7vw,1.8rem)!important;line-height:1.18!important;letter-spacing:0!important;max-width:430px}
h2,.problemas-card h2,.beneficios-card h2,.depoimentos-section h2,.cta-final h2,.conteudo-section h2,.armadilhas-layout h2,.faq-section h2,.sobre-text h2,.agenda-section h2,.experiencias-section h2{font-size:clamp(1.3rem,1.9vw,1.8rem)!important;line-height:1.22!important;letter-spacing:0!important}
.conteudo-card h3{font-size:1.05rem!important;line-height:1.3!important}
@media(max-width:768px){h1.hero-h1{font-size:clamp(1.2rem,4.2vw,1.55rem)!important}h2,.problemas-card h2,.beneficios-card h2,.depoimentos-section h2,.cta-final h2,.conteudo-section h2,.armadilhas-layout h2,.faq-section h2,.sobre-text h2,.agenda-section h2,.experiencias-section h2{font-size:clamp(1.2rem,4.5vw,1.55rem)!important}}

/* FAQ EDITORIAL BRANCO */
.faq-section{background:#fff!important;border-top:1px solid rgba(36,73,32,.1)}
.faq-heading{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:clamp(2rem,8vw,8rem);align-items:end}
.faq-heading-main .label{display:inline-flex;width:max-content;margin-bottom:1.25rem;padding:.45rem .8rem;border:1px solid rgba(36,73,32,.28);border-radius:999px;color:#244920;font-size:.62rem;letter-spacing:.12em}
.faq-heading h2{margin:0!important;font-size:clamp(1.65rem,2.5vw,2.25rem)!important;line-height:1.15!important}
.faq-heading-side{display:grid;justify-items:start;gap:1.25rem;padding-bottom:.15rem}
.faq-heading-side p{max-width:430px;color:#5c6a66;font-size:.86rem;line-height:1.6}
.faq-contact{display:inline-flex;align-items:center;gap:1.4rem;padding:.78rem 1.15rem;border-radius:999px;background:#244920;color:#fff;font:600 .72rem/1 var(--sans);transition:transform .2s,background .2s}
.faq-contact:hover{background:#315f2b;transform:translateY(-2px)}
.faq-contact span{font-size:1rem}
.faq-list{max-width:none!important;margin-top:clamp(2.5rem,5vw,4.5rem)!important;display:grid;gap:.8rem}
.faq-item{padding:0!important;border:0!important}
.faq-item summary{min-height:64px;padding:1rem 1.5rem;border:1px solid rgba(36,73,32,.16);border-radius:999px;background:#f4f6f5;color:#244920;font-size:.86rem!important;font-weight:600}
.faq-item summary::after{content:'+';display:grid;place-items:center;width:28px;height:28px;color:#244920;font-size:1.25rem}
.faq-item[open] summary{border-color:rgba(36,73,32,.34);background:#edf2ee}
.faq-item[open] summary::after{content:'−';transform:none}
.faq-item p{max-width:900px;margin:.2rem 0 .35rem!important;padding:1rem 1.5rem 1.15rem;color:#5c6a66;font-size:.82rem!important;line-height:1.65!important}
@media(max-width:768px){.faq-heading{grid-template-columns:1fr;gap:1.5rem}.faq-heading-side{gap:1rem}.faq-heading h2{font-size:clamp(1.45rem,6vw,1.8rem)!important}.faq-list{margin-top:2.5rem!important}.faq-item summary{min-height:56px;padding:.85rem 1rem;border-radius:22px;font-size:.8rem!important}.faq-item p{padding:.8rem 1rem 1rem}}

/* FAQ COLOR SUAVE */
.faq-item summary{background:#f3f5dd!important;border-color:rgba(151,160,78,.24)!important}
.faq-item[open] summary{background:#ecefc9!important;border-color:rgba(151,160,78,.38)!important}

/* CONTEUDO CTA EDITORIAL */
.conteudo-section{position:relative;isolation:isolate;min-height:720px;display:flex;align-items:center;background-image:linear-gradient(90deg,rgba(10,35,18,.97) 0%,rgba(25,67,35,.9) 46%,rgba(8,26,14,.91) 100%),linear-gradient(180deg,rgba(16,53,27,.12),rgba(7,22,12,.65)),url('../cta.jpeg')!important;background-size:cover!important;background-position:center!important;color:#fff;overflow:hidden}
.conteudo-section::before{content:'';position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 74% 36%,rgba(151,170,91,.2),transparent 38%),linear-gradient(180deg,transparent 58%,rgba(3,15,7,.42))}
.conteudo-section>.container{width:100%;display:grid;grid-template-columns:minmax(280px,.78fr) minmax(560px,1.35fr);grid-template-rows:auto auto auto 1fr;column-gap:clamp(3rem,7vw,8rem);align-items:start}
.conteudo-section .label{grid-column:1;grid-row:1;color:#dfe7ad;margin-bottom:1.2rem}
.conteudo-section h2{grid-column:1;grid-row:2;max-width:520px!important;margin:0 0 1.35rem!important;color:#fff!important;font-size:clamp(1.55rem,2.1vw,2rem)!important;line-height:1.18!important}
.conteudo-section .section-intro{grid-column:1;grid-row:3;max-width:470px;margin:0 0 1.8rem;color:rgba(255,255,255,.76);font-size:.86rem;line-height:1.7}
.conteudo-cta{grid-column:1;grid-row:4;align-self:start;display:inline-flex;width:max-content;align-items:center;gap:1.4rem;padding:.82rem 1.15rem;background:#e8edbb;color:#244920;font:600 .72rem/1 var(--sans);transition:background .2s,transform .2s}
.conteudo-cta:hover{background:#fff;transform:translateY(-2px)}
.conteudo-cta span{font-size:1rem}
.conteudo-grid{grid-column:2;grid-row:1 / span 4;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0!important;align-self:center}
.conteudo-card{min-height:470px;padding:clamp(2rem,3vw,3rem)!important;background:linear-gradient(145deg,rgba(24,70,38,.7),rgba(8,30,17,.58))!important;border:1px solid rgba(232,237,187,.28)!important;box-shadow:0 24px 70px rgba(0,0,0,.24)!important;backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}
.conteudo-card:nth-child(2){transform:translateY(54px);background:linear-gradient(145deg,rgba(38,91,48,.78),rgba(10,38,20,.68))!important}
.conteudo-card .conteudo-num{color:#e8edbb!important}
.conteudo-card h3{color:#fff!important;font-size:1.05rem!important;line-height:1.35!important;margin-bottom:1.5rem}
.conteudo-card li{color:rgba(255,255,255,.78)!important;font-size:.8rem!important;line-height:1.58!important}
.conteudo-card li::before{background:#e8edbb!important}
@media(max-width:1000px){.conteudo-section{min-height:auto}.conteudo-section>.container{grid-template-columns:1fr;grid-template-rows:auto;row-gap:2.2rem}.conteudo-section .label,.conteudo-section h2,.conteudo-section .section-intro,.conteudo-cta,.conteudo-grid{grid-column:1;grid-row:auto}.conteudo-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.conteudo-card{min-height:0}.conteudo-card:nth-child(2){transform:none}}
@media(max-width:680px){.conteudo-section{background-position:58% center!important}.conteudo-grid{grid-template-columns:1fr!important;gap:.8rem!important}.conteudo-card{padding:1.5rem 1.25rem!important}.conteudo-section h2{font-size:1.45rem!important}}

/* CTA CLARO + FOOTER COMPACTO */
.conteudo-section{min-height:650px!important;background-image:linear-gradient(90deg,rgba(29,79,40,.78) 0%,rgba(43,96,49,.62) 48%,rgba(20,63,31,.7) 100%),linear-gradient(180deg,rgba(223,231,173,.08),rgba(10,42,21,.32)),url('../cta.jpeg')!important;background-position:center 46%!important}
.conteudo-section::before{background:linear-gradient(90deg,rgba(13,49,24,.12),transparent 48%,rgba(9,38,18,.18)),radial-gradient(circle at 70% 35%,rgba(232,237,187,.18),transparent 38%)!important}
.conteudo-section>.container{grid-template-columns:minmax(300px,.9fr) minmax(520px,1.25fr)!important;column-gap:clamp(3rem,6vw,7rem)!important}
.conteudo-section h2{font-size:clamp(1.7rem,2.4vw,2.25rem)!important;max-width:480px!important}
.conteudo-grid{align-items:start!important;padding-top:1.2rem}
.conteudo-card{min-height:410px!important;background:linear-gradient(145deg,rgba(34,89,45,.25),rgba(15,53,27,.18))!important;border:1px solid rgba(255,255,255,.34)!important;box-shadow:0 18px 52px rgba(8,35,17,.14)!important;backdrop-filter:blur(3px)!important;-webkit-backdrop-filter:blur(3px)!important}
.conteudo-card:nth-child(1){transform:translateY(0)!important}
.conteudo-card:nth-child(2){transform:translateY(86px)!important;background:linear-gradient(145deg,rgba(48,105,54,.3),rgba(18,59,29,.2))!important}
.conteudo-card h3{font-size:1rem!important}.conteudo-card li{font-size:.78rem!important}
footer.site-footer{margin:0!important;padding:clamp(3.5rem,6vw,5.5rem) 0 1rem!important;background:#101b12!important;color:#fff!important}
.site-footer .container{max-width:1280px}
.footer-cta-row{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,8vw,8rem);align-items:end;padding-bottom:clamp(2.5rem,5vw,4.5rem);border-bottom:1px solid rgba(255,255,255,.12)}
.footer-kicker{margin-bottom:.8rem;color:#dfe7ad!important;font-size:.62rem!important;font-weight:600;letter-spacing:.16em;text-transform:uppercase}
.site-footer h2{margin:0;color:#fff!important;font-family:var(--brand);font-size:clamp(1.6rem,2.6vw,2.4rem)!important;font-weight:400;line-height:1.16!important}
.footer-action{justify-self:start;max-width:390px}.footer-action p{margin-bottom:1.15rem;color:rgba(255,255,255,.66);font-size:.82rem;line-height:1.6}
.footer-action a{display:inline-flex;align-items:center;gap:1.5rem;padding:.8rem 1.15rem;border-radius:999px;background:#fff;color:#244920;font:600 .7rem/1 var(--sans);transition:transform .2s}.footer-action a:hover{transform:translateY(-2px)}
.footer-lower{display:grid;grid-template-columns:.55fr .85fr 1.4fr;gap:clamp(2rem,5vw,5rem);align-items:start;padding:2.4rem 0 1.7rem}
.footer-mini-nav,.footer-contact-mini{display:grid;gap:.48rem}.footer-mini-nav strong,.footer-contact-mini strong,.footer-map strong{margin-bottom:.35rem;color:#fff;font-size:.72rem}.footer-mini-nav a,.footer-contact-mini a,.footer-contact-mini span{color:rgba(255,255,255,.66);font-size:.72rem;line-height:1.45}.footer-mini-nav a:hover,.footer-contact-mini a:hover{color:#dfe7ad}
.footer-map{justify-self:end;width:min(100%,440px);display:grid;grid-template-columns:170px 1fr;gap:1rem;align-items:center}.footer-map iframe{width:170px;height:105px;border:0;filter:saturate(.75) contrast(.95)}.footer-map address{margin-top:.4rem;color:rgba(255,255,255,.58);font-size:.68rem;line-height:1.55}
.footer-legal{display:flex;justify-content:space-between;gap:1rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.42);font-size:.6rem}.footer-legal a{color:rgba(255,255,255,.48)}
@media(max-width:1000px){.conteudo-section>.container{grid-template-columns:1fr!important}.conteudo-card:nth-child(2){transform:none!important}.footer-lower{grid-template-columns:1fr 1fr}.footer-map{grid-column:1/-1;justify-self:start}}
@media(max-width:680px){.footer-cta-row,.footer-lower{grid-template-columns:1fr}.footer-map{grid-template-columns:1fr;width:100%}.footer-map iframe{width:100%;height:170px}.footer-legal{flex-direction:column}.conteudo-card:nth-child(2){transform:none!important}}

/* AJUSTES VISUAIS V14 */
#loading-screen,#reveal-overlay{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}
footer.site-footer{background:linear-gradient(135deg,rgba(31,91,47,.92),rgba(17,68,34,.86))!important;border-top:1px solid rgba(232,237,187,.22);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
footer.site-footer::before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 82% 22%,rgba(232,237,187,.12),transparent 34%),linear-gradient(90deg,rgba(255,255,255,.025),transparent 45%)}
footer.site-footer>.container{position:relative;z-index:1}
.sobre-section .sobre-img-wrap{width:min(100%,420px)!important;aspect-ratio:1/1!important;margin-inline:auto;border-radius:50%!important;overflow:hidden!important;border:1px solid rgba(36,73,32,.16);box-shadow:0 20px 55px rgba(25,54,25,.16)}
.sobre-section .sobre-img-wrap img{width:100%!important;height:100%!important;max-width:none!important;object-fit:cover!important;object-position:center 24%!important;border-radius:50%!important}
.problemas-image{aspect-ratio:5/4!important;overflow:hidden!important;background:#dfe6df}
.problemas-image img{width:100%!important;height:100%!important;max-width:none!important;object-fit:cover!important;object-position:center 42%!important}
@media(max-width:768px){.sobre-section .sobre-img-wrap{width:min(82vw,330px)!important}.problemas-image{aspect-ratio:4/3!important}.problemas-image img{object-position:center center!important}}

/* MENU E FOOTER V17 */
footer.site-footer{background:rgba(36,73,32,.94)!important;background-image:linear-gradient(135deg,rgba(49,95,43,.28),rgba(25,54,25,.18))!important;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.logo-light,.logo-dark{height:56px!important;width:auto!important;max-width:none!important;object-fit:contain}
@media(max-width:768px){.logo-light,.logo-dark{height:46px!important}.header-inner{min-height:54px}}
@media(max-width:420px){.logo-light,.logo-dark{height:42px!important}}
