:root {
    --green-900: #064b2d;
    --green-800: #0a6938;
    --green-700: #0f7c42;
    --green-600: #168147;
    --gold-500: #d8a620;
    --gold-400: #e3bb45;
    --gold-300: #f0d57a;
    --ink: #163326;
    --ink-soft: #2b4b3e;
    --muted: #5f7069;
    --cream: #fcfaf3;
    --cream-2: #f4efe3;
    --white: #ffffff;
    --line: rgba(10, 73, 45, .14);
    --shadow: 0 24px 60px rgba(13, 61, 35, .14);
    --shadow-soft: 0 14px 34px rgba(13, 61, 35, .08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shell: min(1240px, calc(100% - 40px));
    --header-h: 106px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
    position: fixed; left: 14px; top: 14px; z-index: 9999; background: var(--white); color: var(--ink);
    padding: 12px 16px; border-radius: 12px; transform: translateY(-180%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,75,45,.08); transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 30px rgba(13,61,35,.08); }
.header-inner {
    min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
}
.brand img { width: min(420px, 30vw); min-width: 210px; height: auto; }
.main-nav {
    justify-self: center; display: flex; align-items: center; gap: 34px; font-size: 18px; color: #314438;
}
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -12px; height: 3px; border-radius: 999px;
    background: var(--green-800); transition: right .22s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.nav-cta {
    padding: 18px 34px; background: var(--green-800); color: var(--white); border-radius: 20px; font-weight: 700;
    box-shadow: var(--shadow-soft); transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-1px); background: var(--green-900); }
.menu-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--white); border-radius: 14px;
    padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
    position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fff 40px, var(--cream) 100%);
    padding: 36px 0 0;
}
.hero-bg {
    position: absolute; inset: 0; background:
        linear-gradient(90deg, rgba(252,250,243,.98) 0%, rgba(252,250,243,.93) 24%, rgba(252,250,243,.35) 54%, rgba(252,250,243,.1) 70%),
        url('../img/congresso-sunset-clean.png') center right / cover no-repeat;
}
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 170px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(252,250,243,.48) 35%, rgba(252,250,243,.95) 100%);
    pointer-events: none;
}
.hero-grid {
    position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 40px;
    min-height: 590px; padding: 30px 0 96px;
}
.hero-copy { max-width: 560px; }
.hero-copy h1 {
    margin-bottom: 10px;
    font-size: clamp(56px, 7vw, 88px);
    line-height: .96;
    letter-spacing: -.04em;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.hero-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.4vw, 55px);
    line-height: 1.05;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.hero-copy p {
    margin-bottom: 28px; font-size: clamp(19px, 1.9vw, 26px); line-height: 1.28; color: #ffffff; max-width: 540px;
}
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 68px; padding: 18px 34px;
    border: 0; border-radius: 22px; font-size: 20px; font-weight: 800; cursor: pointer; box-shadow: var(--shadow-soft);
}
.button-primary { background: var(--green-900); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: #043922; }
.button-dark { background: var(--green-900); color: var(--white); }

.hero-mini-features {
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; margin-top: 38px; max-width: 640px;
    padding: 18px 20px; background: rgba(252,250,243,.78); border: 1px solid rgba(10,73,45,.08); border-radius: 18px; backdrop-filter: blur(10px);
}
.mini-feature { display: flex; align-items: center; gap: 12px; }
.mini-feature strong, .mini-feature small { display: block; line-height: 1.15; }
.mini-feature strong { font-size: 18px; font-weight: 700; color: #274136; }
.mini-feature small { font-size: 15px; color: #455b50; }
.mini-icon, .benefit-icon, .info-icon, .contact-info-card > span, .security-panel > span {
    display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
    border-radius: 16px; color: var(--green-900); background: rgba(255,255,255,.8); border: 1px solid rgba(10,73,45,.1); flex: 0 0 auto;
}
.mini-icon svg, .benefit-icon svg, .info-icon svg, .contact-info-card > span svg, .security-panel > span svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.hero-card-wrap {
    position: relative; display: flex; align-items: center; justify-content: flex-end; min-height: 420px; padding: 30px 0;
}
.hero-wave {
    position: absolute; right: -130px; bottom: -35px; width: min(760px, 100%); height: 240px; border-radius: 160px 0 0 0;
    background:
      radial-gradient(circle at 20% 0%, rgba(255,255,255,.18), transparent 42%),
      linear-gradient(150deg, #0f8b44 0%, #0d6f3a 58%, #09572f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.hero-wave::before,
.hero-wave::after {
    content: ""; position: absolute; left: 70px; right: 0; border-radius: inherit; transform: skewX(-16deg);
}
.hero-wave::before { bottom: 30px; height: 30px; background: var(--gold-400); }
.hero-wave::after { bottom: 10px; height: 12px; background: rgba(255,255,255,.94); }

.front-card {
    position: relative; z-index: 2; width: min(100%, 620px); aspect-ratio: 1.58 / 1; color: var(--white);
    background: linear-gradient(145deg, #0f9446 0%, #077236 44%, #035427 100%); border-radius: 30px;
    box-shadow: 0 30px 70px rgba(2, 45, 22, .28); padding: 28px 32px; overflow: hidden; transform: rotate(-2deg);
    border: 1px solid rgba(255,255,255,.18);
}
.front-card::before {
    content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 22%);
}
.card-top-row, .card-bottom-row {
    position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.card-brand-inline { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
    width: 52px; height: 38px; border-radius: 14px 16px 14px 16px / 14px 14px 16px 16px;
    background: linear-gradient(140deg, #1fc56c 0%, #0b8f46 50%, #046430 100%); position: relative; overflow: hidden; flex: 0 0 auto;
}
.brand-mark::before {
    content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, transparent 0 18%, rgba(255,255,255,.16) 20% 36%, transparent 38% 100%);
}
.brand-name { font-weight: 900; letter-spacing: .02em; font-size: clamp(24px, 2.6vw, 34px); }
.brand-name em { font-style: normal; color: #f7fbf7; }
.card-network { font-size: 26px; font-weight: 900; letter-spacing: .04em; }
.card-chip-row { position: relative; z-index: 2; display: flex; align-items: center; gap: 18px; margin-top: 42px; }
.chip {
    width: 78px; height: 58px; border-radius: 10px; background: linear-gradient(145deg, #f5dd94 0%, #d5a739 60%, #b77f18 100%);
    box-shadow: inset 0 0 0 1px rgba(110,70,5,.22); position: relative;
}
.chip::before, .chip::after {
    content: ""; position: absolute; inset: 0; background-repeat: no-repeat;
}
.chip::before {
    background-image:
        linear-gradient(rgba(98,65,9,.44), rgba(98,65,9,.44)),
        linear-gradient(rgba(98,65,9,.44), rgba(98,65,9,.44)),
        linear-gradient(rgba(98,65,9,.44), rgba(98,65,9,.44)),
        linear-gradient(rgba(98,65,9,.44), rgba(98,65,9,.44));
    background-size: 1px 100%, 1px 100%, 100% 1px, 100% 1px;
    background-position: 24px 0, 52px 0, 0 18px, 0 40px;
}
.contactless { color: rgba(255,255,255,.9); }
.contactless svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 2; fill: none; }
.card-curves {
    position: absolute; inset: 0; pointer-events: none;
}
.card-curves::before, .card-curves::after {
    content: ""; position: absolute; right: -36px; bottom: -16px; width: 72%; height: 86%; border-radius: 46px;
    border: 2px solid rgba(255,255,255,.14); transform: rotate(-8deg);
}
.card-curves::after { right: 36px; bottom: 48px; width: 45%; height: 54%; border-color: rgba(255,255,255,.12); }
.card-bottom-row { margin-top: auto; padding-top: 150px; align-items: flex-end; }
.card-tagline { font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.card-badge {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 10px 12px;
    max-width: 220px;
}
.card-badge img { width: 180px; height: auto; }
.front-card--small { width: 100%; max-width: 450px; transform: rotate(-8deg); padding: 22px 26px; }
.front-card--small .brand-name { font-size: 24px; }
.front-card--small .card-network { font-size: 22px; }
.front-card--small .card-chip-row { margin-top: 28px; }
.front-card--small .chip { width: 66px; height: 50px; }
.front-card--small .card-bottom-row { padding-top: 60px; }
.front-card--small .card-badge { display: none; }

.benefit-strip {
    position: relative; z-index: 2; background: var(--white); border-top: 1px solid rgba(10,73,45,.08); border-bottom: 1px solid rgba(10,73,45,.08);
}
.benefit-strip-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0;
}
.benefit-item {
    display: flex; align-items: center; gap: 18px; padding: 28px 30px; min-height: 124px; border-right: 1px solid rgba(10,73,45,.1);
}
.benefit-item:last-child { border-right: 0; }
.benefit-item strong, .benefit-item small { display: block; line-height: 1.14; }
.benefit-item strong { font-size: 18px; }
.benefit-item small { font-size: 18px; color: #31453a; }

.section { padding: 88px 0; }
.section-light { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.section-dark { background: linear-gradient(135deg, #0a6135 0%, #084628 100%); color: var(--white); }
.section-heading { max-width: 760px; margin: 0 auto 42px; }
.center-heading { text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 14px; font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.eyebrow-dark { color: var(--green-800); }
.section-heading h2, .two-col h2, .contact-copy h2, .security-grid h2, .legal-hero h1 {
    margin-bottom: 14px; font-size: clamp(34px, 4vw, 52px); line-height: 1.06; letter-spacing: -.03em;
}
.section-heading p, .two-col p, .contact-copy p, .security-grid p, .legal-hero p { font-size: 20px; color: #42564c; }
.section-dark p { color: rgba(255,255,255,.82); }

.two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.showcase-side { display: flex; justify-content: center; }
.mini-scene {
    position: relative; width: min(100%, 520px); min-height: 380px; display: flex; align-items: center; justify-content: center;
}
.scene-bg {
    position: absolute; inset: 0; border-radius: 34px; background:
        linear-gradient(90deg, rgba(252,250,243,.5), rgba(252,250,243,.05)),
        url('../img/congresso-sunset-clean.png') center / cover no-repeat;
    box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; font-size: 18px; color: #31453a; align-items: flex-start; }
.check-list li svg { width: 22px; height: 22px; margin-top: 1px; stroke: var(--green-800); stroke-width: 2.2; fill: none; flex: 0 0 auto; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.info-card {
    padding: 28px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-soft); border: 1px solid rgba(10,73,45,.08);
}
.info-card h3 { margin: 18px 0 10px; font-size: 26px; }
.info-card p { margin-bottom: 0; font-size: 18px; color: #475a50; }

.security-grid {
    display: grid; grid-template-columns: 1fr .95fr; gap: 38px; align-items: start;
}
.security-panels { display: grid; gap: 18px; }
.security-panel {
    padding: 26px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}
.security-panel h3 { margin: 18px 0 10px; font-size: 24px; }
.security-panel p { margin-bottom: 0; font-size: 18px; color: rgba(255,255,255,.82); }
.security-panel a { text-decoration: underline; }

.section-contact { background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: start; }
.contact-info-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-info-card {
    display: flex; gap: 16px; padding: 20px 22px; background: var(--white); border-radius: 22px; border: 1px solid rgba(10,73,45,.08); box-shadow: var(--shadow-soft);
}
.contact-info-card strong { display: block; margin-bottom: 4px; font-size: 18px; }
.contact-info-card p { margin: 0; font-size: 17px; color: #45594f; }
.contact-form-wrap {
    padding: 28px; background: var(--white); border-radius: 28px; border: 1px solid rgba(10,73,45,.08); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 600; color: #284034; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 15px 16px; border: 1px solid rgba(10,73,45,.15); border-radius: 14px; background: #fff; color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid rgba(10,105,56,.18); border-color: var(--green-800); }
.privacy-check {
    display: flex !important; align-items: flex-start; gap: 12px; font-weight: 500 !important; color: #44574d; font-size: 15px;
}
.privacy-check input { width: 18px; height: 18px; margin-top: 2px; }
.form-message {
    margin-bottom: 18px; padding: 14px 16px; border-radius: 14px; font-weight: 600;
}
.form-message.success { background: #e8f8ef; color: #0d6a39; }
.form-message.error { background: #fff1ef; color: #a3442f; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { background: var(--cream-2); border-top: 1px solid rgba(10,73,45,.08); }
.footer-top {
    display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 34px; padding: 56px 0 28px;
}
.footer-brand img { width: min(360px, 100%); height: auto; }
.footer-brand p { margin-top: 14px; max-width: 420px; font-size: 18px; color: #41554a; }
.footer-col h2 { margin-bottom: 16px; font-size: 18px; }
.footer-col a, .footer-col p {
    display: block; margin-bottom: 10px; color: #486055; font-size: 16px;
}
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0 34px; border-top: 1px solid rgba(10,73,45,.08); color: #53665d; font-size: 15px;
}

.legal-page { background: var(--cream); }
.legal-hero {
    padding: 90px 0 36px; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); border-bottom: 1px solid rgba(10,73,45,.08);
}
.legal-content-wrap { padding: 34px 0 80px; }
.legal-content {
    width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 32px; background: #fff; border-radius: 26px;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(10,73,45,.08);
}
.legal-content h2, .legal-content h3 { color: var(--green-900); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-content th, .legal-content td { border: 1px solid rgba(10,73,45,.12); padding: 10px 12px; text-align: left; }

@media (max-width: 1100px) {
    .main-nav { gap: 20px; font-size: 16px; }
    .nav-cta { padding: 15px 22px; }
    .hero-grid, .two-col, .security-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; }
    .hero-card-wrap { justify-content: center; min-height: 360px; }
    .benefit-strip-grid, .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
    :root { --header-h: 88px; --shell: min(100% - 24px, 1240px); }
    .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
    .brand img { width: min(300px, 58vw); min-width: 180px; }
    .menu-toggle { display: inline-block; }
    .main-nav {
        position: fixed; inset: var(--header-h) 12px auto; background: rgba(255,255,255,.98); border: 1px solid rgba(10,73,45,.08);
        border-radius: 22px; box-shadow: var(--shadow); padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 10px;
    }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.nav-cta)::after { display: none; }
    .main-nav > a { padding: 12px 8px; }
    .nav-cta { text-align: center; }
    .hero-grid { min-height: auto; padding: 10px 0 80px; }
    .hero-copy h1 { font-size: clamp(44px, 12vw, 66px); }
    .hero-copy h2 { font-size: clamp(28px, 8vw, 42px); }
    .hero-copy p { font-size: 18px; }
    .hero-mini-features { grid-template-columns: 1fr; }
    .benefit-strip-grid, .cards-grid { grid-template-columns: 1fr; }
    .benefit-item { border-right: 0; border-bottom: 1px solid rgba(10,73,45,.1); }
    .benefit-item:last-child { border-bottom: 0; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .hero { padding-top: 16px; }
    .hero-copy h1 { font-size: 56px; }
    .hero-copy h2 { font-size: 24px; }
    .button { width: 100%; font-size: 18px; min-height: 60px; }
    .front-card { padding: 22px 20px; border-radius: 24px; }
    .brand-name { font-size: 22px; }
    .card-network { font-size: 20px; }
    .chip { width: 64px; height: 48px; }
    .card-bottom-row { padding-top: 92px; }
    .card-tagline { font-size: 12px; }
    .card-badge { max-width: 160px; }
    .card-badge img { width: 128px; }
    .section { padding: 72px 0; }
    .contact-form-wrap, .legal-content { padding: 22px; }
}

/* Saúde + Perto */
.health-section {
    background: linear-gradient(180deg, #fff 0%, #fbfaf4 100%);
    overflow: hidden;
}
.health-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 54px;
    align-items: center;
}
.health-copy { max-width: 650px; }
.health-logo {
    width: min(330px, 70%);
    height: auto;
    margin-bottom: 22px;
}
.health-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.03;
    letter-spacing: -.03em;
    color: var(--green-900);
}
.health-copy p {
    margin-bottom: 18px;
    font-size: 19px;
    color: #43584d;
}
.health-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin: 26px 0 30px;
}
.health-highlights > div {
    min-height: 132px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(10,73,45,.09);
    box-shadow: var(--shadow-soft);
}
.health-highlights span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 14px;
    color: #f26a21;
    background: #fff4ed;
}
.health-highlights svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.health-highlights strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    color: #294438;
}
.health-visual { position: relative; }
.health-image-wrap {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,73,45,.08);
}
.health-image-wrap > img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}
.health-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(4,75,45,.72) 100%);
    pointer-events: none;
}
.health-card {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 38px rgba(0,0,0,.14);
}
.health-card strong,
.health-card span { display: block; }
.health-card strong {
    font-size: 24px;
    color: var(--green-900);
}
.health-card span {
    margin-top: 3px;
    color: #4d6257;
}

@media (max-width: 1100px) {
    .health-grid { grid-template-columns: 1fr; }
    .health-copy { max-width: none; }
}

@media (max-width: 700px) {
    .health-highlights { grid-template-columns: 1fr; }
    .health-image-wrap > img { min-height: 330px; }
}
.security-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.security-copy {
    max-width: 620px;
}

.security-copy h2 {
    margin-bottom: 20px;
}

.security-intro {
    max-width: 560px;
    margin-bottom: 38px;
    font-size: 20px;
    line-height: 1.6;
}

.security-text-items {
    display: grid;
    gap: 26px;
}

.security-text-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.solution-number {
    color: #e3bb45;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .15em;
}

.security-text-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #fff;
}

.security-text-item p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.6;
}


/* SOMENTE DOIS QUADRADOS */

.security-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-panel {
    min-height: 300px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    border-radius: 26px;

    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(10px);
}

.security-panel > span {
    margin-bottom: auto;
}

.security-panel small {
    display: block;
    margin: 28px 0 8px;

    color: #e3bb45;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .18em;
}

.security-panel h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 23px;
    line-height: 1.15;
}

.security-panel p {
    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 16px;
    line-height: 1.55;
}


@media (max-width: 900px) {

    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-copy {
        max-width: none;
    }

    .security-panels {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .security-panels {
        grid-template-columns: 1fr;
    }

    .security-panel {
        min-height: auto;
    }

    .security-text-item {
        grid-template-columns: 44px 1fr;
    }
}