:root {
    --navy: #0f2b46;
    --navy-deep: #08192b;
    --navy-soft: #183b5c;

    --green: #00d631;
    --green-dark: #00ad28;
    --green-soft: #e8faed;

    --white: #ffffff;
    --off-white: #f7f8f7;
    --light: #f1f3f2;
    --border: #dde4e7;

    --text: #102131;
    --text-soft: #5c6974;
    --text-light: #75818b;

    --font-title: "Sora", sans-serif;
    --font-body: "Inter", sans-serif;

    --container: 1180px;
    --header-height: 78px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow-sm: 0 8px 24px rgba(15, 43, 70, 0.06);
    --shadow-md: 0 18px 50px rgba(15, 43, 70, 0.11);

    --transition: 220ms ease;
}


/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: var(--font-title);
    line-height: 1.12;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(15, 43, 70, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(15, 43, 70, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    width: 148px;
}

.brand img {
    height: 43px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition);
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.site-nav > a:not(.nav-cta):hover {
    color: var(--navy);
}

.site-nav > a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-cta:hover {
    background: var(--green);
    color: var(--navy-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 10px;
    background: var(--navy);
    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - var(--header-height));
    padding: 72px 0 66px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f8 100%
        );
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-decoration--one {
    top: -280px;
    right: -240px;
    width: 620px;
    height: 620px;
    background: rgba(15, 43, 70, 0.045);
}

.hero-decoration--two {
    bottom: -260px;
    left: -230px;
    width: 520px;
    height: 520px;
    background: rgba(0, 214, 49, 0.035);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    align-items: center;
    gap: 72px;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--green-dark);
    font-family: var(--font-title);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
    content: "";
}

.hero h1 {
    max-width: 640px;
    margin-bottom: 25px;
    font-size: clamp(2.75rem, 5.2vw, 4.65rem);
    font-weight: 600;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: var(--navy-soft);
}

.hero-description {
    max-width: 625px;
    margin-bottom: 31px;
    color: var(--text-soft);
    font-size: 1.06rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-bottom: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.button svg {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform var(--transition);
}

.button--primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 9px 24px rgba(15, 43, 70, 0.14);
}

.button--primary:hover {
    background: var(--green);
    color: var(--navy-deep);
    box-shadow: 0 10px 26px rgba(0, 214, 49, 0.16);
    transform: translateY(-2px);
}

.button--primary:hover svg {
    transform: translateX(4px);
}

.button--secondary {
    border-color: var(--border);
    background: var(--white);
    color: var(--navy);
}

.button--secondary:hover {
    border-color: var(--navy);
    background: var(--off-white);
    transform: translateY(-2px);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.77rem;
    font-weight: 600;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-dark);
}

.benefit-icon svg {
    width: 12px;
    height: 12px;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: visible;
}

.hero-image-frame > img {
    height: 530px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-md);
}

.hero-image-frame::before {
    position: absolute;
    top: 20px;
    right: -18px;
    z-index: -1;
    width: 74%;
    height: 94%;
    border-radius: var(--radius-lg);
    background: var(--green-soft);
    content: "";
}

.hero-image-detail {
    position: absolute;
    top: 27px;
    right: 27px;
    width: 11px;
    height: 66px;
    border-radius: 20px;
    background: var(--green);
}

.hero-floating-card {
    position: absolute;
    bottom: 26px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 260px;
    padding: 17px 19px;
    border: 1px solid rgba(15, 43, 70, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.floating-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: var(--navy);
    color: var(--white);
}

.floating-card-icon svg {
    width: 21px;
    height: 21px;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-floating-card small {
    color: var(--text-light);
    font-size: 0.68rem;
    font-weight: 600;
}

.hero-floating-card strong {
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 0.88rem;
}


/* ÁREAS */

.areas-section {
    padding: 104px 0 112px;
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    margin-bottom: 19px;
    font-size: clamp(2rem, 3.4vw, 3.05rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 650px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--text-soft);
    font-size: 1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.area-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.area-card:hover {
    border-color: rgba(15, 43, 70, 0.18);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.area-card-image {
    position: relative;
    overflow: hidden;
    height: 285px;
}

.area-card-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 25, 43, 0) 40%,
            rgba(8, 25, 43, 0.52) 100%
        );
    content: "";
}

.area-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.area-card:hover .area-card-image img {
    transform: scale(1.035);
}

.area-number {
    position: absolute;
    right: 22px;
    bottom: 19px;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.area-card-content {
    padding: 32px 34px 34px;
}

.area-label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 6px 10px;
    border-radius: 40px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.area-card h3 {
    margin-bottom: 15px;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.area-card p {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.72;
}

.area-card ul {
    display: grid;
    gap: 9px;
    margin-bottom: 28px;
}

.area-card li {
    position: relative;
    padding-left: 19px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 500;
}

.area-card li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    content: "";
    transform: translateY(-50%);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-link svg {
    width: 17px;
    height: 17px;
    margin-left: 9px;
    transition: transform var(--transition);
}

.card-link:hover {
    color: var(--green-dark);
}

.card-link:hover svg {
    transform: translateX(4px);
}


/* FAIXA INSTITUCIONAL */

.institutional-strip {
    padding: 68px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.institutional-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 78px;
}

.institutional-grid .eyebrow {
    margin-bottom: 16px;
}

.institutional-grid h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.institutional-grid p {
    margin-bottom: 0;
    padding-left: 28px;
    border-left: 2px solid var(--green);
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.8;
}


/* FOOTER */

.site-footer {
    padding: 38px 0 25px;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.footer-brand {
    width: 125px;
}

.footer-brand img {
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.73rem;
}

.footer-text strong {
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 600;
}

.footer-contact {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    transition: color var(--transition);
}

.footer-contact:hover {
    color: var(--green);
}

.footer-copy {
    grid-column: 1 / -1;
    margin: 14px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.67rem;
    text-align: center;
}


/* HOME NOVA - ESTRUTURA VALIDADA */

.hero--full {
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--header-height) + 72px) 0 76px;
    background: var(--navy-deep);
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    opacity: 0.82;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 43, 0.94) 0%,
            rgba(8, 25, 43, 0.76) 40%,
            rgba(8, 25, 43, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 25, 43, 0.18) 0%,
            rgba(8, 25, 43, 0.82) 100%
        );
}

.hero-full-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
}

.hero-full-content h1 {
    max-width: 820px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3.05rem, 5.8vw, 5.9rem);
    font-weight: 600;
    letter-spacing: -0.065em;
}

.hero-full-content .hero-description {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.eyebrow--light {
    color: var(--green);
}

.button--light {
    background: var(--green);
    color: var(--navy-deep);
    box-shadow: 0 16px 40px rgba(0, 214, 49, 0.2);
}

.button--light:hover {
    background: var(--white);
    color: var(--navy);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    right: 50%;
    bottom: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
    font-weight: 700;
    transform: translateX(50%);
}

.hero-scroll span {
    width: 10px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 20px;
}

.pain-section,
.differentials-section,
.solutions-section {
    padding: 104px 0 110px;
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.info-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--green);
    content: "";
    opacity: 0;
    transition: opacity var(--transition);
}

.info-card:hover {
    border-color: rgba(15, 43, 70, 0.18);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.info-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.91rem;
    line-height: 1.72;
}

.statement-section {
    padding: 76px 0;
    background: var(--navy);
    color: var(--white);
}

.statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    align-items: center;
    gap: 76px;
}

.statement-grid h2,
.final-cta h2 {
    color: var(--white);
}

.statement-grid h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.statement-grid h2 span {
    display: block;
    color: var(--green);
}

.statement-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.85;
}

.area-card--featured {
    border-color: rgba(0, 214, 49, 0.32);
}

.area-card h3 span {
    display: block;
    color: var(--navy-soft);
}

.metrics-section {
    padding: 54px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.metrics-grid article {
    padding: 22px 18px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.metrics-grid article:last-child {
    border-right: 0;
}

.metrics-grid span {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: clamp(1.55rem, 2.7vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.metrics-grid p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

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

.card-icon {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 2.1rem;
    line-height: 1;
}

.methodology-section {
    padding: 104px 0 110px;
    background: var(--off-white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.methodology-grid article {
    min-height: 230px;
    padding: 34px 28px;
    border-right: 1px solid var(--border);
}

.methodology-grid article:last-child {
    border-right: 0;
}

.methodology-grid span {
    display: block;
    margin-bottom: 34px;
    color: var(--green-dark);
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.methodology-grid h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.methodology-grid p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

.solutions-blocks {
    display: grid;
    gap: 24px;
}

.solutions-block {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.solutions-block > h3 {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    font-size: 1.32rem;
    font-weight: 600;
}

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

.solutions-block:nth-child(2) .solutions-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-items article {
    padding: 22px;
    border-radius: 12px;
    background: var(--off-white);
}

.solutions-items h4 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 0.96rem;
    font-weight: 600;
}

.solutions-items p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.65;
}

.about-section {
    padding: 104px 0 112px;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 64px;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-image img {
    height: 470px;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.about-content p {
    max-width: 620px;
    margin-bottom: 17px;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.82;
}

.about-content .button {
    margin-top: 14px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: var(--navy-deep);
}

.final-cta-bg {
    position: absolute;
    inset: 0;
}

.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.38;
}

.final-cta::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 25, 43, 0.96) 0%, rgba(8, 25, 43, 0.72) 58%, rgba(8, 25, 43, 0.36) 100%);
    content: "";
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 42px;
}

.final-cta h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.final-cta p {
    max-width: 610px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr 0.9fr;
    gap: 48px;
}

.footer-brand-block img {
    width: 142px;
    margin-bottom: 18px;
}

.footer-brand-block p {
    max-width: 360px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    text-align: center;
}


/* REFINAMENTO EXECUTIVO - ESCALA TIPOGRAFICA */

body {
    font-size: 15px;
    line-height: 1.62;
}

.site-nav > a:not(.nav-cta) {
    font-size: 0.84rem;
}

.nav-cta,
.button {
    min-height: 44px;
    padding: 0 19px;
    font-size: 0.82rem;
    font-weight: 650;
}

.hero--full {
    padding: calc(var(--header-height) + 54px) 0 58px;
}

.hero-full-content h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 4.6vw, 4.55rem);
    font-weight: 560;
    letter-spacing: -0.045em;
}

.hero-full-content .hero-description {
    max-width: 590px;
    font-size: 0.98rem;
    line-height: 1.72;
}

.eyebrow {
    margin-bottom: 17px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.section-heading {
    max-width: 690px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(1.75rem, 2.8vw, 2.55rem);
    font-weight: 560;
    letter-spacing: -0.032em;
}

.section-heading p {
    max-width: 590px;
    font-size: 0.92rem;
    line-height: 1.74;
}

.pain-section,
.areas-section,
.differentials-section,
.methodology-section,
.solutions-section,
.about-section {
    padding-top: 86px;
    padding-bottom: 92px;
}

.info-card {
    min-height: 170px;
    padding: 25px;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 560;
    letter-spacing: -0.015em;
}

.info-card p {
    font-size: 0.85rem;
    line-height: 1.68;
}

.statement-section {
    padding: 62px 0;
}

.statement-grid h2 {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 560;
    letter-spacing: -0.032em;
}

.statement-grid p {
    font-size: 0.92rem;
    line-height: 1.76;
}

.area-card h3 {
    font-size: 1.34rem;
    font-weight: 560;
    letter-spacing: -0.022em;
}

.area-card p {
    font-size: 0.86rem;
    line-height: 1.68;
}

.area-card li {
    font-size: 0.78rem;
}

.area-card-content {
    padding: 28px 30px 30px;
}

.metrics-grid span {
    font-size: clamp(1.35rem, 2.1vw, 1.95rem);
    font-weight: 560;
    letter-spacing: -0.025em;
}

.metrics-grid p {
    font-size: 0.76rem;
}

.card-icon {
    font-size: 1.75rem;
}

.methodology-grid article {
    min-height: 205px;
    padding: 30px 25px;
}

.methodology-grid span {
    margin-bottom: 26px;
    font-size: 0.68rem;
}

.methodology-grid h3 {
    font-size: 1.04rem;
    font-weight: 560;
}

.methodology-grid p {
    font-size: 0.84rem;
    line-height: 1.66;
}

.solutions-block {
    padding: 30px;
}

.solutions-block > h3 {
    font-size: 1.16rem;
    font-weight: 560;
}

.solutions-items h4 {
    font-size: 0.9rem;
    font-weight: 560;
}

.solutions-items p {
    font-size: 0.8rem;
}

.about-content h2,
.final-cta h2 {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    font-weight: 560;
    letter-spacing: -0.032em;
}

.about-content p,
.final-cta p {
    font-size: 0.9rem;
    line-height: 1.76;
}

.final-cta {
    padding: 76px 0;
}

.footer-brand-block p,
.footer-column a {
    font-size: 0.82rem;
}


/* RESPONSIVO */

@media (max-width: 1080px) {

    .site-nav {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 42px;
    }

    .hero-image-frame > img {
        height: 485px;
    }

    .hero-floating-card {
        left: -16px;
    }

    .pain-grid,
    .solutions-items,
    .solutions-block:nth-child(2) .solutions-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .differentials-grid,
    .methodology-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .methodology-grid article:nth-child(2) {
        border-right: 0;
    }

    .methodology-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 900px) {

    :root {
        --header-height: 70px;
    }

    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .brand {
        width: 132px;
    }

    .brand img {
        height: 38px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        padding: 0 22px;
        overflow: hidden;
        border-bottom: 1px solid var(--border);
        background: var(--white);
        box-shadow: 0 18px 30px rgba(15, 43, 70, 0.08);
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 320ms ease,
            padding 320ms ease,
            opacity 220ms ease;
    }

    .site-nav.is-open {
        max-height: 540px;
        padding-top: 14px;
        padding-bottom: 22px;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav > a:not(.nav-cta) {
        padding: 13px 2px;
        border-bottom: 1px solid var(--border);
        font-size: 0.88rem;
    }

    .site-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 18px;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 74px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero-content {
        max-width: 730px;
    }

    .hero h1 {
        max-width: 700px;
    }

    .hero-visual {
        max-width: 720px;
    }

    .hero-image-frame > img {
        height: 490px;
    }

    .hero-floating-card {
        left: 22px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .institutional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .institutional-grid p {
        max-width: 670px;
    }

    .hero--full {
        min-height: 92svh;
        padding-top: calc(var(--header-height) + 56px);
    }

    .hero-full-content h1 {
        max-width: 680px;
    }

    .statement-grid,
    .about-grid,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .metrics-grid article:nth-child(2) {
        border-right: 0;
    }

    .metrics-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 26px), var(--container));
    }

    .hero {
        padding: 44px 0 58px;
    }

    .eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.08em;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: clamp(2.25rem, 12vw, 3.3rem);
    }

    .hero-full-content h1 {
        font-size: clamp(2.5rem, 12vw, 3.85rem);
    }

    .hero-full-content h1 {
        font-size: clamp(2.18rem, 10.4vw, 3.15rem);
        letter-spacing: -0.036em;
    }

    .hero-description {
        font-size: 0.94rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 11px;
    }

    .hero-image-frame > img {
        height: 360px;
        border-radius: 20px;
    }

    .hero-image-frame::before {
        display: none;
    }

    .hero-image-detail {
        top: 18px;
        right: 18px;
        height: 48px;
    }

    .hero-floating-card {
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-width: 0;
        padding: 14px;
    }

    .floating-card-icon {
        width: 39px;
        height: 39px;
    }

    .areas-section {
        padding: 76px 0 82px;
    }

    .pain-section,
    .differentials-section,
    .methodology-section,
    .solutions-section,
    .about-section {
        padding: 76px 0 82px;
    }

    .section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .section-heading .eyebrow {
        justify-content: flex-start;
    }

    .section-heading h2 {
        font-size: 1.72rem;
    }

    .area-card-image {
        height: 220px;
    }

    .area-card-content {
        padding: 26px 23px 28px;
    }

    .pain-grid,
    .differentials-grid,
    .methodology-grid,
    .metrics-grid,
    .solutions-items,
    .solutions-block:nth-child(2) .solutions-items,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid article,
    .methodology-grid article:nth-child(2),
    .metrics-grid article,
    .metrics-grid article:nth-child(2) {
        border-right: 0;
    }

    .methodology-grid article:not(:last-child),
    .metrics-grid article:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

    .solutions-block {
        padding: 26px 22px;
    }

    .about-image img {
        height: 340px;
    }

    .final-cta {
        padding: 74px 0;
    }

    .footer-grid {
        gap: 30px;
    }

    .institutional-strip {
        padding: 54px 0;
    }

    .institutional-grid p {
        padding-left: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }

    .footer-brand img {
        object-position: center;
    }

    .footer-copy {
        grid-column: 1;
        width: 100%;
    }

}


/* AJUSTE 03 - PRIMEIRA DOBRA IGUAL A HOME ORIGINAL */

.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header.is-scrolled {
    box-shadow: none !important;
}

.header-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 32px !important;
    min-height: 98px !important;
}

.brand {
    width: auto !important;
}

.brand img {
    display: block !important;
    width: auto !important;
    height: 66px !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.site-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
}

.site-nav > a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
}

.site-nav > a:not(.nav-cta)::after {
    display: none !important;
}

.site-nav > a:not(.nav-cta):hover {
    color: #ffffff !important;
}

.nav-cta {
    min-height: 42px !important;
    padding: 0 22px !important;
    border: 1px solid rgba(0, 214, 49, 0.7) !important;
    border-radius: 999px !important;
    background: rgba(0, 214, 49, 0.08) !important;
    color: #d8ffe1 !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    box-shadow: none !important;
}

.nav-cta:hover {
    border-color: #00d631 !important;
    background: #00d631 !important;
    color: #031422 !important;
}

.hero--full {
    display: flex !important;
    align-items: center !important;
    min-height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #031422 !important;
}

.hero-background img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 58% center !important;
    opacity: 1 !important;
    filter: saturate(1.18) contrast(1.04) brightness(1.14) !important;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 34, 0.88) 0%,
            rgba(3, 20, 34, 0.74) 28%,
            rgba(3, 20, 34, 0.42) 58%,
            rgba(3, 20, 34, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 20, 34, 0.22) 0%,
            rgba(3, 20, 34, 0.04) 44%,
            rgba(3, 20, 34, 0.66) 100%
        ) !important;
}

.hero-full-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1240px !important;
    padding-top: 92px !important;
    padding-bottom: 86px !important;
}

.hero-full-content > * {
    max-width: 760px !important;
}

.eyebrow--light {
    gap: 12px !important;
    margin-bottom: 20px !important;
    color: #00d631 !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.10em !important;
}

.eyebrow--light::before {
    width: 26px !important;
    height: 2px !important;
}

.hero-full-content h1 {
    max-width: 760px !important;
    margin: 0 0 26px !important;
    color: #ffffff !important;
    font-size: clamp(2.8rem, 4.35vw, 4.75rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    font-weight: 500 !important;
}

.hero-full-content .hero-description {
    max-width: 760px !important;
    margin: 0 0 32px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 0.92rem !important;
    line-height: 1.68 !important;
    font-weight: 400 !important;
}

.hero-actions {
    gap: 14px !important;
    margin-bottom: 0 !important;
}

.hero-actions .button {
    min-height: 42px !important;
    padding: 0 22px !important;
    border-radius: 3px !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

.hero-actions .button svg {
    width: 16px !important;
    height: 16px !important;
    margin-left: 8px !important;
}

.button--light {
    border-color: #00d631 !important;
    background: #00d631 !important;
    color: #031422 !important;
    box-shadow: 0 18px 40px rgba(0, 214, 49, 0.22) !important;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.48) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.button--ghost:hover {
    border-color: #00d631 !important;
    color: #00d631 !important;
}

.hero-scroll {
    bottom: 24px !important;
    gap: 8px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 0.52rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    backdrop-filter: blur(6px) !important;
}

.hero-scroll span {
    width: 16px !important;
    height: 26px !important;
    border-color: rgba(255, 255, 255, 0.46) !important;
    position: relative !important;
}

.hero-scroll span::before {
    position: absolute !important;
    top: 6px !important;
    left: 50% !important;
    width: 3px !important;
    height: 5px !important;
    border-radius: 999px !important;
    background: #00d631 !important;
    content: "" !important;
    transform: translateX(-50%) !important;
}

@media (max-width: 900px) {
    .header-inner {
        display: flex !important;
        min-height: 82px !important;
    }

    .brand img {
        height: 54px !important;
    }

    .hero-full-content h1 {
        max-width: 680px !important;
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
    }
}

@media (max-width: 600px) {
    .hero--full {
        min-height: 100svh !important;
        padding: 116px 0 70px !important;
    }

    .hero-full-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-full-content h1 {
        font-size: clamp(2.2rem, 11vw, 3.25rem) !important;
        letter-spacing: -0.045em !important;
    }
}

/* =========================================================
   CLEAN HEADER + PREMIUM HERO
   Refatoração da primeira dobra
========================================================= */

.site-header.site-header--clean {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header__inner-clean {
  min-height: 98px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 32px !important;
}

.site-header__brand-clean {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.site-header__brand-clean img {
  display: block !important;
  width: auto !important;
  height: 66px !important;
  max-height: none !important;
}

.site-header__nav-clean {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 36px !important;
}

.site-header__nav-clean a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  transition: color 0.2s ease !important;
}

.site-header__nav-clean a:hover {
  color: #ffffff !important;
}

.site-header__cta-clean {
  min-height: 42px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid rgba(0, 214, 49, 0.7) !important;
  border-radius: 999px !important;
  background: rgba(0, 214, 49, 0.08) !important;
  color: #d8ffe1 !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.site-header__cta-clean:hover {
  background: #00d631 !important;
  border-color: #00d631 !important;
  color: #031422 !important;
}

/* Hero principal */
.premium-hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #031422 !important;
  color: #ffffff !important;
}

.premium-hero__image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.premium-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 58% center !important;
  filter: saturate(1.18) contrast(1.04) brightness(1.14) !important;
}

.premium-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 34, 0.88) 0%,
      rgba(3, 20, 34, 0.74) 28%,
      rgba(3, 20, 34, 0.42) 58%,
      rgba(3, 20, 34, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 20, 34, 0.22) 0%,
      rgba(3, 20, 34, 0.04) 44%,
      rgba(3, 20, 34, 0.66) 100%
    ) !important;
}

.premium-hero__content {
  position: relative !important;
  z-index: 2 !important;
  padding-top: 92px !important;
  padding-bottom: 86px !important;
  max-width: 1240px !important;
}

.premium-hero__content > * {
  max-width: 760px !important;
}

.premium-hero__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  color: #00d631 !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

.premium-hero__eyebrow::before {
  content: "" !important;
  width: 26px !important;
  height: 2px !important;
  background: #00d631 !important;
  display: inline-block !important;
}

.premium-hero h1 {
  margin: 0 0 26px !important;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 4.35vw, 4.75rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.06em !important;
  font-weight: 500 !important;
}

.premium-hero p {
  margin: 0 0 32px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.92rem !important;
  line-height: 1.68 !important;
  font-weight: 400 !important;
  max-width: 760px !important;
}

.premium-hero__actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.premium-hero__button {
  min-height: 42px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 3px !important;
  text-decoration: none !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.premium-hero__button:hover {
  transform: translateY(-2px) !important;
}

.premium-hero__button--primary {
  background: #00d631 !important;
  color: #031422 !important;
  border: 1px solid #00d631 !important;
  box-shadow: 0 18px 40px rgba(0, 214, 49, 0.22) !important;
}

.premium-hero__button--secondary {
  background: rgba(255, 255, 255, 0.035) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
}

.premium-hero__button--secondary:hover {
  color: #00d631 !important;
  border-color: #00d631 !important;
}

.premium-hero__scroll {
  position: absolute !important;
  left: 50% !important;
  bottom: 24px !important;
  z-index: 3 !important;
  transform: translateX(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  text-decoration: none !important;
  font-size: 0.52rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  backdrop-filter: blur(6px) !important;
}

.premium-hero__scroll-icon {
  width: 16px !important;
  height: 26px !important;
  border: 1px solid rgba(255, 255, 255, 0.46) !important;
  border-radius: 999px !important;
  position: relative !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.premium-hero__scroll-icon::before {
  content: "" !important;
  position: absolute !important;
  top: 6px !important;
  left: 50% !important;
  width: 3px !important;
  height: 5px !important;
  border-radius: 999px !important;
  background: #00d631 !important;
  transform: translateX(-50%) !important;
}

/* Menu mobile/tablet - glass compacto */
.site-header--clean .menu-toggle {
  display: none !important;
  width: 38px !important;
  height: 38px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.site-header--clean .menu-toggle span {
  display: block !important;
  width: 16px !important;
  height: 1.5px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg) !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(2) {
  opacity: 0 !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg) !important;
}

.site-header--clean .mobile-menu {
  position: absolute !important;
  top: 78px !important;
  left: auto !important;
  right: 18px !important;
  z-index: 1001 !important;
  display: flex !important;
  width: min(250px, calc(100vw - 36px)) !important;
  padding: 10px !important;
  flex-direction: column !important;
  gap: 1px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(3, 20, 34, 0.62) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.site-header--clean .mobile-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.site-header--clean .mobile-menu a {
  display: flex !important;
  min-height: 32px !important;
  padding: 0 10px !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-radius: 9px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.74rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
}

.site-header--clean .mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.055) !important;
  color: #ffffff !important;
}

.site-header--clean .mobile-menu a:last-child {
  min-height: 34px !important;
  margin-top: 6px !important;
  padding: 0 12px !important;
  justify-content: center !important;
  border-radius: 10px !important;
  background: rgba(0, 214, 49, 0.88) !important;
  box-shadow: 0 10px 24px rgba(0, 214, 49, 0.14) !important;
  color: #031422 !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.site-header--clean .mobile-menu a:last-child:hover {
  background: #00d631 !important;
  color: #031422 !important;
}

@media (max-width: 980px) {
  .site-header--clean .menu-toggle {
    display: inline-flex !important;
  }
}

@media (min-width: 981px) {
  .site-header--clean .menu-toggle,
  .site-header--clean .mobile-menu {
    display: none !important;
  }
}

/* AJUSTE 11 - STATEMENT MAIS EXECUTIVO E COM QUEBRAS CONTROLADAS */

/* AJUSTE 13 - STATEMENT DEFINITIVO */

.statement.statement-section {
    padding: 64px 0 0 !important;
    background: #08192b !important;
  }
  
  .statement.statement-section .statement__grid {
    display: grid !important;
    grid-template-columns: minmax(620px, 1.15fr) minmax(380px, 0.85fr) !important;
    gap: 64px !important;
    align-items: center !important;
    padding-bottom: 46px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }
  
  .statement.statement-section .section-tag {
    margin-bottom: 22px !important;
    font-size: 0.66rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    color: #00d631 !important;
  }
  
  .statement.statement-section h2 {
    max-width: 760px !important;
    margin: 0 !important;
    font-size: clamp(1.45rem, 2vw, 2rem) !important;
    font-weight: 360 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.025em !important;
  }
  
  .statement.statement-section .statement-title-line {
    display: block !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    font-weight: 360 !important;
  }
  
  .statement.statement-section h2 .text-accent {
    display: block !important;
    margin-top: 3px !important;
    color: #00d631 !important;
    font-weight: 380 !important;
    white-space: nowrap !important;
  }
  
  .statement.statement-section .statement-impact-text {
    max-width: 560px !important;
    margin: 0 !important;
    padding-left: 32px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.92rem !important;
    font-weight: 440 !important;
    line-height: 1.76 !important;
  }
  
  .statement.statement-section .statement-impact-text span {
    display: block !important;
  }
  
  .statement.statement-section .statement-impact-text span + span {
    margin-top: 3px !important;
  }
  
  .statement.statement-section .statement-impact-text span:first-child,
  .statement.statement-section .statement-impact-text span:last-child {
    color: #ffffff !important;
    font-weight: 520 !important;
  }
  
  @media (max-width: 900px) {
    .statement.statement-section .statement__grid {
      grid-template-columns: 1fr !important;
      gap: 30px !important;
    }
  
    .statement.statement-section .statement-title-line,
    .statement.statement-section h2 .text-accent {
      white-space: normal !important;
    }
  
    .statement.statement-section .statement-impact-text {
      padding-left: 0 !important;
      border-left: 0 !important;
    }
  }

  /* AJUSTE 14 - TAG DIRECAO ESTRATEGICA COM TRAVESSAO */

.statement.statement-section .section-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  
    color: #00d631 !important;
    font-size: 0.73rem !important; /* +10% aprox. */
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
  }
  
  .statement.statement-section .section-tag::before {
    content: "" !important;
    display: inline-block !important;
    width: 34px !important;
    height: 2px !important;
    background: #00d631 !important;
  }

/* AJUSTE 15 - CTA FINAL MAIS PROXIMO DA REFERENCIA */

.final-cta {
    min-height: 372px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    background: #08192b !important;
}

.final-cta-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 73% 24% !important;
    opacity: 0.94 !important;
    filter: contrast(1.14) saturate(1.06) brightness(1.04) !important;
}

.final-cta::after {
    background:
        linear-gradient(90deg,
            rgba(8, 25, 43, 0.94) 0%,
            rgba(8, 25, 43, 0.78) 12%,
            rgba(8, 25, 43, 0.38) 25%,
            rgba(8, 25, 43, 0.06) 36%,
            rgba(8, 25, 43, 0) 100%) !important;
}

.final-cta-content {
    grid-template-columns: minmax(0, 1fr) minmax(236px, 290px) !important;
    align-items: center !important;
    gap: 58px !important;
}

.final-cta h2 {
    max-width: 620px !important;
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: clamp(1.5rem, 2.35vw, 2.2rem) !important;
    font-weight: 360 !important;
    line-height: 1.14 !important;
    letter-spacing: -0.015em !important;
}

.final-cta p {
    max-width: 720px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 0.86rem !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.final-cta .eyebrow--light {
    margin-bottom: 18px !important;
    color: #00d631 !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

.final-cta-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    margin-top: 0 !important;
}

.final-cta-actions .button {
    min-width: 226px !important;
    min-height: 46px !important;
    padding: 0 20px !important;
    border-radius: 7px !important;
    background: #00d631 !important;
    color: #031422 !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    box-shadow: 0 10px 24px rgba(0, 214, 49, 0.16) !important;
}

.final-cta-actions .button:hover {
    padding: 0 20px !important;
    background: #00e338 !important;
    color: #031422 !important;
    transform: translateY(-2px) !important;
}

.final-cta-actions .button svg {
    width: 15px !important;
    height: 15px !important;
    margin-left: 10px !important;
}

.final-cta-actions span {
    display: block !important;
    margin-top: 10px !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

@media (max-width: 900px) {
    .final-cta {
        min-height: 560px !important;
        padding: 74px 0 !important;
    }

    .final-cta-bg img {
        object-position: 74% center !important;
        opacity: 0.55 !important;
    }

    .final-cta::after {
        background: rgba(8, 25, 43, 0.76) !important;
    }

    .final-cta-content {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .final-cta-actions {
        align-items: flex-start !important;
        margin-top: 0 !important;
    }

    .final-cta-actions span {
        text-align: left !important;
    }
}

@media (max-width: 560px) {
    .final-cta h2 {
        font-size: clamp(1.85rem, 9vw, 2.35rem) !important;
    }

    .final-cta-actions,
    .final-cta-actions .button {
        width: 100% !important;
    }
}

/* AJUSTE 16 - MOBILE COMPACTO E MAIS ORGANIZADO */

@media (max-width: 980px) {
    .site-header.site-header--clean {
        position: absolute !important;
    }

    .site-header__inner-clean {
        min-height: 76px !important;
        display: flex !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }

    .site-header__brand-clean img {
        height: 42px !important;
        width: auto !important;
    }

    .site-header__nav-clean,
    .site-header__cta-clean {
        display: none !important;
    }

    .site-header--clean .menu-toggle {
        display: inline-flex !important;
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    body {
        background: #ffffff !important;
    }

    .container {
        width: min(calc(100% - 32px), var(--container)) !important;
    }

    .premium-hero {
        min-height: 92svh !important;
        align-items: flex-end !important;
        padding: 0 !important;
    }

    .premium-hero__image img {
        object-position: 57% center !important;
        filter: saturate(1.22) contrast(1.08) brightness(1.08) !important;
    }

    .premium-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 20, 34, 0.22) 0%,
                rgba(3, 20, 34, 0.58) 42%,
                rgba(3, 20, 34, 0.88) 100%
            ),
            linear-gradient(
                90deg,
                rgba(3, 20, 34, 0.74) 0%,
                rgba(3, 20, 34, 0.30) 70%,
                rgba(3, 20, 34, 0.18) 100%
            ) !important;
    }

    .premium-hero__content {
        width: 100% !important;
        padding-top: 112px !important;
        padding-bottom: 66px !important;
    }

    .premium-hero__content > * {
        max-width: 100% !important;
    }

    .premium-hero__eyebrow {
        gap: 10px !important;
        margin-bottom: 18px !important;
        font-size: 0.58rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.13em !important;
        line-height: 1.35 !important;
    }

    .premium-hero__eyebrow::before {
        width: 28px !important;
    }

    .premium-hero h1 {
        max-width: 360px !important;
        margin-bottom: 20px !important;
        font-size: clamp(2.35rem, 10.8vw, 3.25rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.052em !important;
        font-weight: 500 !important;
    }

    .premium-hero p {
        max-width: 342px !important;
        margin-bottom: 24px !important;
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .premium-hero p br {
        display: none !important;
    }

    .premium-hero__actions {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .premium-hero__button {
        width: 100% !important;
        min-height: 46px !important;
        border-radius: 7px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.08em !important;
    }

    .premium-hero__scroll {
        bottom: 14px !important;
        font-size: 0.5rem !important;
        opacity: 0.82 !important;
    }

    .pain-section,
    .areas-section,
    .differentials-section,
    .methodology-section,
    .solutions-section,
    .about-section {
        padding: 54px 0 58px !important;
    }

    .section-heading {
        margin-bottom: 24px !important;
    }

    .section-heading h2 {
        margin-bottom: 12px !important;
        font-size: clamp(1.48rem, 7vw, 1.86rem) !important;
        letter-spacing: -0.035em !important;
    }

    .section-heading p {
        font-size: 0.88rem !important;
        line-height: 1.62 !important;
    }

    .pain-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .info-card {
        min-height: auto !important;
        padding: 16px 14px !important;
        border-radius: 8px !important;
        box-shadow: 0 8px 18px rgba(15, 43, 70, 0.05) !important;
    }

    .info-card h3 {
        margin-bottom: 6px !important;
        font-size: 0.88rem !important;
        line-height: 1.24 !important;
    }

    .info-card p {
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
    }

    .card-icon {
        margin-bottom: 10px !important;
        font-size: 1.35rem !important;
    }

    .statement.statement-section {
        padding: 42px 0 0 !important;
    }

    .statement.statement-section .statement__grid {
        gap: 20px !important;
        padding-bottom: 34px !important;
    }

    .statement.statement-section .section-tag {
        margin-bottom: 18px !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.16em !important;
    }

    .statement.statement-section .section-tag::before {
        width: 26px !important;
    }

    .statement.statement-section h2 {
        font-size: clamp(1.28rem, 6.2vw, 1.58rem) !important;
        line-height: 1.2 !important;
    }

    .statement.statement-section .statement-impact-text {
        font-size: 0.82rem !important;
        line-height: 1.62 !important;
    }

    .areas-grid {
        gap: 18px !important;
    }

    .area-card {
        border-radius: 8px !important;
        box-shadow: 0 10px 26px rgba(15, 43, 70, 0.07) !important;
    }

    .area-card-image {
        height: 168px !important;
        background: #08192b !important;
    }

    .area-card-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 25, 43, 0.04) 0%,
                rgba(8, 25, 43, 0.18) 48%,
                rgba(8, 25, 43, 0.64) 100%
            ) !important;
    }

    .area-card-image img {
        filter: saturate(1.16) contrast(1.07) brightness(1.06) !important;
        object-position: center center !important;
    }

    .area-number {
        right: 16px !important;
        bottom: 13px !important;
        font-size: 0.66rem !important;
    }

    .area-card-content {
        padding: 18px 18px 20px !important;
    }

    .area-label {
        margin-bottom: 10px !important;
        padding: 5px 8px !important;
        font-size: 0.58rem !important;
    }

    .area-card h3 {
        margin-bottom: 10px !important;
        font-size: 1.18rem !important;
        line-height: 1.16 !important;
    }

    .area-card p {
        margin-bottom: 14px !important;
        font-size: 0.8rem !important;
        line-height: 1.55 !important;
    }

    .area-card ul {
        display: none !important;
    }

    .card-link {
        font-size: 0.76rem !important;
    }

    .metrics-section {
        padding: 28px 0 !important;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }

    .metrics-grid article {
        padding: 14px 10px !important;
    }

    .metrics-grid span {
        margin-bottom: 4px !important;
        font-size: 1.28rem !important;
    }

    .metrics-grid p {
        font-size: 0.68rem !important;
        line-height: 1.35 !important;
    }

    .methodology-grid {
        border-radius: 8px !important;
    }

    .methodology-grid article {
        min-height: auto !important;
        padding: 20px 18px !important;
    }

    .methodology-grid span {
        margin-bottom: 12px !important;
        font-size: 0.62rem !important;
    }

    .methodology-grid h3 {
        margin-bottom: 8px !important;
        font-size: 0.98rem !important;
    }

    .methodology-grid p {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
    }

    .solutions-blocks {
        gap: 16px !important;
    }

    .solutions-block {
        padding: 20px 18px !important;
        border-radius: 8px !important;
    }

    .solutions-block > h3 {
        margin-bottom: 16px !important;
        padding-bottom: 12px !important;
        font-size: 1.04rem !important;
    }

    .solutions-items,
    .solutions-block:nth-child(2) .solutions-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .solutions-items article {
        min-height: 86px !important;
        padding: 14px 12px !important;
        border-radius: 8px !important;
    }

    .solutions-items h4 {
        margin-bottom: 0 !important;
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.03em !important;
    }

    .solutions-items p {
        display: none !important;
    }

    .about-grid {
        gap: 22px !important;
    }

    .about-image img {
        height: 230px !important;
        border-radius: 8px !important;
        filter: saturate(1.08) contrast(1.05) brightness(1.04) !important;
    }

    .about-content p {
        margin-bottom: 12px !important;
        font-size: 0.84rem !important;
        line-height: 1.62 !important;
    }

    .about-content .button {
        width: 100% !important;
        min-height: 44px !important;
        margin-top: 8px !important;
        border-radius: 7px !important;
        font-size: 0.76rem !important;
    }

    .final-cta {
        min-height: 470px !important;
        padding: 58px 0 !important;
        align-items: center !important;
    }

    .final-cta-bg img {
        object-position: 72% center !important;
        opacity: 0.72 !important;
        filter: contrast(1.12) saturate(1.08) brightness(1.02) !important;
    }

    .final-cta::after {
        background:
            linear-gradient(
                90deg,
                rgba(8, 25, 43, 0.94) 0%,
                rgba(8, 25, 43, 0.70) 26%,
                rgba(8, 25, 43, 0.34) 52%,
                rgba(8, 25, 43, 0.58) 100%
            ) !important;
    }

    .final-cta-content {
        gap: 24px !important;
    }

    .final-cta .eyebrow--light {
        margin-bottom: 14px !important;
        font-size: 0.58rem !important;
    }

    .final-cta h2 {
        max-width: 340px !important;
        margin-bottom: 14px !important;
        font-size: clamp(1.42rem, 6.8vw, 1.78rem) !important;
        line-height: 1.18 !important;
        letter-spacing: -0.012em !important;
    }

    .final-cta p {
        max-width: 320px !important;
        font-size: 0.82rem !important;
        line-height: 1.56 !important;
    }

    .final-cta-actions {
        width: 100% !important;
        align-items: stretch !important;
    }

    .final-cta-actions .button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 44px !important;
        border-radius: 7px !important;
        font-size: 0.76rem !important;
    }

    .final-cta-actions span {
        text-align: center !important;
        font-size: 0.68rem !important;
    }

    .site-footer {
        padding: 30px 0 18px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .footer-brand-block img {
        width: 118px !important;
        margin-bottom: 10px !important;
    }

    .footer-brand-block p {
        max-width: 310px !important;
        font-size: 0.78rem !important;
        line-height: 1.52 !important;
    }

    .footer-column:nth-of-type(2),
    .footer-column:nth-of-type(3) {
        display: none !important;
    }

    .footer-column {
        gap: 6px !important;
    }

    .footer-column h3 {
        margin-bottom: 6px !important;
        font-size: 0.66rem !important;
    }

    .footer-column a {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    .footer-bottom {
        margin-top: 18px !important;
        padding-top: 14px !important;
    }

    .footer-bottom p {
        font-size: 0.58rem !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 390px) {
    .premium-hero h1 {
        font-size: clamp(2.08rem, 10.4vw, 2.72rem) !important;
    }

    .premium-hero p {
        font-size: 0.84rem !important;
    }

    .pain-grid,
    .differentials-grid,
    .solutions-items,
    .solutions-block:nth-child(2) .solutions-items {
        grid-template-columns: 1fr !important;
    }

    .final-cta {
        min-height: 440px !important;
    }
}

/* AJUSTE 17 - REFINOS EXECUTIVOS E MOBILE VALIDACAO */

.area-card {
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.area-card::before {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    border: 1px solid rgba(0, 214, 49, 0) !important;
    border-radius: inherit !important;
    content: "" !important;
    pointer-events: none !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.area-card::after {
    position: absolute !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 3 !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(15, 43, 70, 0.94) !important;
    color: #ffffff !important;
    content: "Acessar pagina ->" !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
    pointer-events: none !important;
}

.area-card:hover,
.area-card:focus-within {
    border-color: rgba(0, 214, 49, 0.66) !important;
    box-shadow: 0 20px 52px rgba(15, 43, 70, 0.16) !important;
    transform: translateY(-4px) !important;
}

.area-card:hover::before,
.area-card:focus-within::before {
    border-color: rgba(0, 214, 49, 0.76) !important;
    box-shadow: inset 0 0 0 1px rgba(0, 214, 49, 0.24) !important;
}

.area-card:hover::after,
.area-card:focus-within::after {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.area-card:hover .area-card-image img,
.area-card:focus-within .area-card-image img {
    filter: saturate(1.2) contrast(1.08) brightness(1.06) !important;
    transform: scale(1.035) !important;
}

.card-link::after {
    position: absolute !important;
    inset: 0 !important;
    z-index: 4 !important;
    content: "" !important;
}

.card-link {
    position: static !important;
}

.methodology-section .section-heading p {
    max-width: 620px !important;
}

.footer-brand-block p {
    font-size: 0.72rem !important;
    line-height: 1.48 !important;
}

@media (min-width: 761px) {
    .premium-hero__content {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .premium-hero h1 {
        max-width: 650px !important;
        font-size: clamp(2.45rem, 3.65vw, 4rem) !important;
        font-weight: 450 !important;
        letter-spacing: -0.045em !important;
    }

    .premium-hero__button {
        min-height: 38px !important;
        padding: 0 18px !important;
        border-radius: 6px !important;
        font-size: 0.66rem !important;
        font-weight: 750 !important;
        letter-spacing: 0.055em !important;
    }
}

@media (max-width: 760px) {
    .site-header.site-header--clean {
        height: 66px !important;
    }

    .site-header__inner-clean {
        min-height: 66px !important;
    }

    .site-header__brand-clean img {
        height: 34px !important;
    }

    .site-header--clean .menu-toggle {
        width: 36px !important;
        height: 36px !important;
        border-color: rgba(255, 255, 255, 0.32) !important;
        background: rgba(8, 25, 43, 0.36) !important;
    }

    .site-header--clean .menu-toggle span {
        width: 17px !important;
        height: 2px !important;
        background: #ffffff !important;
    }

    .site-header--clean .mobile-menu {
        top: 66px !important;
        right: 16px !important;
        background: rgba(8, 25, 43, 0.92) !important;
    }

    .premium-hero {
        min-height: 78svh !important;
        align-items: center !important;
    }

    .premium-hero__image img {
        object-position: 62% center !important;
        filter: saturate(1.05) contrast(1.05) brightness(1.02) !important;
    }

    .premium-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 20, 34, 0.46) 0%,
                rgba(3, 20, 34, 0.56) 46%,
                rgba(3, 20, 34, 0.82) 100%
            ),
            linear-gradient(
                90deg,
                rgba(3, 20, 34, 0.84) 0%,
                rgba(3, 20, 34, 0.52) 54%,
                rgba(3, 20, 34, 0.22) 100%
            ) !important;
    }

    .premium-hero__content {
        padding-top: 74px !important;
        padding-bottom: 42px !important;
    }

    .premium-hero__eyebrow {
        margin-bottom: 12px !important;
        font-size: 0.5rem !important;
        font-weight: 650 !important;
        letter-spacing: 0.12em !important;
    }

    .premium-hero__eyebrow::before {
        width: 22px !important;
    }

    .premium-hero h1 {
        max-width: 330px !important;
        margin-bottom: 14px !important;
        font-size: clamp(1.92rem, 8.7vw, 2.45rem) !important;
        line-height: 1.08 !important;
        font-weight: 430 !important;
        letter-spacing: -0.04em !important;
    }

    .premium-hero p {
        max-width: 310px !important;
        margin-bottom: 18px !important;
        font-size: 0.78rem !important;
        line-height: 1.58 !important;
    }

    .premium-hero__actions {
        max-width: 310px !important;
        gap: 8px !important;
    }

    .premium-hero__button {
        min-height: 40px !important;
        padding: 0 14px !important;
        border-radius: 6px !important;
        font-size: 0.62rem !important;
        font-weight: 750 !important;
        letter-spacing: 0.045em !important;
    }

    .premium-hero__button--primary {
        box-shadow: 0 12px 26px rgba(0, 214, 49, 0.16) !important;
    }

    .premium-hero__scroll {
        display: none !important;
    }

    .statement.statement-section h2 {
        max-width: 300px !important;
        font-size: clamp(1.08rem, 5.4vw, 1.34rem) !important;
        font-weight: 420 !important;
        line-height: 1.18 !important;
        letter-spacing: -0.02em !important;
    }

    .statement-title-line,
    .statement.statement-section .text-accent {
        display: block !important;
    }

    .areas-section .section-heading h2,
    .methodology-section .section-heading h2 {
        max-width: 320px !important;
    }

    .areas-grid {
        gap: 14px !important;
    }

    .area-card-image {
        height: 132px !important;
    }

    .area-card-content {
        padding: 16px 16px 18px !important;
    }

    .area-card p {
        display: -webkit-box !important;
        overflow: hidden !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    .area-card::after {
        right: 14px !important;
        bottom: 14px !important;
        padding: 7px 10px !important;
        font-size: 0.62rem !important;
    }

    .methodology-section .section-heading p {
        font-size: 0.84rem !important;
        line-height: 1.58 !important;
    }

    .site-footer {
        padding: 22px 0 14px !important;
    }

    .footer-brand-block p {
        max-width: 280px !important;
        font-size: 0.55rem !important;
        line-height: 1.42 !important;
    }
}

@media (max-width: 390px) {
    .premium-hero h1 {
        font-size: clamp(1.78rem, 8.2vw, 2.16rem) !important;
    }

    .premium-hero p {
        font-size: 0.74rem !important;
    }

    .premium-hero__content {
        padding-top: 70px !important;
        padding-bottom: 36px !important;
    }
}

/* AJUSTE 18 - REFINO EXECUTIVO DE PROPORCAO E TIPOGRAFIA */

.premium-hero__content {
    padding-left: clamp(34px, 7vw, 108px) !important;
}

.premium-hero h1 {
    max-width: 560px !important;
    font-size: clamp(1.68rem, 2.58vw, 2.85rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.032em !important;
    font-weight: 430 !important;
}

.premium-hero__eyebrow {
    margin-bottom: 16px !important;
    font-size: 0.58rem !important;
    font-weight: 650 !important;
    letter-spacing: 0.13em !important;
}

.premium-hero p {
    max-width: 560px !important;
    margin-bottom: 24px !important;
    font-size: 0.84rem !important;
    line-height: 1.58 !important;
}

.premium-hero__actions {
    gap: 10px !important;
}

.premium-hero__button {
    min-height: 34px !important;
    padding: 0 16px !important;
    border-radius: 4px !important;
    font-size: 0.58rem !important;
    font-weight: 720 !important;
    letter-spacing: 0.075em !important;
}

.section-heading h2,
.areas-section .section-heading h2,
.differentials-section .section-heading h2,
.methodology-section .section-heading h2,
.solutions-section .section-heading h2,
.about-section .section-heading h2,
.final-cta h2 {
    font-size: clamp(1.36rem, 2.15vw, 1.88rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.018em !important;
    font-weight: 420 !important;
}

.section-heading {
    max-width: 920px !important;
}

.section-heading h2 {
    white-space: nowrap !important;
}

.methodology-section .section-heading p {
    max-width: 680px !important;
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
}

.statement.statement-section h2 {
    max-width: 620px !important;
    font-size: clamp(1.24rem, 1.72vw, 1.62rem) !important;
    line-height: 1.22 !important;
    font-weight: 380 !important;
    letter-spacing: -0.018em !important;
}

.statement.statement-section .statement-title-line,
.statement.statement-section h2 .text-accent {
    display: block !important;
    white-space: nowrap !important;
}

.area-card {
    cursor: pointer !important;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease !important;
}

.area-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(0, 214, 49, 0.58) !important;
    box-shadow: 0 24px 54px rgba(15, 43, 70, 0.14) !important;
}

.area-card:hover .card-link {
    color: #00d631 !important;
}

.area-card:hover .card-link::after {
    transform: translateX(4px) !important;
}

@media (max-width: 760px) {
    .premium-hero {
        min-height: 82svh !important;
        align-items: flex-start !important;
    }

    .premium-hero__content {
        padding-top: 92px !important;
        padding-right: 22px !important;
        padding-bottom: 34px !important;
        padding-left: 22px !important;
        transform: translateX(10px) !important;
    }

    .premium-hero__eyebrow {
        gap: 8px !important;
        margin-bottom: 10px !important;
        font-size: 0.48rem !important;
        font-weight: 650 !important;
        letter-spacing: 0.12em !important;
    }

    .premium-hero__eyebrow::before {
        width: 18px !important;
    }

    .premium-hero h1 {
        max-width: 295px !important;
        margin-bottom: 14px !important;
        font-size: clamp(1.38rem, 6.15vw, 1.78rem) !important;
        line-height: 1.11 !important;
        letter-spacing: -0.018em !important;
        font-weight: 390 !important;
    }

    .premium-hero p {
        max-width: 298px !important;
        margin-bottom: 16px !important;
        font-size: 0.68rem !important;
        line-height: 1.48 !important;
        font-weight: 400 !important;
    }

    .premium-hero__actions {
        max-width: 270px !important;
        gap: 7px !important;
    }

    .premium-hero__button {
        min-height: 34px !important;
        padding: 0 13px !important;
        border-radius: 4px !important;
        font-size: 0.54rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.055em !important;
    }

    .statement.statement-section h2 {
        max-width: 305px !important;
        font-size: clamp(1.02rem, 4.85vw, 1.24rem) !important;
        line-height: 1.18 !important;
        font-weight: 380 !important;
    }

    .statement.statement-section .statement-title-line,
    .statement.statement-section h2 .text-accent {
        white-space: nowrap !important;
    }

    .section-heading h2,
    .areas-section .section-heading h2,
    .differentials-section .section-heading h2,
    .methodology-section .section-heading h2,
    .solutions-section .section-heading h2,
    .about-section .section-heading h2,
    .final-cta h2 {
        max-width: 100% !important;
        font-size: clamp(1.18rem, 5.35vw, 1.44rem) !important;
        line-height: 1.2 !important;
        font-weight: 400 !important;
        letter-spacing: -0.014em !important;
        white-space: normal !important;
    }

    .differentials-section .section-heading h2,
    .methodology-section .section-heading h2 {
        white-space: nowrap !important;
        font-size: clamp(1.08rem, 4.8vw, 1.30rem) !important;
    }

    .methodology-section .section-heading p {
        max-width: 315px !important;
        font-size: 0.78rem !important;
        line-height: 1.52 !important;
    }

    .area-card:hover,
    .area-card:focus-within {
        transform: translateY(-3px) !important;
        border-color: rgba(0, 214, 49, 0.68) !important;
        box-shadow: 0 18px 34px rgba(15, 43, 70, 0.13) !important;
    }
}

@media (max-width: 390px) {
    .premium-hero__content {
        padding-top: 86px !important;
        transform: translateX(8px) !important;
    }

    .premium-hero h1 {
        max-width: 280px !important;
        font-size: clamp(1.30rem, 6vw, 1.62rem) !important;
    }

    .premium-hero p {
        max-width: 282px !important;
        font-size: 0.65rem !important;
    }

    .premium-hero__actions {
        max-width: 250px !important;
    }
}

/* Ajuste executivo v9: reduz impacto visual no mobile sem alterar o desktop aprovado. */
@media (max-width: 760px) {
    .premium-hero {
        min-height: 78svh !important;
    }

    .premium-hero__content {
        padding-top: 74px !important;
        padding-left: 34px !important;
        padding-right: 22px !important;
        transform: none !important;
    }

    .premium-hero__eyebrow {
        margin-bottom: 8px !important;
        font-size: 0.42rem !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
        letter-spacing: 0.115em !important;
    }

    .premium-hero h1 {
        max-width: 245px !important;
        margin-bottom: 12px !important;
        font-size: clamp(1.02rem, 4.45vw, 1.22rem) !important;
        line-height: 1.12 !important;
        font-weight: 390 !important;
        letter-spacing: -0.01em !important;
    }

    .premium-hero p {
        max-width: 265px !important;
        margin-bottom: 13px !important;
        font-size: 0.62rem !important;
        line-height: 1.46 !important;
    }

    .premium-hero__actions {
        max-width: 225px !important;
        gap: 6px !important;
    }

    .premium-hero__button {
        min-height: 28px !important;
        padding: 0 10px !important;
        border-radius: 3px !important;
        font-size: 0.46rem !important;
        font-weight: 650 !important;
        letter-spacing: 0.045em !important;
    }

    .premium-hero__button span {
        font-size: 0.58rem !important;
    }

    .statement.statement-section h2 {
        max-width: 292px !important;
        font-size: clamp(0.94rem, 4.25vw, 1.10rem) !important;
        line-height: 1.18 !important;
        font-weight: 380 !important;
        letter-spacing: -0.01em !important;
    }

    .statement.statement-section .statement-title-line,
    .statement.statement-section h2 .text-accent {
        display: block !important;
        white-space: nowrap !important;
    }

    .section-heading h2,
    .areas-section .section-heading h2,
    .differentials-section .section-heading h2,
    .methodology-section .section-heading h2,
    .solutions-section .section-heading h2,
    .about-section .section-heading h2,
    .final-cta h2 {
        max-width: 100% !important;
        font-size: clamp(1.00rem, 4.35vw, 1.18rem) !important;
        line-height: 1.18 !important;
        font-weight: 390 !important;
        letter-spacing: -0.008em !important;
    }

    .differentials-section .section-heading h2,
    .methodology-section .section-heading h2 {
        white-space: nowrap !important;
        font-size: clamp(0.98rem, 4.05vw, 1.12rem) !important;
    }
}

@media (max-width: 390px) {
    .premium-hero__content {
        padding-top: 70px !important;
        padding-left: 32px !important;
    }

    .premium-hero h1 {
        max-width: 232px !important;
        font-size: clamp(0.98rem, 4.25vw, 1.14rem) !important;
    }

    .premium-hero p {
        max-width: 252px !important;
        font-size: 0.59rem !important;
    }

    .premium-hero__actions {
        max-width: 214px !important;
    }

    .premium-hero__button {
        min-height: 27px !important;
        font-size: 0.43rem !important;
    }
}

/* Ajuste v12: cabeçalho compacto e navegação sempre recolhida em menu. */
.site-header.site-header--clean {
    height: 62px !important;
}

.site-header__inner-clean {
    min-height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
}

.site-header__brand-clean img {
    height: 36px !important;
    width: auto !important;
    max-width: 132px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.site-header__nav-clean,
.site-header__cta-clean {
    display: none !important;
}

.site-header--clean .menu-toggle {
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: rgba(8, 25, 43, 0.34) !important;
}

.site-header--clean .menu-toggle span {
    width: 16px !important;
    height: 1.6px !important;
    margin: 0 !important;
    background: #ffffff !important;
}

.site-header--clean .mobile-menu {
    top: 62px !important;
    right: 20px !important;
}

@media (max-width: 760px) {
    .site-header.site-header--clean {
        height: 54px !important;
    }

    .site-header__inner-clean {
        min-height: 54px !important;
    }

    .site-header__brand-clean img {
        height: 28px !important;
        max-width: 112px !important;
    }

    .site-header--clean .menu-toggle {
        width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;
    }

    .site-header--clean .menu-toggle span {
        width: 14px !important;
    }

    .site-header--clean .mobile-menu {
        top: 54px !important;
        right: 14px !important;
        width: min(224px, calc(100vw - 28px)) !important;
    }
}

/* Ajuste v13: proporcionalidade real dos textos no mobile. */
@media (max-width: 760px) {
    .premium-hero {
        min-height: 82svh !important;
    }

    .premium-hero__content {
        max-width: 340px !important;
        padding-top: 96px !important;
        padding-left: 38px !important;
        padding-right: 24px !important;
    }

    .premium-hero__eyebrow {
        margin-bottom: 10px !important;
        font-size: 0.50rem !important;
        line-height: 1.25 !important;
        font-weight: 650 !important;
        letter-spacing: 0.12em !important;
    }

    .premium-hero h1 {
        max-width: 308px !important;
        margin-bottom: 13px !important;
        font-size: clamp(1.52rem, 6.15vw, 1.72rem) !important;
        line-height: 1.08 !important;
        font-weight: 600 !important;
        letter-spacing: -0.012em !important;
    }

    .premium-hero p {
        max-width: 304px !important;
        margin-bottom: 16px !important;
        font-size: 0.76rem !important;
        line-height: 1.48 !important;
        font-weight: 450 !important;
    }

    .premium-hero__actions {
        max-width: 292px !important;
        gap: 8px !important;
    }

    .premium-hero__button {
        min-height: 32px !important;
        padding: 0 12px !important;
        border-radius: 4px !important;
        font-size: 0.55rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.045em !important;
    }

    .premium-hero__button span {
        font-size: 0.68rem !important;
    }
}

@media (max-width: 390px) {
    .premium-hero__content {
        max-width: 320px !important;
        padding-top: 88px !important;
        padding-left: 34px !important;
        padding-right: 20px !important;
    }

    .premium-hero h1 {
        max-width: 286px !important;
        font-size: clamp(1.42rem, 6vw, 1.58rem) !important;
    }

    .premium-hero p {
        max-width: 286px !important;
        font-size: 0.72rem !important;
    }

    .premium-hero__actions {
        max-width: 274px !important;
    }
}

/* AJUSTE 19 - HEADER E HERO DESKTOP */

@media (min-width: 981px) {
    .site-header.site-header--clean {
        height: 98px !important;
    }

    .site-header__inner-clean {
        min-height: 98px !important;
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 32px !important;
    }

    .site-header__brand-clean img {
        height: 66px !important;
        width: auto !important;
        max-width: none !important;
    }

    .site-header__nav-clean {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 36px !important;
    }

    .site-header__cta-clean {
        display: inline-flex !important;
    }

    .site-header--clean .menu-toggle,
    .site-header--clean .mobile-menu {
        display: none !important;
    }

    .premium-hero__content {
        padding-top: 98px !important;
        padding-right: 0 !important;
        padding-bottom: 78px !important;
        padding-left: 0 !important;
        transform: none !important;
    }

    .premium-hero__content > * {
        max-width: 760px !important;
    }

    .premium-hero__eyebrow {
        margin-bottom: 20px !important;
        font-size: 0.69rem !important;
    }

    .premium-hero h1 {
        max-width: 760px !important;
        margin-bottom: 24px !important;
        font-size: clamp(3.44rem, 3.73vw, 4.49rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -0.04em !important;
        font-weight: 430 !important;
    }

    .premium-hero p {
        max-width: 680px !important;
        margin-bottom: 26px !important;
        font-size: 0.98rem !important;
        line-height: 1.66 !important;
    }

    .premium-hero__actions {
        max-width: 680px !important;
    }
}

/* AJUSTE 20 - HERO MOBILE FINAL */

@media (max-width: 760px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .container {
        width: calc(100% - 32px) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .site-header.site-header--clean {
        height: 64px !important;
    }

    .site-header__inner-clean {
        min-height: 64px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }

    .site-header__brand-clean img {
        width: auto !important;
        height: 32px !important;
        max-width: 120px !important;
    }

    .site-header__nav-clean,
    .site-header__cta-clean {
        display: none !important;
    }

    .site-header--clean .menu-toggle {
        display: inline-flex !important;
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
    }

    .site-header--clean .mobile-menu {
        top: 64px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        max-width: 260px !important;
    }

    .premium-hero {
        min-height: 100svh !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .premium-hero__image img {
        object-position: 62% center !important;
    }

    .premium-hero__content {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding: 90px 0 44px !important;
        transform: none !important;
    }

    .premium-hero__content > * {
        width: 100% !important;
        max-width: none !important;
    }

    .premium-hero__eyebrow {
        display: flex !important;
        width: 100% !important;
        margin: 0 0 14px !important;
        font-size: 0.54rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.1em !important;
        white-space: normal !important;
    }

    .premium-hero__eyebrow::before {
        width: 22px !important;
        flex: 0 0 22px !important;
    }

    .premium-hero h1 {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 0 18px !important;
        font-size: clamp(2.05rem, 9vw, 2.55rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -0.035em !important;
        font-weight: 500 !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
    }

    .premium-hero p {
        width: 100% !important;
        max-width: 345px !important;
        margin: 0 0 22px !important;
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        white-space: normal !important;
    }

    .premium-hero p br {
        display: none !important;
    }

    .premium-hero__actions {
        width: 100% !important;
        max-width: 345px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 9px !important;
    }

    .premium-hero__button {
        width: 100% !important;
        min-height: 42px !important;
        padding: 0 14px !important;
        border-radius: 5px !important;
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap !important;
    }

    .premium-hero__scroll {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .premium-hero h1 {
        max-width: 330px !important;
        font-size: clamp(1.95rem, 8.7vw, 2.25rem) !important;
    }

    .premium-hero p {
        max-width: 330px !important;
        font-size: 0.84rem !important;
    }

    .premium-hero__actions {
        max-width: 330px !important;
    }
}

/* AJUSTE 21 - REFINOS VISUAIS MOBILE */

@media (max-width: 760px) {
    /* Hero 20% menos agressivo */

    .premium-hero h1 {
        max-width: 330px !important;
        font-size: clamp(1.64rem, 7.2vw, 2.04rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.025em !important;
    }

    .premium-hero p {
        max-width: 330px !important;
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }

    /* Botões menores */

    .premium-hero__actions {
        width: 100% !important;
        max-width: 300px !important;
        gap: 7px !important;
    }

    .premium-hero__button {
        width: 100% !important;
        min-height: 36px !important;
        padding: 0 12px !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.045em !important;
        cursor: pointer !important;
        transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            border-color 0.18s ease,
            background 0.18s ease,
            color 0.18s ease,
            filter 0.18s ease !important;
    }

    .premium-hero__button--primary:hover,
    .premium-hero__button--primary:focus-visible {
        transform: translateY(-2px) !important;
        filter: brightness(1.06) !important;
        box-shadow: 0 12px 26px rgba(0, 214, 49, 0.24) !important;
    }

    .premium-hero__button--primary:active {
        transform: scale(0.98) !important;
        filter: brightness(0.96) !important;
    }

    .premium-hero__button--secondary:hover,
    .premium-hero__button--secondary:focus-visible {
        transform: translateY(-2px) !important;
        border-color: #00d631 !important;
        background: rgba(0, 214, 49, 0.08) !important;
        color: #00d631 !important;
    }

    .premium-hero__button--secondary:active {
        transform: scale(0.98) !important;
    }

    /* Resposta visual do menu sanduíche */

    .site-header--clean .menu-toggle {
        cursor: pointer !important;
        transition:
            transform 0.18s ease,
            border-color 0.18s ease,
            background 0.18s ease,
            box-shadow 0.18s ease !important;
    }

    .site-header--clean .menu-toggle:hover,
    .site-header--clean .menu-toggle:focus-visible {
        transform: scale(1.05) !important;
        border-color: rgba(0, 214, 49, 0.85) !important;
        background: rgba(0, 214, 49, 0.10) !important;
        box-shadow: 0 8px 20px rgba(0, 214, 49, 0.12) !important;
    }

    .site-header--clean .menu-toggle:active {
        transform: scale(0.95) !important;
    }

    .site-header--clean .mobile-menu.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    /* Página mais compacta e confortável */

    .pain-section,
    .areas-section,
    .differentials-section,
    .methodology-section,
    .solutions-section,
    .about-section {
        padding-top: 48px !important;
        padding-bottom: 52px !important;
    }

    .section-heading {
        margin-bottom: 22px !important;
    }

    .section-heading h2 {
        font-size: clamp(0.96rem, 4.1vw, 1.12rem) !important;
        line-height: 1.2 !important;
    }

    .section-heading p {
        font-size: 0.76rem !important;
        line-height: 1.52 !important;
    }

    .info-card h3 {
        font-size: 0.82rem !important;
    }

    .info-card p {
        font-size: 0.70rem !important;
        line-height: 1.42 !important;
    }

    .area-card h3 {
        font-size: 1.06rem !important;
    }

    .area-card p {
        font-size: 0.76rem !important;
        line-height: 1.48 !important;
    }

    .methodology-grid h3 {
        font-size: 0.90rem !important;
    }

    .methodology-grid p {
        font-size: 0.72rem !important;
        line-height: 1.46 !important;
    }

    .solutions-block > h3 {
        font-size: 0.96rem !important;
    }

    .solutions-items h4 {
        font-size: 0.76rem !important;
    }

    .about-content h2 {
        font-size: 1.18rem !important;
    }

    .about-content p {
        font-size: 0.78rem !important;
        line-height: 1.52 !important;
    }

    .final-cta h2 {
        font-size: 1.28rem !important;
    }

    .final-cta p {
        font-size: 0.76rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 390px) {
    .premium-hero h1 {
        font-size: clamp(1.56rem, 6.96vw, 1.80rem) !important;
    }

    .premium-hero p {
        font-size: 0.79rem !important;
    }

    .premium-hero__actions {
        max-width: 288px !important;
    }
}

/* AJUSTE 22 - MOBILE HERO E INTERAÇÕES FINAIS */

@media (max-width: 760px) {
    .premium-hero__eyebrow {
        margin-bottom: 10px !important;
    }

    .premium-hero h1 {
        max-width: 315px !important;
        margin-bottom: 12px !important;
        font-size: clamp(1.42rem, 6.4vw, 1.72rem) !important;
        line-height: 1.06 !important;
    }

    .premium-hero p {
        max-width: 315px !important;
        margin-bottom: 14px !important;
        font-size: 0.75rem !important;
        line-height: 1.45 !important;
    }

    .premium-hero p br {
        display: none !important;
    }

    .premium-hero__actions {
        width: 100% !important;
        max-width: 270px !important;
        gap: 8px !important;
    }

    .premium-hero__button {
        min-height: 34px !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.52rem !important;
        border-radius: 6px !important;
        transition: transform 180ms ease, box-shadow 180ms ease !important;
    }

    .premium-hero__button:hover,
    .premium-hero__button:focus-visible {
        transform: translateY(-2px) scale(1.015) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28) !important;
    }

    .premium-hero__button:active {
        transform: translateY(0) scale(0.98) !important;
    }

    .premium-hero__button span {
        transition: transform 180ms ease !important;
    }

    .premium-hero__button:hover span,
    .premium-hero__button:focus-visible span {
        transform: translateX(4px) !important;
    }

    .site-header--clean .menu-toggle {
        transition: transform 180ms ease, box-shadow 180ms ease !important;
    }

    .site-header--clean .menu-toggle:hover,
    .site-header--clean .menu-toggle:focus-visible {
        transform: scale(1.07) !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    }

    .site-header--clean .menu-toggle:active {
        transform: scale(0.94) !important;
    }
}


/* AJUSTE 23 - TEXTO E RESPIRO DA HERO MOBILE */
@media (max-width: 760px) {
    .premium-hero__content > p {
        font-size: 0.68rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }
}

/* AJUSTE 24 - CORREÇÃO DO TEXTO E RESPIRO MOBILE */
@media (max-width: 760px) {
    .premium-hero .premium-hero__content > p {
        font-size: 0.68rem !important;
        line-height: 1.45 !important;
        margin-top: 14px !important;
        margin-bottom: 0 !important;
        max-width: 310px !important;
    }

    .premium-hero .premium-hero__actions {
        margin-top: 24px !important;
    }
}

/* AJUSTE 25 - PROPORÇÕES FINAIS DA HERO MOBILE */
@media (max-width: 760px) {
    /* Primeira linha: Inteligência • Estratégia • Resultados */
    .premium-hero .premium-hero__eyebrow {
        font-size: 0.38rem !important;
    }

    /* Texto explicativo */
    .premium-hero .premium-hero__content > p {
        font-size: 0.61rem !important;
        line-height: 1.45 !important;
    }

    /* Respiro e largura do conjunto de botões */
    .premium-hero .premium-hero__actions {
        width: 100% !important;
        max-width: 270px !important;
        margin-top: 36px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 8px !important;
    }

    /* Redução dos dois botões */
    .premium-hero .premium-hero__button {
        width: 100% !important;
        min-height: 34px !important;
        padding: 0.42rem 0.65rem !important;
        font-size: 0.52rem !important;
    }
}

/* AJUSTE 26 - LARGURA E ALINHAMENTO DOS BOTÕES MOBILE */
@media (max-width: 760px) {
    .premium-hero .premium-hero__actions {
        width: 205px !important;
        max-width: 205px !important;
        margin-top: 36px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        align-self: flex-start !important;
    }

    .premium-hero .premium-hero__button {
        width: 205px !important;
        min-height: 34px !important;
        padding: 0.42rem 0.65rem !important;
    }
}

/* =========================================================
   AJUSTE 29 — ORIGEM IBEN, SIMBOLO E CONSULTOR NA HOME
========================================================= */

.home-origin {
    padding: 96px 0 104px;
    background: var(--off-white);
}

.home-origin__story {
    max-width: 1010px;
    margin-bottom: 62px;
}

.home-origin__story .eyebrow,
.home-consultant__content .eyebrow {
    margin-bottom: 16px;
}

.home-origin__story h2 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.home-origin__story p {
    max-width: 980px;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.78;
}

.home-origin__story p + p {
    margin-top: 19px;
}

.home-origin__story strong {
    color: var(--text);
    font-weight: 650;
}

.home-origin__symbol-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
    align-items: stretch;
    gap: 54px;
}

.home-origin__image {
    min-height: 520px;
    border-radius: 18px;
}

.home-origin__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.home-symbol-panel {
    padding: 34px 34px 30px;
    border: 1px solid rgba(15, 43, 70, 0.09);
    border-top: 2px solid rgba(0, 214, 49, 0.44);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 43, 70, 0.055);
}

.home-symbol-panel h3 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 1.14rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.home-symbol-panel__subtitle {
    display: block;
    margin-bottom: 29px;
    color: #3f9655;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-symbol-panel__item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(15, 43, 70, 0.12);
}

.home-symbol-panel__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.home-symbol-panel__item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 700;
}

.home-symbol-panel__item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.62;
}

.home-consultant-section {
    padding: 96px 0 104px;
    background: #efefed;
}

.home-consultant {
    display: grid;
    grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1.08fr);
    gap: 58px;
    align-items: start;
}

.home-consultant__portrait {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 43, 70, 0.1);
}

.home-consultant__portrait img {
    width: 100%;
    min-height: 680px;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.home-consultant__content h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.home-consultant__name {
    margin-bottom: 2px !important;
    color: var(--navy) !important;
    font-family: var(--font-title);
    font-size: 1rem !important;
    font-weight: 650;
}

.home-consultant__role {
    margin-bottom: 25px !important;
    color: var(--text-soft) !important;
    font-size: 0.92rem !important;
}

.home-consultant__content > p:not(.home-consultant__name):not(.home-consultant__role) {
    margin: 0;
    color: #344454;
    font-size: 0.94rem;
    line-height: 1.72;
}

.home-consultant__content > p + p {
    margin-top: 17px !important;
}

.home-consultant__quote {
    margin: 27px 0;
    padding: 23px 26px;
    border-left: 3px solid var(--green);
    border-radius: 0 12px 12px 0;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 43, 70, 0.06);
    color: var(--text);
    font-family: var(--font-title);
    font-size: 0.94rem;
    font-weight: 550;
    line-height: 1.5;
}

.home-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-authority-grid > div {
    min-height: 142px;
    padding: 19px;
    border: 1px solid rgba(15, 43, 70, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(15, 43, 70, 0.045);
}

.home-authority-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 0.84rem;
    font-weight: 650;
}

.home-authority-grid span {
    color: var(--text-soft);
    font-size: 0.72rem;
    line-height: 1.55;
}

@media (max-width: 1020px) {
    .home-origin__symbol-grid,
    .home-consultant {
        grid-template-columns: 1fr;
    }

    .home-origin__image {
        min-height: 420px;
    }

    .home-origin__image img {
        min-height: 420px;
    }

    .home-consultant__portrait {
        max-width: 650px;
    }

    .home-consultant__portrait img {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .home-authority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-section.home-origin,
    .home-consultant-section {
        padding: 62px 0 68px !important;
    }

    .home-origin__story {
        margin-bottom: 38px;
    }

    .home-origin__story h2,
    .home-consultant__content h2 {
        margin-bottom: 20px;
        font-size: clamp(1.55rem, 7vw, 1.9rem);
        line-height: 1.16;
        letter-spacing: -0.035em;
    }

    .home-origin__story p,
    .home-consultant__content > p:not(.home-consultant__name):not(.home-consultant__role) {
        font-size: 0.86rem;
        line-height: 1.67;
    }

    .home-origin__symbol-grid {
        gap: 26px !important;
    }

    .home-origin__image {
        min-height: 0;
        border-radius: 12px;
    }

    .home-origin__image img {
        height: 240px !important;
        min-height: 0;
        border-radius: 12px !important;
    }

    .home-symbol-panel {
        padding: 25px 23px;
        border-radius: 14px;
    }

    .home-symbol-panel h3 {
        font-size: 1.02rem;
    }

    .home-symbol-panel__subtitle {
        margin-bottom: 24px;
        font-size: 0.66rem;
    }

    .home-symbol-panel__item strong {
        font-size: 0.88rem;
    }

    .home-symbol-panel__item p {
        font-size: 0.82rem;
    }

    .home-consultant {
        gap: 34px;
    }

    .home-consultant__portrait {
        max-width: 100%;
        border-radius: 14px;
    }

    .home-consultant__portrait img {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .home-consultant__name {
        font-size: 0.94rem !important;
    }

    .home-consultant__role {
        margin-bottom: 21px !important;
        font-size: 0.84rem !important;
    }

    .home-consultant__quote {
        margin: 23px 0;
        padding: 20px 20px;
        font-size: 0.86rem;
    }

    .home-authority-grid > div {
        min-height: 124px;
        padding: 16px;
    }
}

@media (max-width: 520px) {
    .home-authority-grid {
        grid-template-columns: 1fr;
    }

    .home-authority-grid > div {
        min-height: 0;
    }
}

/* =========================================================
   AJUSTE 30 - HOME COMPACTA
========================================================= */

@media (min-width: 901px) {
    .home-origin > .container,
    .home-consultant-section > .container,
    .statement.statement-section > .container {
        width: min(calc(100% - 64px), 1380px) !important;
        max-width: 1380px !important;
    }

    .about-section.home-origin {
        padding: 64px 0 72px !important;
    }

    .home-origin__story {
        max-width: none !important;
        margin-bottom: 42px !important;
    }

    .home-origin__story h2 {
        max-width: none !important;
        margin-bottom: 22px !important;
        font-size: clamp(1.85rem, 2.5vw, 2.45rem) !important;
    }

    .home-origin__story p {
        max-width: none !important;
        font-size: 0.94rem !important;
        line-height: 1.68 !important;
    }

    .home-origin__story p + p {
        margin-top: 14px !important;
    }

    .home-origin__symbol-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr) !important;
        gap: 40px !important;
    }

    .home-origin__image {
        min-height: 450px !important;
    }

    .home-origin__image img {
        min-height: 450px !important;
    }

    .home-symbol-panel {
        padding: 29px 30px 27px !important;
    }

    .home-symbol-panel__subtitle {
        margin-bottom: 22px !important;
    }

    .home-symbol-panel__item {
        padding-bottom: 16px !important;
        margin-bottom: 16px !important;
    }

    .home-consultant-section {
        padding: 70px 0 76px !important;
    }

    .home-consultant {
        grid-template-columns: minmax(340px, 0.52fr) minmax(0, 1.18fr) !important;
        gap: 46px !important;
    }

    .home-consultant__portrait img {
        min-height: 600px !important;
    }

    .home-consultant__content h2 {
        margin-bottom: 16px !important;
        font-size: clamp(1.85rem, 2.65vw, 2.4rem) !important;
    }

    .home-consultant__role {
        margin-bottom: 20px !important;
    }

    .home-consultant__content > p:not(.home-consultant__name):not(.home-consultant__role) {
        font-size: 0.9rem !important;
        line-height: 1.62 !important;
    }

    .home-consultant__content > p + p {
        margin-top: 13px !important;
    }

    .home-consultant__quote {
        margin: 20px 0 !important;
        padding: 18px 22px !important;
    }

    .home-authority-grid > div {
        min-height: 118px !important;
        padding: 16px !important;
    }

    .statement.statement-section {
        min-height: 210px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .statement.statement-section .statement__grid {
        min-height: 210px !important;
        align-items: center !important;
        gap: 56px !important;
        padding: 28px 0 !important;
        border-bottom: 0 !important;
    }

    .statement.statement-section .section-tag {
        margin-bottom: 16px !important;
    }

    .statement.statement-section .statement-impact-text {
        align-self: center !important;
    }
}

/* =========================================================
   AJUSTE 31 - ALINHAMENTO DA FAIXA
========================================================= */

@media (min-width: 901px) {
    .statement.statement-section > .container {
        width: min(calc(100% - 48px), var(--container)) !important;
        max-width: var(--container) !important;
    }
}

/* =========================================================
   AJUSTE 32 - HOME MOBILE COMPACTA
========================================================= */

@media (max-width: 760px) {

    .about-section.home-origin,
    .home-consultant-section {
        padding: 44px 0 48px !important;
    }

    .about-section.home-origin > .container,
    .home-consultant-section > .container {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        min-width: 0 !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        box-sizing: border-box !important;
    }

    .home-origin__story,
    .home-origin__symbol-grid,
    .home-origin__image,
    .home-symbol-panel,
    .home-consultant,
    .home-consultant__portrait,
    .home-consultant__content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .home-origin__symbol-grid,
    .home-consultant {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .home-origin__story {
        margin-bottom: 28px !important;
    }

    .home-origin__story .eyebrow,
    .home-consultant__content .eyebrow {
        margin-bottom: 11px !important;
        font-size: 0.58rem !important;
    }

    .home-origin__story h2,
    .home-consultant__content h2 {
        margin-bottom: 15px !important;
        font-size: 1.4rem !important;
        line-height: 1.14 !important;
        letter-spacing: -0.035em !important;
    }

    .home-origin__story p,
    .home-consultant__content > p:not(.home-consultant__name):not(.home-consultant__role) {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .home-origin__story p + p,
    .home-consultant__content > p + p {
        margin-top: 12px !important;
    }

    .home-origin__symbol-grid {
        gap: 18px !important;
    }

    .home-origin__image img {
        width: 100% !important;
        height: 190px !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }

    .home-symbol-panel {
        padding: 20px 18px !important;
    }

    .home-symbol-panel__subtitle {
        margin-bottom: 18px !important;
    }

    .home-symbol-panel__item {
        margin-bottom: 14px !important;
        padding-bottom: 14px !important;
    }

    .home-symbol-panel__item strong {
        margin-bottom: 5px !important;
        font-size: 0.82rem !important;
    }

    .home-symbol-panel__item p {
        font-size: 0.77rem !important;
        line-height: 1.48 !important;
    }

    .home-consultant {
        gap: 23px !important;
    }

    .home-consultant__portrait img {
        width: 100% !important;
        height: 350px !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .home-consultant__name {
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        font-size: 0.9rem !important;
    }

    .home-consultant__name + .home-consultant__role {
        margin-top: 0 !important;
    }

    .home-consultant__role {
        margin-bottom: 15px !important;
        font-size: 0.78rem !important;
    }

    .home-consultant__quote {
        margin: 18px 0 !important;
        padding: 16px 17px !important;
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
    }

    .home-authority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .home-authority-grid > div {
        min-height: 0 !important;
        padding: 13px !important;
        border-radius: 11px !important;
    }

    .home-authority-grid strong {
        margin-bottom: 6px !important;
        font-size: 0.75rem !important;
    }

    .home-authority-grid span {
        font-size: 0.68rem !important;
        line-height: 1.42 !important;
    }
}

@media (max-width: 350px) {
    .home-authority-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   AJUSTE 33 - CAIXAS MOBILE COMPACTAS
========================================================= */

@media (max-width: 760px) {

    /* Estrategia, Experiencia, Execucao e Resultados */

    .differentials-section {
        padding-top: 42px !important;
        padding-bottom: 46px !important;
    }

    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .differentials-grid .info-card {
        min-height: 108px !important;
        padding: 11px 10px !important;
        border-radius: 8px !important;
    }

    .differentials-grid .card-icon {
        margin-bottom: 7px !important;
        font-size: 1.05rem !important;
    }

    .differentials-grid .info-card h3 {
        margin-bottom: 5px !important;
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .differentials-grid .info-card p {
        margin-bottom: 0 !important;
        font-size: 0.72rem !important;
        line-height: 1.38 !important;
    }

    /* Consultoria e Produtos Financeiros */

    .solutions-section {
        padding-top: 42px !important;
        padding-bottom: 46px !important;
    }

    .solutions-blocks {
        gap: 12px !important;
    }

    .solutions-block {
        padding: 14px 12px !important;
        border-radius: 8px !important;
    }

    .solutions-block > h3 {
        margin-bottom: 11px !important;
        padding-bottom: 10px !important;
        font-size: 0.9rem !important;
        line-height: 1.22 !important;
    }

    .solutions-items,
    .solutions-block:nth-child(2) .solutions-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .solutions-items article {
        min-height: 64px !important;
        padding: 10px 9px !important;
        border-radius: 7px !important;
    }

    .solutions-items h4 {
        margin: 0 !important;
        font-size: 0.76rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em !important;
    }

    .solutions-items p {
        display: none !important;
    }

    /* Quatro caixas de autoridade do consultor */

    .home-authority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .home-authority-grid > div {
        min-height: 96px !important;
        padding: 11px !important;
        border-radius: 10px !important;
    }

    .home-authority-grid strong {
        margin-bottom: 5px !important;
        font-size: 0.74rem !important;
        line-height: 1.25 !important;
    }

    .home-authority-grid span {
        font-size: 0.68rem !important;
        line-height: 1.38 !important;
    }
}

@media (max-width: 350px) {
    .home-authority-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   AJUSTE 34 - FONTES MOBILE
========================================================= */

@media (max-width: 760px) {

    /* Textos internos das caixas sem negrito */

    .solutions-items h4 {
        color: var(--text-soft) !important;
        font-family: var(--font-body) !important;
        font-size: 0.72rem !important;
        font-weight: 400 !important;
        font-style: normal !important;
        line-height: 1.35 !important;
        letter-spacing: 0 !important;
    }

    /* Paragrafos da apresentacao do consultor */

    .home-consultant__content > p:not(.home-consultant__name):not(.home-consultant__role) {
        font-size: 0.74rem !important;
        font-weight: 400 !important;
        line-height: 1.44 !important;
    }

    .home-consultant__content > p + p {
        margin-top: 10px !important;
    }

    .home-consultant__name + .home-consultant__role {
        margin-top: 0 !important;
    }
}

/* AJUSTE 35 - ENQUADRAMENTO MOBILE DA HERO */

@media (max-width: 768px) {
    .premium-hero__image {
        background-image: url("../assets/img/hero-executivo-mobile.webp") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        filter: saturate(1.18) contrast(1.04) brightness(1.14) !important;
    }

    .premium-hero__image img {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .premium-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 20, 34, 0.06) 0%,
                rgba(3, 20, 34, 0.18) 42%,
                rgba(3, 20, 34, 0.56) 100%
            ),
            linear-gradient(
                90deg,
                rgba(3, 20, 34, 0.48) 0%,
                rgba(3, 20, 34, 0.18) 62%,
                rgba(3, 20, 34, 0.08) 100%
            ) !important;
    }
}
