/* ========== RESET / BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: #2b2b2b;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ========== VARIABLES ========== */
:root {
    --teal: #16c3bd;
    --teal-dark: #0fa8a3;
    --lime: #d4ed00;
    --lime-soft: #e1f02c;
    --dark: #3a3a3a;
    --darker: #2d2d2d;
    --text: #2b2b2b;
    --text-soft: #555;
    --bg-soft: #f3f1ed;
    --serif: Georgia, "Times New Roman", serif;
}
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--teal);
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

em {
    font-style: italic;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform 0.15s ease,
        filter 0.15s ease;
}
.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}
.btn-lime {
    background: var(--lime);
    color: #1a1a1a;
}
.btn-dark {
    background: #111;
    color: #fff;
}
.cart-icon,
.play-icon {
    font-size: 16px;
    line-height: 1;
}

/* ========== NAVBAR ========== */
.navbar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 32px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--darker);
    font-weight: 400;
    letter-spacing: -0.5px;
}
.logo-arrow {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}
.logo-word {
    letter-spacing: 0.5px;
}
.logo-sub {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 2px;
    vertical-align: baseline;
    color: var(--darker);
}
.nav-links {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 24px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
}
.nav-links a:hover {
    color: var(--teal-dark);
}
.nav-cta {
    padding: 10px 18px;
    font-size: 13px;
}
.nav-links-cta {
    display: none;
}

/* LANG NAV */
.nav__lang {
    padding-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 16px;
}

.nav__lang-link {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid var(--teal);
    border-radius: 50px;
    width: 90px;
    transition: 0.3s;
}

.nav__lang-link:hover,
.nav__lang-link:focus {
    background: var(--teal);
    color: var(--bg-soft);
}

.nav__lang-link:is(.active) {
    pointer-events: none;
    background: var(--teal);
    color: var(--bg-soft);
    font-weight: 600;
}

@media (max-width: 950px) {
    .nav__lang-link {
        min-width: 50px;
    }
    .nav__lang-link > span {
        display: none;
    }
}
/* ========== HERO ========== */
.hero {
    position: relative;
    background: #f7f1ec;
    overflow: hidden;
    min-height: 700px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1300px) {
    .hero-bg {
        background-size: cover;
    }
}
@media (min-width: 1301px) {
    .hero-bg {
        background-size: contain;
    }
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(247, 241, 236, 0.95) 0%,
            rgba(247, 241, 236, 0.85) 30%,
            rgba(247, 241, 236, 0.55) 48%,
            rgba(247, 241, 236, 0) 65%
        );
        z-index: 1;
        pointer-events: none;
    }
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 100px;
    max-width: 1180px;
}
.hero-eyebrow {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}
.eyebrow-bar {
    display: inline-block;
    width: 3px;
    height: 38px;
    background: #2b2b2b;
}
.eyebrow-title {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: #2b2b2b;
}
.eyebrow-sub {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: #555;
}
.hero-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 58px;
    line-height: 1.08;
    color: #1a1a1a;
    margin: 0 0 30px;
    max-width: 620px;
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 15px;
    color: #2b2b2b;
    max-width: 420px;
    margin: 0 0 32px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section {
    padding: 90px 0;
    background: #fff;
}
.section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0 0 26px;
}
.section-title strong {
    font-weight: 700;
}
.section-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.section-title.light {
    color: #fff;
}
.section-title.centered {
    text-align: center;
}

.divider {
    width: 90px;
    height: 2px;
    background: var(--teal);
    margin: 0 0 36px;
}
.divider.center {
    margin: 0 auto 40px;
}

/* ===== O QUE É ===== */
.what-is {
    padding-top: 70px;
    padding-bottom: 80px;
}
.what-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}
.what-text {
    margin: auto;
}
.what-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 18px;
}
.what-text strong {
    color: #1a1a1a;
    font-weight: 600;
}
.what-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-card {
    display: flex;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 10px;
    align-items: center;
}
.info-card.light {
    background: #efebe6;
    color: #1a1a1a;
}
.info-card.dark {
    background: var(--dark);
    color: #fff;
}
.info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
.info-card.dark strong {
    color: #fff;
}
.info-icon {
    flex-shrink: 0;
}
.info-icon svg {
    width: 44px;
    height: 44px;
}

/* ===== DARK SECTION ===== */
.dark-section {
    background: var(--dark);
    color: #fff;
}
.dark-section .section-title.light em {
    color: #fff;
}
.dark-section p {
    color: #e5e5e5;
}

/* MORE THAN A TEST */
.more-than {
    padding-top: 80px;
    padding-bottom: 80px;
}
.more-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 40px;
}
@media (max-width: 920px) {
    .more-head {
        flex-direction: column;
        margin-bottom: 32px;
    }
}

.more-head .section-title {
    max-width: 620px;
    margin-bottom: 16px;
}
.badges-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding-top: 6px;
    position: relative;
}
.arrow-down {
    width: 80px;
    height: 80px;
}

@media (min-width: 950px) {
    .badges-col {
        position: absolute;
        top: -35px;
        right: 0;
    }
}

.badges-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

@media (max-width: 960px) {
    .badges-list,
    .badges-col {
        flex-direction: row;
    }
}

.badges-list li {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.badges-list span {
    color: var(--lime);
    margin-right: 4px;
}
.more-sub {
    max-width: 720px;
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0 0 50px;
}
.more-sub strong {
    color: #fff;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step {
    background: transparent;
    text-align: center;
}
.step-img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 18px;
}
.step-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 16px 0;
}
.step-text {
    font-size: 13px;
    color: #c8c8c8;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DETECT (28 tipos) ===== */
.detect {
    position: relative;
    background: #fff;
    padding: 90px 0 110px;
    overflow: hidden;
}
@media (min-width: 950px) {
    .detect::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(
            85deg,
            var(--bg-soft) 65%,
            rgba(0, 0, 0, 0) 80%
        );
        width: 100%;
        height: 100%;
    }
}
.detect-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 38%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media (min-width: 520px) and (max-width: 768px) {
    .detect-image {
        top: 50%;
        transform: translateY(-50%);
        right: -5%;
        width: 200px;
        height: 500px;
        border-radius: 0;
    }
}

@media (max-width: 519px) {
    .detect-image {
        right: -15%;
        width: 200px;
        height: 200px;
        top: 80%;
        transform: none;
        border-radius: 0;
    }
}

.detect-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}
.detect-text .section-title em {
    font-family: var(--serif);
}

.detect-list h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin: 22px 0 6px;
}
.detect-list p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 0;
    max-width: 380px;
}
.detect-aside {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    gap: 32px;
    padding-top: 280px;
    padding-right: 5rem;
}
@media (min-width: 950px) {
    .info-sticker {
        width: 300px;
    }
}
.info-sticker {
    background: var(--dark);
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.info-sticker em {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: #f0f0f0;
    display: block;
    margin-bottom: 6px;
}
.info-sticker strong {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: #f0f0f0;
    line-height: 1.15;
}
.detect-cta {
    align-self: center;
}

/* ===== KIT SECTION ===== */
.kit-section {
    background: #fff;
    padding: 70px 0 80px;
}
.kit-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}
.kit-head .section-title {
    margin: 0;
}
.kit-sub {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 8px 0 0;
    max-width: 480px;
}
.kit-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== APROVADO ===== */
.approved {
    padding: 80px 0;
}

.approved-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
}

.approved-text > * {
    margin: 0;
}
.approved-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.feature-tile {
    background: #4d4d4d;
    border-radius: 6px;
    padding: 20px 22px;
    color: #fff;
}
.feature-tile:is(.approved-badge) {
    padding: 0;
}
.feature-tile h4 {
    font-size: 14px;
    letter-spacing: 1.6px;
    font-weight: 700;
    margin: 0 0 8px;
}
.feature-tile p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
    color: #cfcfcf;
}
.approved-badge {
    background: #f0f0f0;
    overflow: hidden;
    display: flex;
    gap: 16px;
    align-items: center;
}
.badge-mark {
    background: #1a1a1a;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}
.badge-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}
.badge-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal);
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}
.badge-info {
    font-size: 10px;
    color: var(--text);
    line-height: 1.6;
}
.approved-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approved-blurb {
    font-size: 14px;
    border-left: 1px solid #cfcfcf;
    padding-left: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
    max-width: 280px;
}

@media (min-width: 950px) {
    .approved-side {
        flex-direction: row;
    }
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 90px 0;
    background: #fff;
}
.problem-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: start;
}
.problem-eyebrow {
    font-size: 14px;
    color: #2b2b2b;
    margin: 0 0 20px;
    line-height: 1.5;
}
.problem-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
}
.problem-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 24px;
}
.yellow-callout {
    background: var(--lime);
    display: inline-block;
    padding: 14px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
}
.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.stats-tag {
    align-self: flex-start;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.stat-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: #1a1a1a;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.stat p {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    margin: 0;
    max-width: 280px;
}

/* ===== WHY MATTERS ===== */
.why-matters {
    padding: 90px 0;
    background: #fff;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-text h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin: 26px 0 8px;
}
.why-text h4:first-child {
    margin-top: 0;
}
.why-text p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 380px;
}
.why-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.why-quote {
    font-family: var(--serif);
    font-style: italic;
    text-align: center;
    font-size: 17px;
    color: #1a1a1a;
    margin: 96px auto 0;
    max-width: 700px;
    line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    min-height: 520px;
    background: #efe6dc;
    overflow: hidden;
}
.final-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
}
@media (min-width: 992px) {
    .final-cta::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(239, 230, 220, 0.97) 0%,
            rgba(239, 230, 220, 0.88) 28%,
            rgba(239, 230, 220, 0.55) 48%,
            rgba(239, 230, 220, 0) 65%
        );
        z-index: 1;
        pointer-events: none;
    }
}

.final-inner {
    position: relative;
    z-index: 2;
    padding: 100px 32px;
    max-width: 1180px;
}
.final-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.18;
    color: #1a1a1a;
    margin: 0 0 24px;
    max-width: 420px;
}
.final-sub {
    font-size: 14px;
    color: #2b2b2b;
    margin: 0 0 30px;
    line-height: 1.55;
}
.final-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #2d2d2d;
    color: #d0d0d0;
    padding: 70px 0 50px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}
.logo-light {
    color: #fff;
}
.logo-light {
    filter: brightness(0) invert(1);
}
.footer-blurb {
    font-size: 11px;
    color: #b5b5b5;
    line-height: 1.7;
    margin: 20px 0 0;
    max-width: 320px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
}
.footer-col a {
    font-size: 13px;
    color: #d0d0d0;
}
.footer-col a:hover {
    color: var(--teal);
}
.footer-label {
    font-size: 13px;
    color: #d0d0d0;
    margin-top: 4px;
}
.footer-mail {
    color: var(--teal);
    font-size: 13px;
    word-break: break-all;
}
.follow-label {
    font-size: 12px;
    margin: 24px 0 12px;
    color: #d0d0d0;
}
.socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    transition: background 0.15s ease;
}
.socials a svg {
    width: 14px;
    height: 14px;
    display: block;
}
.socials a:hover {
    background: var(--teal-dark);
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    margin-left: 8px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2b2b2b;
    border-radius: 2px;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
    transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .hero-title {
        font-size: 38px;
    }
    .hamburger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .nav-inner {
        gap: 12px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 12px 0;
        z-index: 100;
    }
    .nav-links.nav-open {
        display: flex;
    }
    .nav-links a {
        padding: 14px 32px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: #1a1a1a;
        background: var(--lime);
        margin: 12px 20px 4px;
        border-radius: 6px;
        justify-content: center;
        padding: 13px 20px !important;
        border-bottom: none !important;
    }
    .what-grid,
    .detect-inner,
    .kit-head,
    .approved-inner,
    .problem-inner,
    .why-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .approved-grid {
        grid-template-columns: 1fr;
    }
    .detect-aside {
        padding-top: 0;
        align-items: flex-start;
    }
    .hero-bg {
        opacity: 0.55;
    }
    .final-bg {
        opacity: 0.55;
    }
    .badges-col {
        align-items: center;
    }
    .badges-list {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .container,
    .final-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 30px;
    }
    .section-title {
        font-size: 24px;
    }
    .problem-title {
        font-size: 26px;
    }
    .stat-num {
        font-size: 32px;
    }
    .final-title {
        font-size: 28px;
    }
}

/* ============================================================
   CLARA NO SUS — page-specific styles
   ============================================================ */

/* ===== HERO (Clara no SUS) ===== */
.hero-sus {
    background: #f3ece4;
    min-height: 700px;
    display: flex;
}

.hero-sus .hero-inner {
    margin: auto;
}

.hero-sus .hero-bg {
    background-position: right center;
}
.hero-sus::after {
    background: linear-gradient(
        to right,
        rgba(243, 236, 228, 0.96) 0%,
        rgba(243, 236, 228, 0.88) 28%,
        rgba(243, 236, 228, 0.55) 48%,
        rgba(243, 236, 228, 0) 65%
    );
}
.hero-title-sus {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0 0 18px;
    text-transform: none;
}
.hero-title-sus {
    font-weight: 800;
}
.hero-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: #1a1a1a;
    margin: 0 0 22px;
    font-weight: 400;
}
.hero-sus .hero-desc {
    max-width: 460px;
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #2b2b2b;
}
.hero-sus .hero-desc:first-of-type {
    font-weight: 600;
    font-size: 15px;
}

/* ===== STRATEGY BAND (light cream) ===== */
.strategy-band {
    background: var(--dark);
    padding: 50px 0;
}
.strategy-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.strategy-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    color: var(--bg-soft);
    margin: 0;
    max-width: 720px;
}
.strategy-text strong {
    font-weight: 700;
}
.strategy-text em {
    font-style: italic;
}
.strategy-cta {
    justify-self: end;
}
.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1a1a1a;
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
}

/* ===== PRIORITY SECTION ===== */
.priority {
    padding: 70px 0 60px;
}
.priority-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 26px;
}
.priority-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.priority-lead {
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 36px;
    max-width: 820px;
}
.priority-lead strong {
    color: #1a1a1a;
    font-weight: 600;
}

.priority-banner {
    background: var(--dark);
    border-radius: 10px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.priority-banner-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.priority-banner-text em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: #fff;
}
.priority-banner-thumbs {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.priority-banner-thumbs .thumb {
    display: block;
    width: 92px;
    height: 64px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.challenge-card {
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 22px 24px;
    background: #fff;
}
.challenge-card h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}
.challenge-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===== SOLUTION BAND (cream with image right) ===== */

.solution-band {
    display: flex;
    position: relative;
    background: #f3ece4;
    min-height: 500px;
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solution-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        #f3ece4 0%,
        rgba(243, 236, 228, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.solution-inner {
    position: relative;
    z-index: 2;
    min-height: 370px;
    display: flex;
    margin: auto;
    align-items: center;
}

.solution-text {
    max-width: 460px;
}

.solution-eyebrow {
    display: inline-block;
    background: var(--lime);
    color: #1a1a1a;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 3px;
    margin: 0 0 18px;
}

.solution-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
    color: #111827;
    margin: 0 0 20px;
}

.solution-desc {
    max-width: 420px;
    font-size: 18px;
    line-height: 1.55;
    color: #1a1a1a;
    margin: 0;
}

.solution-desc strong {
    font-weight: 700;
}

.solution-desc em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 960px) {
    .solution-band {
        min-height: auto;
    }

    .solution-bg {
        opacity: 0.25;
        width: 100%;
    }

    .solution-band::after {
        display: none;
    }

    .solution-inner {
        min-height: auto;
        padding: 80px;
    }

    .solution-title {
        font-size: 48px;
    }
}

/* mobile */
@media (max-width: 560px) {
    .solution-inner {
        padding: 60px;
    }

    .solution-title {
        font-size: 38px;
    }

    .solution-desc {
        font-size: 16px;
    }
}
/* ===== STRATEGIC FOR ===== */
.strategic-for {
    background: #f3ece4;
    padding: 50px 0 70px;
}
.strategic-inner {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: start;
}

.strategic-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.strategic-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.strategic-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.strategic-item h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.strategic-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    max-width: 360px;
}
.strategic-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.approved-pill {
    position: absolute;
    top: -10px;
    left: -15px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    z-index: 3;
}
.approved-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
.strategic-doctor {
    width: 85%;
    aspect-ratio: 4 / 4.6;
    background-size: cover;
    background-position: center top;
    background-color: #fff;
    border-radius: 6px;
    position: relative;
}

.strategic-info {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateX(80px);
    margin-top: -100px;
}

.anvisa-card {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    padding: 14px 18px;
}
.anvisa-card p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #1a1a1a;
}
.anvisa-card strong {
    font-weight: 700;
}
.strategic-cta {
    align-self: stretch;
    justify-content: center;
}

@media (min-width: 950px) {
    .strategic-text,
    .strategic-aside {
        width: 50%;
    }
    .strategic-aside {
        width: 50%;
        align-items: end;
    }
}

@media (max-width: 950px) {
    .strategic-inner {
        flex-direction: column;
    }
    .strategic-info,
    .strategic-doctor {
        width: 100%;
    }
}

/* ===== ALIGNED INTERNATIONAL ===== */
.aligned-section {
    padding: 80px 0 50px;
}
.aligned-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.aligned-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}
.aligned-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.aligned-quote {
    border-left: 1px solid #6a6a6a;
    padding-left: 22px;
}
.aligned-quote p {
    font-size: 14px;
    line-height: 1.7;
    color: #d5d5d5;
    margin: 6px 0 0;
    max-width: 380px;
}
.aligned-quote strong {
    color: #fff;
    font-weight: 600;
}

/* ===== BENEFITS (dark) ===== */
.benefits-section {
    padding: 30px 0 90px;
}
.benefits-title-box {
    border: 1.5px solid var(--lime);
    border-radius: 10px;
    padding: 26px 32px;
    margin: 0 0 36px;
    text-align: center;
}
.benefits-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin: 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.benefit-tile {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 26px 28px 30px;
}
.benefit-tile h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 19px;
    color: var(--lime);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a4a4a;
}
.benefit-tile p {
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.65;
    margin: 0 0 14px;
}
.benefit-impact {
    font-size: 13px;
    color: #cfcfcf;
    margin: 0 0 2px;
}
.benefit-impact-line {
    font-size: 13px;
    color: #fff;
    margin: 0;
    line-height: 1.45;
}

/* ===== WHY BUY ===== */
.why-buy {
    padding: 80px 0;
}
.why-buy-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px 60px;
    align-items: start;
}
@media (min-width: 950px) {
    .why-buy-text,
    .why-buy-body {
        margin-right: auto;
        margin-left: 8rem;
    }
}
.why-buy-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.18;
    margin: 0;
}
.why-buy-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.why-buy-lead {
    padding-top: 8px;
}
.why-buy-lead p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0;
}
.why-buy-lead strong {
    color: #1a1a1a;
    font-weight: 600;
}
.why-buy-body {
    grid-column: 1;
}
.why-buy-bodylead {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 380px;
}
.why-buy-item {
    margin-bottom: 16px;
    max-width: 380px;
}
.why-buy-item h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.why-buy-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.why-buy-cta {
    margin-top: 8px;
}
.why-buy-image {
    grid-column: 2;
    grid-row: 2;
}
.why-buy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== FINAL CTA — SUS ===== */
.final-cta-sus {
    background: #f3ece4;
    min-height: 520px;
}
.final-cta-sus .final-bg {
    background-position: right center;
}
@media (min-width: 992px) {
    .final-cta-sus::after {
        background: linear-gradient(
            to right,
            rgba(243, 236, 228, 0.97) 0%,
            rgba(243, 236, 228, 0.88) 28%,
            rgba(243, 236, 228, 0.5) 48%,
            rgba(243, 236, 228, 0) 65%
        );
    }
}
.final-eyebrow {
    display: inline-block;
    background: var(--lime);
    color: #1a1a1a;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    padding: 6px 14px;
    border-radius: 3px;
    margin: 0 0 22px;
}

/* ===== RESPONSIVE — SUS ===== */
@media (max-width: 960px) {
    .strategy-inner,
    .strategic-inner,
    .aligned-inner,
    .why-buy-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .strategy-cta {
        justify-self: start;
    }
    .challenge-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .priority-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .why-buy-image {
        grid-column: 1;
        grid-row: auto;
    }
    .why-buy-body {
        grid-column: 1;
    }
    .hero-sus .hero-bg {
        opacity: 0.35;
    }
    .solution-bg {
        opacity: 0.35;
    }
    .approved-pill {
        position: static;
        align-self: flex-start;
    }
}

@media (max-width: 560px) {
    .hero-title-sus {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .strategy-text {
        font-size: 15px;
    }
    .priority-title {
        font-size: 24px;
    }
    .priority-banner-text {
        font-size: 16px;
    }
    .priority-banner-thumbs .thumb {
        width: 70px;
        height: 50px;
    }
    .solution-title {
        font-size: 34px;
    }
    .strategic-title {
        font-size: 28px;
    }
    .aligned-title {
        font-size: 28px;
    }
    .benefits-title {
        font-size: 22px;
    }
    .benefit-tile h3 {
        font-size: 17px;
    }
    .why-buy-title {
        font-size: 26px;
    }
    .final-cta-sus .final-title {
        font-size: 26px;
    }
}
@media (max-width: 576px) {
    .final-cta,
    .final-cta-sus {
        min-height: 800px;
    }
    .final-bg,
    .final-cta-sus .final-bg {
        bottom: -10%;
        right: -50%;
    }
}
