:root {
  --green: #16a85a;
  --green-dark: #0f7f46;
  --blue-gray: #6f829c;
  --blue-gray-dark: #243247;
  --ink: #172033;
  --muted: #69788d;
  --line: #e7edf3;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(22, 45, 74, .10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 46%, #f3f8f6 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(231,237,243,.8);
}
.nav-wrap { height: 96px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; height: 76px; max-width: 168px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-gray-dark); }
.main-nav a { opacity: .78; transition: .25s ease; }
.main-nav a:hover { opacity: 1; color: var(--green-dark); }
.nav-cta { padding: 13px 18px; border-radius: 999px; background: var(--soft); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--soft); border-radius: 14px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.hero {
  padding: 74px 0 70px;
  position: relative;
  overflow: hidden;

  background:
linear-gradient(
rgba(255,255,255,.82),
rgba(247,250,249,.88)
),
url('assets/hero-health.png');

background-size: cover;
background-position: center;
}


.hero::before {
  content: '';
  position: absolute;

  width: 720px;
  height: 720px;

  border-radius: 50%;

  background:
  radial-gradient(
    circle,
    rgba(22,168,90,.10) 0%,
    rgba(22,168,90,.05) 28%,
    transparent 68%
  );

  filter: blur(18px);

  right: -260px;
  top: -320px;

  opacity: .95;
}

.hero::after {
  content: '';

  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
  radial-gradient(
    circle,
    rgba(120,140,255,.08) 0%,
    transparent 70%
  );

  left: -140px;
  bottom: -180px;

  filter: blur(70px);

  opacity: .7;
}

.hero-grid { display: grid; grid-template-columns: 1.06fr .72fr; gap: 56px; align-items: center; position: relative; }
.eyebrow, .section-label { display: inline-flex; color: var(--green-dark); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 4.8vw, 64px); line-height: 1.03; letter-spacing: -.05em; margin-bottom: 26px; max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -.04em; margin-bottom: 20px; }
h3 { font-size: 20px; line-height: 1.18; letter-spacing: -.025em; }
p { color: var(--muted); line-height: 1.75; font-size: 17px; }

.hero-copy p { font-size: 19px; max-width: 640px; }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; font-size: 14px; letter-spacing: .02em; transition: .25s ease; }
.btn.primary { background: var(--green); color: white; box-shadow: 0 16px 40px rgba(22,168,90,.22); }
.btn.secondary { background: rgb(92, 151, 183); color: var(--blue-gray-dark); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-2px); }

.hero-card { background: rgba(255,255,255,.82); border: 1px solid rgba(231,237,243,.95); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.hero-card-top { border-left: 4px solid var(--green); padding-left: 18px; margin-bottom: 34px; }
.hero-card-top span { display: block; color: var(--blue-gray); font-weight: 800; margin-bottom: 10px; }
.hero-card-top strong { font-size: 32px; line-height: 1.05; letter-spacing: -.04em; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.metric-grid div { background: var(--soft); border-radius: 20px; padding: 22px; }
.metric-grid strong { display: block; color: var(--green); font-size: 28px; margin-bottom: 8px; }
.metric-grid span { color: var(--muted); font-weight: 700; font-size: 14px; }

section { padding: 86px 0; }
.split { display: grid; grid-template-columns: .82fr 1fr; gap: 90px; align-items: start; }
.text-column p { margin-bottom: 22px; }
.method { background: rgba(255,255,255,.55); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.centered { text-align: center; margin-inline: auto; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.steps-grid article,
.service-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  padding: 28px;

  box-shadow:
    0 14px 36px rgba(22,45,74,.055),
    inset 0 1px 0 rgba(255,255,255,.85);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: .28s ease;
}

.steps-grid article:hover,
.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(22,168,90,.28);

  box-shadow:
    0 24px 58px rgba(22,45,74,.10),
    0 6px 18px rgba(22,168,90,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.service-card span,
.steps-grid span {
  color: var(--green);
}

.steps-grid span, .service-card span { color: var(--green); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.steps-grid h3, .service-card h3 { margin: 18px 0 12px; }
.steps-grid p, .service-card p { font-size: 15px; line-height: 1.65; margin-bottom: 0; }

.services { background: linear-gradient(180deg, #f6faf8 0%, #ffffff 100%); }
.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { min-height: 260px; display: flex; flex-direction: column; }
.service-card p { margin-top: auto; }

.audience-box { background: var(--blue-gray-dark); color: white; padding: 54px; border-radius: 34px; box-shadow: var(--shadow); }
.audience-box h2 { color: white; }
.audience-list { display: grid; gap: 14px; }
.audience-list div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px 20px; color: rgba(255,255,255,.86); font-weight: 600; }

.final-cta { padding-top: 20px; }
.final-card { text-align: center; background: white; border: 1px solid var(--line); border-radius: 38px; padding: 72px 32px; box-shadow: var(--shadow); }
.final-card p { max-width: 640px; margin-inline: auto; }
.contact-actions { justify-content: center; }

.site-footer { padding: 34px 0 50px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 14px; }
.footer-grid img { width: 110px; opacity: .88; }
.footer-grid a { font-weight: 800; color: var(--green-dark); }

.section-reveal { opacity: 0; transform: translateY(26px); transition: .7s ease; }
.section-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 96px 20px auto 20px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 22px; display: none; flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { height: 82px; }
  .main-nav { inset: 82px 14px auto 14px; }
  .brand img { height: 62px; max-width: 138px; }
  .hero { padding: 48px 0 54px; }
  section { padding: 58px 0; }
  h1 { font-size: clamp(34px, 10.5vw, 42px); line-height: 1.04; }
  .hero-copy p { font-size: 18px; }
  .steps-grid, .cards-grid, .metric-grid { grid-template-columns: 1fr; }
  .audience-box { padding: 34px 22px; }
  .footer-grid { flex-direction: column; text-align: center; }
}





/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 99999;
  animation: cookieFade 0.4s ease;
}

.cookie-box {
  width: 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
}

.cookie-box h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #162033;
  margin-bottom: 12px;
  font-weight: 700;
}

.cookie-box p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #617086;
  margin-bottom: 18px;
}

.cookie-box a {
  color: #10a957;
  text-decoration: none;
  font-weight: 700;
}

.cookie-box button {
  width: 120px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #10a957;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16,169,87,0.25);
}

@keyframes cookieFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-box {
    width: 100%;
  }

  .cookie-box button {
    width: 100%;
  }
}

/* RESPONSIVO */

@media (max-width: 600px) {

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-box {
    width: 100%;
    padding: 24px;
    border-radius: 22px;
  }

  .cookie-box h3 {
    font-size: 1.6rem;
  }

  .cookie-box button {
    width: 100%;
  }

}






/* =========================
   PRIVACY PAGE
========================= */

.privacy-header {
  width: 100%;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
}

.privacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-logo img {
  height: 54px;
}

.privacy-back {
  text-decoration: none;
  color: #10a957;
  font-weight: 700;
  font-size: 0.95rem;
}

.privacy-section {
  padding: 80px 0;
  background: #f7faf9;
}

.privacy-container {
  max-width: 860px;
}

.privacy-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #10a957;
}

.privacy-container h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #162033;
}

.privacy-date {
  color: #7b8798;
  margin-bottom: 48px;
}

.privacy-content {
  background: #ffffff;
  padding: 54px;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(15,23,42,0.05);
}

.privacy-content h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: #162033;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.9;
  color: #617086;
}

.privacy-content ul {
  padding-left: 24px;
  margin-top: 12px;
}

@media (max-width: 768px) {

  .privacy-section {
    padding: 48px 0;
  }

  .privacy-container h1 {
    font-size: 2.2rem;
  }

  .privacy-content {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .privacy-top {
    flex-direction: column;
    gap: 18px;
  }

}