

:root {
  
  --verde-950: #141d10;
  --verde-900: #1c2716;
  --verde-800: #253420;
  --verde-700: #33452b;
  --verde-600: #445939;

  --dourado-700: #a8813a;
  --dourado-600: #c6a153;
  --dourado-500: #d4b978;
  --dourado-300: #e8d9ae;
  --dourado-100: #f4ecd8;

  --off-white: #f7f4ec;
  --cinza-claro: #cfd0c6;
  --cinza-esverdeado: #9aa591;

  
  --font-display: "Newsreader", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  
  --shadow-soft: 0 20px 60px -20px rgba(20, 29, 16, 0.45);
  --shadow-card: 0 10px 30px -12px rgba(20, 29, 16, 0.35);

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--verde-950);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; color: var(--off-white); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado-500);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dourado-500);
  flex-shrink: 0;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.section-head p { color: var(--cinza-claro); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--dourado-500), var(--dourado-700));
  color: var(--verde-950);
  box-shadow: 0 12px 30px -10px rgba(198, 161, 83, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(198, 161, 83, 0.65); }
.btn-ghost {
  background: transparent;
  border-color: rgba(247, 244, 236, 0.28);
  color: var(--off-white);
}
.btn-ghost:hover { border-color: var(--dourado-500); color: var(--dourado-300); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(20, 29, 16, 0.92), rgba(20, 29, 16, 0));
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(20, 29, 16, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(198, 161, 83, 0.15);
}

body.lp .site-header {
  position: static;
  background: rgba(20, 29, 16, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(198, 161, 83, 0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand svg, .brand img { width: 42px; height: 42px; flex-shrink: 0; }
.brand img { border-radius: 10px; object-fit: cover; border: 1px solid rgba(198,161,83,0.35); }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: 0.01em; line-height: 1.1; }
.brand-sub { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dourado-500); margin-top: 2px; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--cinza-claro);
  position: relative; padding-bottom: 4px; transition: color .2s ease;
}
.main-nav a:hover { color: var(--off-white); }
.main-nav a::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--dourado-500); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(247,244,236,.3); border-radius: 10px;
  width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--off-white);
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  padding: 168px 0 110px;
  background: linear-gradient(160deg, var(--verde-900), var(--verde-950) 65%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1100px 550px at 85% -10%, rgba(198,161,83,0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(198,161,83,0.10), transparent 55%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-content { max-width: 640px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.4rem, 4.8vw, 3.9rem); line-height: 1.14; max-width: 17ch; margin-bottom: 36px; }
.hero h1 em { font-style: normal; color: var(--dourado-500); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; }
.hero-trust div {
  display: flex; align-items: baseline; gap: 8px;
  padding: 0 28px 0 0; margin-right: 28px;
  border-right: 1px solid rgba(198,161,83,0.25);
}
.hero-trust div:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--dourado-500); }
.hero-trust span { font-size: 0.82rem; color: var(--cinza-esverdeado); max-width: 12ch; }

@media (max-width: 640px) {
  
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 12px; }
  .hero-trust div {
    flex-direction: column; align-items: flex-start; gap: 3px;
    border-right: none; padding-right: 0; margin-right: 0;
  }
  .hero-trust strong { font-size: 1.3rem; }
  .hero-trust span { font-size: 0.7rem; max-width: none; line-height: 1.25; }
}

.hero-visual { position: relative; z-index: 2; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198,161,83,0.25);
  background: linear-gradient(150deg, var(--verde-800), var(--verde-700));
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-orbit {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--verde-950); border: 1px solid rgba(198,161,83,0.3);
  border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-orbit svg { width: 30px; height: 30px; color: var(--dourado-500); flex-shrink: 0; }
.hero-orbit strong { display: block; font-size: 0.92rem; }
.hero-orbit span { font-size: 0.78rem; color: var(--cinza-esverdeado); }

.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(198,161,83,0.35), transparent); }

.historia { padding: 110px 0; background: var(--verde-950); }
.historia .grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.historia-highlight {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.45; color: var(--off-white);
  border-left: 2px solid var(--dourado-500); padding-left: 24px; margin: 28px 0;
}
.historia p { color: var(--cinza-claro); }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 76px 24px 1fr; align-items: start; padding-bottom: 36px; }
.timeline-year {
  font-family: var(--font-display); color: var(--dourado-500); font-size: 1rem; font-weight: 600;
  padding-top: 3px; text-align: right; white-space: nowrap;
}
.timeline-track { position: relative; display: flex; justify-content: center; align-self: stretch; }
.timeline-track::before {
  content: ""; position: absolute; top: 16px; bottom: -36px; left: 50%; width: 1px;
  transform: translateX(-50%); background: rgba(198,161,83,0.28);
}
.timeline-item--last .timeline-track::before { display: none; }
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--dourado-500);
  margin-top: 6px; box-shadow: 0 0 0 4px var(--verde-950); flex-shrink: 0;
}
.timeline-content h4 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-content p { color: var(--cinza-claro); font-size: 0.94rem; margin: 0; }

.reviews { padding: 110px 0; background: var(--verde-900); }
.proof-mini {
  color: var(--cinza-claro); font-size: 0.98rem; display: flex; align-items: center;
  justify-content: center; gap: 10px; flex-wrap: wrap;
}
.proof-mini span[aria-hidden] { color: var(--dourado-500); letter-spacing: 2px; }

.reviews-carousel { position: relative; }
.reviews-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 20px; margin: 0 -4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 300px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 16px;
  background: rgba(247,244,236,0.03); border: 1px solid rgba(198,161,83,0.16);
  border-radius: var(--radius-md); padding: 28px; transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.review-card:hover { border-color: rgba(198,161,83,0.5); transform: translateY(-4px); background: rgba(247,244,236,0.05); }
.review-stars { color: var(--dourado-500); letter-spacing: 3px; font-size: 0.95rem; }
.review-text { color: var(--cinza-claro); font-size: 0.92rem; line-height: 1.55; margin: 0; flex-grow: 1; }
.review-author { font-family: var(--font-display); font-size: 0.95rem; color: var(--off-white); }
.reviews-cta { text-align: center; margin-top: 22px; }

.carousel-arrow {
  position: absolute; top: 43%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--verde-950); border: 1px solid rgba(198,161,83,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--dourado-500);
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5);
}
.carousel-arrow:hover { background: rgba(198,161,83,0.14); border-color: var(--dourado-500); }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow.carousel-prev { left: -8px; }
.carousel-arrow.carousel-next { right: -8px; }
.carousel-arrow:disabled { opacity: 0.25; pointer-events: none; }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 6px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(198,161,83,0.3);
  border: none; padding: 0; transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.is-active { background: var(--dourado-500); transform: scale(1.35); }

@media (max-width: 900px) {
  .carousel-arrow { display: none; }
}

@media (max-width: 780px) {
  .review-card { flex-basis: 78vw; }
}

.especialidades { padding: 110px 0; background: linear-gradient(180deg, var(--verde-950), var(--verde-900)); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.spec-card {
  background: rgba(247,244,236,0.03); border: 1px solid rgba(198,161,83,0.16);
  border-radius: var(--radius-md); padding: 30px 26px; transition: border-color .25s ease, transform .25s ease, background .25s ease;
  display: flex; flex-direction: column;
}
.spec-card:hover { border-color: rgba(198,161,83,0.55); transform: translateY(-4px); background: rgba(247,244,236,0.05); }
.spec-icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(198,161,83,0.18), rgba(198,161,83,0.05));
  margin-bottom: 20px; color: var(--dourado-500);
}
.spec-icon svg { width: 27px; height: 27px; }
.spec-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.spec-card p { color: var(--cinza-claro); font-size: 0.92rem; flex-grow: 1; }
.spec-card .link-cta {
  margin-top: 18px; font-size: 0.85rem; font-weight: 700; color: var(--dourado-500);
  display: inline-flex; align-items: center; gap: 6px;
}
.spec-card .link-cta svg { width: 15px; height: 15px; transition: transform .2s ease; }
.spec-card:hover .link-cta svg { transform: translateX(3px); }

.equipe { padding: 110px 0; background: var(--verde-900); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 26px; }
.team-card {
  background: rgba(247,244,236,0.03); border: 1px solid rgba(198,161,83,0.14);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
  transition: border-color .25s ease, transform .25s ease;
}
.team-card:hover { border-color: rgba(198,161,83,0.5); transform: translateY(-4px); }
.avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; position: relative;
  background: linear-gradient(150deg, var(--verde-700), var(--verde-800));
  border: 1.5px solid var(--dourado-500); overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar span { font-family: var(--font-display); font-size: 1.7rem; color: var(--dourado-300); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role { display: block; font-size: 0.8rem; color: var(--dourado-500); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 4px; }
.team-cro { display: block; font-size: 0.72rem; color: var(--cinza-esverdeado); margin-bottom: 12px; }
.team-card p { color: var(--cinza-claro); font-size: 0.88rem; margin: 0; }

.team-support {
  background: rgba(247,244,236,0.03); border: 1px solid rgba(198,161,83,0.14); border-radius: var(--radius-md);
  padding: 30px 34px; display: flex; flex-wrap: wrap; gap: 18px 42px; align-items: center; justify-content: space-between;
}
.team-support h4 { font-size: 0.98rem; margin: 0; flex-shrink: 0; color: var(--dourado-300); }
.support-list { display: flex; flex-wrap: wrap; gap: 10px 30px; flex: 1; }
.support-list li { font-size: 0.9rem; color: var(--cinza-claro); }
.support-list strong { color: var(--off-white); font-weight: 700; }

.faq { padding: 100px 0; background: var(--verde-950); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid rgba(198,161,83,0.16); border-radius: var(--radius-md);
  background: rgba(247,244,236,0.03); overflow: hidden; transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(198,161,83,0.4); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 28px; font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 600; display: flex; justify-content: space-between;
  align-items: center; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  font-family: var(--font-body); font-size: 1.3rem; color: var(--dourado-500);
  flex-shrink: 0; transition: transform .25s ease; line-height: 1;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 28px 24px; margin: 0; color: var(--cinza-claro); font-size: 0.95rem; }

.cta-strip {
  padding: 70px 0; text-align: center;
  background: linear-gradient(135deg, var(--dourado-700), var(--dourado-500));
}
.cta-strip h2 { color: var(--verde-950); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; margin: 0 auto 12px; }
.cta-strip p { color: rgba(20,29,16,0.75); max-width: 46ch; margin: 0 auto 30px; }
.cta-strip .btn-primary { background: var(--verde-950); color: var(--off-white); box-shadow: 0 14px 30px -12px rgba(20,29,16,0.5); }
.cta-strip .btn-primary:hover { background: var(--verde-900); }

.site-footer { background: var(--verde-950); padding: 90px 0 26px; border-top: 1px solid rgba(198,161,83,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--cinza-esverdeado); font-size: 0.9rem; max-width: 30ch; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(198,161,83,0.3);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s ease, background .2s ease;
}
.social-links a:hover { border-color: var(--dourado-500); background: rgba(198,161,83,0.1); }
.social-links svg { width: 18px; height: 18px; color: var(--dourado-300); }

.footer-col h5 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dourado-500); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col address { color: var(--cinza-claro); font-size: 0.92rem; font-style: normal; }
.footer-col a:hover { color: var(--off-white); }
.footer-col address div { margin-bottom: 4px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; color: var(--cinza-claro); padding: 6px 0; border-bottom: 1px dashed rgba(198,161,83,0.15); }
.hours-row span:last-child { color: var(--off-white); font-weight: 600; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(198,161,83,0.25); aspect-ratio: 16/11; filter: grayscale(0.35) invert(0.92) contrast(0.92); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.footer-bottom {
  border-top: 1px solid rgba(198,161,83,0.12); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--cinza-esverdeado); }

.whatsapp-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(20,29,16,0.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(198,161,83,0.3);
}
.whatsapp-bar .btn { width: 100%; }

.whatsapp-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 199;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado-500), var(--dourado-700));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.55);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--verde-950); }

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; }
  .historia .grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 118px 0 60px; }
  .hero .container { gap: 40px; }
  .hero-actions { margin-bottom: 36px; }
  .hero-actions .btn { flex: 1; }
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-support { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .whatsapp-bar { display: block; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 0; }
  .hero-orbit { position: static; margin-top: 18px; max-width: none; }

  
  .historia, .especialidades, .equipe, .reviews, .faq { padding: 60px 0; }
  .historia .grid { gap: 36px; }
  .section-head { margin-bottom: 32px; }
  .site-footer { padding: 60px 0 22px; }
  .footer-grid { margin-bottom: 36px; }

  
  body.lp .hero { padding-top: 40px; }
}

@media (min-width: 781px) {
  
  body.lp .hero { padding-top: 64px; }
}

.mobile-nav {
  
  position: fixed; inset: 0; z-index: 250; background: var(--verde-950);
  display: none; flex-direction: column; padding: 100px 32px 40px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.7rem; }
.nav-close { position: absolute; top: 26px; right: 24px; background: none; border: 1px solid rgba(247,244,236,.3); border-radius: 10px; width: 44px; height: 44px; color: var(--off-white); display: flex; align-items: center; justify-content: center; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--dourado-500); outline-offset: 3px; }

.legal-page {
  padding: 150px 0 110px;
  background: linear-gradient(160deg, var(--verde-900), var(--verde-950) 65%);
}
.legal-container { max-width: 760px; }

.legal-header-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 600; color: var(--cinza-claro);
  transition: color .2s ease;
}
.legal-header-back svg { width: 18px; height: 18px; flex-shrink: 0; }
.legal-header-back:hover { color: var(--dourado-500); }
@media (max-width: 480px) {
  .legal-header-back span { display: none; }
}

.legal-page h1 { font-size: clamp(2.1rem, 4.2vw, 2.8rem); line-height: 1.16; margin-bottom: 14px; }
.legal-updated { color: var(--cinza-esverdeado); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page p { color: var(--cinza-claro); font-size: 1rem; line-height: 1.75; }
.legal-page p a { color: var(--dourado-500); text-decoration: underline; text-underline-offset: 2px; }
.legal-page p a:hover { color: var(--dourado-300); }
.legal-page h2 {
  font-size: 1.34rem; margin-top: 48px; margin-bottom: 16px;
  padding-top: 24px; border-top: 1px solid rgba(198,161,83,0.18);
}
.legal-page h2:first-of-type { margin-top: 40px; }
.legal-list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 1.5em; padding-left: 22px; }
.legal-list li { color: var(--cinza-claro); font-size: 1rem; line-height: 1.6; list-style: disc; }
.legal-list li::marker { color: var(--dourado-500); }
.legal-list li strong { color: var(--off-white); }

@media (max-width: 780px) {
  .legal-page { padding: 120px 0 80px; }
}

.footer-bottom a { color: var(--cinza-esverdeado); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--dourado-500); }

.hero-sub { color: var(--cinza-claro); font-size: 1.05rem; max-width: 54ch; margin: -18px 0 32px; }

.hero-illustration {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 30% 15%, rgba(198,161,83,0.18), transparent 60%),
    linear-gradient(150deg, var(--verde-800), var(--verde-700));
}
.hero-illustration svg { width: 46%; height: auto; color: var(--dourado-500); }

.trust-badge {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; text-align: center; margin: 0 auto; max-width: 520px;
  background: rgba(247,244,236,0.03); border: 1px solid rgba(198,161,83,0.18);
  border-radius: var(--radius-md); padding: 22px 28px;
}
.trust-badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--dourado-500); }
.trust-badge span { color: var(--cinza-claro); font-size: 0.95rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 780px) { .grid-2 { grid-template-columns: 1fr; } }

.timeline-wrap { max-width: 640px; margin: 0 auto; }

.footer-grid-lp { grid-template-columns: 1.3fr 1fr 1.3fr; }
@media (max-width: 1024px) {
  .footer-grid-lp { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .footer-grid-lp { grid-template-columns: 1fr; }
}
