@font-face {
    font-family: 'Heavitas';
    src: url('Heavitas.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --azul: #29323b;
    --azul-dark: #29323b;
    --turquesa: #49958b;
    --turquesa-light: #49958b;
    --turquesa-neon: #49958b;
    --cinza: #e5e5e5;
    --cinza-bg: #e5e5e5;
    --white: #ffffff;
    --black: #000000;
    --text-muted: rgba(41, 50, 59, 0.72);
    --red-pain: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--white);
    color: var(--azul);
    overflow-x: hidden;
}

/* Header */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    background: rgba(41, 50, 59, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(73, 149, 139, 0.18);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--turquesa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.logo-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--turquesa);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--turquesa);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost-nav {
    background: rgba(73, 149, 139, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(73, 149, 139, 0.4);
    padding: 0 18px;
    height: 40px;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-ghost-nav:hover {
    border-color: var(--turquesa);
    color: var(--turquesa);
    text-decoration: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    z-index: 199;
    background: rgba(41, 50, 59, 0.98);
    border-bottom: 1px solid rgba(73, 149, 139, 0.18);
    flex-direction: column;
    padding: 20px 24px 24px;
    gap: 16px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a,
.mobile-menu button {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    text-align: left;
    padding: 4px 0;
}

.mobile-menu .btn-neon-mobile {
    background: var(--turquesa);
    color: white;
    border: none;
    padding: 13px 20px;
    border-radius: 7px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-top: 4px;
}

/* Buttons */
.btn-neon {
    position: relative;
    overflow: hidden;
    background: var(--turquesa);
    color: white;
    border: none;
    padding: 0 26px;
    height: 40px;
    border-radius: 7px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.btn-neon:hover {
    background: var(--turquesa-light);
    box-shadow: 0 0 18px rgba(73, 149, 139, 0.45), 0 0 40px rgba(73, 149, 139, 0.22);
    transform: translateY(-2px);
}

.btn-neon:hover::before {
    transform: translateX(100%);
}

.btn-outline-white {
    background: rgba(41, 50, 59, 0.9);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(73, 149, 139, 0.4);
    padding: 0 26px;
    height: 40px;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-outline-white:hover {
    border-color: var(--turquesa);
    color: var(--turquesa);
}

/* Hero */
.hero {
    min-height: 100vh;
    background: var(--azul);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 72px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(73, 149, 139, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 149, 139, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-glow-tl {
    position: absolute;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(73, 149, 139, 0.55) 0%,
            rgba(73, 149, 139, 0.3) 35%,
            rgba(41, 50, 59, 0.16) 60%,
            transparent 75%);
    top: -280px;
    left: -220px;
    pointer-events: none;
    filter: blur(8px);
}

.hero-glow-tr {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(73, 149, 139, 0.32) 0%,
            rgba(73, 149, 139, 0.16) 45%,
            transparent 70%);
    top: -160px;
    right: -140px;
    pointer-events: none;
    filter: blur(12px);
}

.hero-glow-bl {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(73, 149, 139, 0.24) 0%, transparent 65%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    filter: blur(18px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 48px 48px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
}

.hero-text {
    flex: 1 1 0;
    min-width: 0;
}

.hero-media {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cinza);
    margin-bottom: 22px;
    animation: fadeDown 0.5s ease both;
}

.hero-title {
    font-family: 'Heavitas', 'Quicksand', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: normal;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 22px;
    animation: fadeUp 0.65s 0.1s ease both;
    text-transform: uppercase;
}

.hero-title-line {
    display: inline-block;
}

.hero-title-line+.hero-title-line {
    margin-top: 6px;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
    animation: fadeUp 0.65s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.65s 0.3s ease both;
}

.stats-strip {
    position: relative;
    z-index: 2;
    background: var(--azul);
    border-top: 1px solid rgba(73, 149, 139, 0.2);
    border-bottom: 1px solid rgba(73, 149, 139, 0.2);
}

.stats-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--turquesa);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Brands */
.brands-strip {
    background: white;
    border-bottom: 1px solid var(--cinza);
    padding: 20px 0;
    overflow: hidden;
}

.brands-strip-inner {
    display: flex;
    align-items: center;
}

.brands-label-wrap {
    flex-shrink: 0;
    padding: 0 20px 0 48px;
    background: white;
    position: relative;
    z-index: 2;
}

.brands-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(41, 50, 59, 0.45);
    white-space: nowrap;
    line-height: 1.5;
}

.brands-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.brands-track-wrap::before,
.brands-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.brands-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.brands-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    flex-shrink: 0;
    padding: 10px 12px;
    /*border: 1px solid var(--cinza);*/
    border-radius: 8px;
    /*background: rgba(229, 229, 229, 0.28);*/
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
    overflow: hidden;
}

.brand-logo-wrap:hover {
    border-color: var(--turquesa);
    background: rgba(73, 149, 139, 0.05);
}

.brand-logo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sections */
.bridge-section {
    background: var(--cinza-bg);
}

.bridge-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.bridge-col-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bridge-col-label.pain {
    color: var(--black);
}

.bridge-col-label.gain {
    color: var(--turquesa);
}

.bridge-col-title {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--azul);
    line-height: 1.2;
    margin-bottom: 14px;
}

.bridge-col-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bridge-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--cinza);
}

.bridge-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 8px;
}

.check-list li.bad {
    background: rgba(229, 229, 229, 0.55);
    border-left: 3px solid rgba(0, 0, 0, 0.3);
    color: rgba(41, 50, 59, 0.75);
}

.check-list li.bad::before {
    content: 'x';
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
}

.check-list li.good {
    background: rgba(73, 149, 139, 0.06);
    border-left: 3px solid var(--turquesa);
    color: var(--azul);
}

.check-list li.good::before {
    content: '✓';
    color: var(--turquesa);
    font-weight: 700;
    flex-shrink: 0;
}

.bridge-cta-center {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 80px;
    text-align: center;
}

.value-section {
    background: var(--azul-dark);
    padding: 80px 0;
}

.value-inner,
.steps-inner,
.personas-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.value-eyebrow,
.section-eyebrow,
.cta-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--turquesa);
    margin-bottom: 14px;
}

.value-title,
.section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

.value-title {
    color: white;
    margin-bottom: 36px;
}

.section-title {
    color: var(--azul);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 560px;
}

.tabs-nav {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 5px;
    width: fit-content;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--turquesa);
    color: white;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.35s ease;
}

.tab-panel.active {
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(73, 149, 139, 0.15);
    border-radius: 14px;
    padding: 26px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
}

.value-card:hover {
    background: rgba(73, 149, 139, 0.18);
    border-color: var(--turquesa);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 26px;
    margin-bottom: 14px;
    display: block;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 9px;
}

.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.steps-section {
    background: white;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--cinza);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
}

.step-card {
    background: white;
    padding: 30px 22px;
}

.step-num {
    font-size: 52px;
    font-weight: 700;
    color: var(--cinza);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
}

.step-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: rgba(41, 50, 59, 0.68);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
}

.personas-section {
    background: var(--cinza-bg);
    padding: 80px 0;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}

.persona-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--cinza);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.persona-card:hover {
    border-color: var(--turquesa);
    box-shadow: 0 8px 28px rgba(73, 149, 139, 0.12);
}

.persona-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--turquesa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.persona-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 2px;
}

.persona-role {
    font-size: 11px;
    color: var(--turquesa);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.persona-quote {
    font-size: 13px;
    color: rgba(41, 50, 59, 0.82);
    line-height: 1.65;
    font-style: italic;
    padding: 12px;
    background: rgba(229, 229, 229, 0.4);
    border-radius: 8px;
    border-left: 3px solid var(--turquesa);
    margin-bottom: 14px;
}

.persona-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ptag {
    display: inline-block;
    background: rgba(73, 149, 139, 0.09);
    color: var(--turquesa);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.dual-cta {
    background: var(--azul);
    padding: 0;
}

.dual-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-block {
    padding: 56px 52px;
    position: relative;
    overflow: hidden;
}

.cta-block+.cta-block {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(73, 149, 139, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Footer */
footer {
    background: var(--azul-dark);
    padding: 32px 48px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(73, 149, 139, 0.15);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-logo img {
    height: 28px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--turquesa);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* WhatsApp FAB */
#fab-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 313px;
    height: 125px;
    z-index: 999;
    display: block;
}

#fab-default,
#fab-hover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 313px;
    height: 125px;
    object-fit: contain;
    transition: opacity 0.55s ease, filter 0.55s ease;
    cursor: pointer;
}

#fab-default {
    opacity: 1;
    filter: blur(0px);
}

#fab-hover {
    opacity: 0;
    filter: blur(8px);
}

#fab-btn:hover #fab-default {
    opacity: 0;
    filter: blur(8px);
}

#fab-btn:hover #fab-hover {
    opacity: 1;
    filter: blur(0px);
}

/* Responsive */
@media (max-width: 900px) {
    footer {
        padding: 32px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-copy {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 14px 24px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 36px 24px 36px;
        gap: 0;
    }

    .hero-text {
        display: contents;
    }

    .hero-eyebrow {
        order: 1;
    }

    .hero-title {
        order: 2;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .hero-sub {
        order: 3;
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-media {
        order: 4;
        flex: none;
        max-width: 100%;
        width: 100%;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .hero-ctas {
        order: 5;
        margin-top: 28px;
    }

    .stats-strip-inner,
    .value-inner,
    .steps-inner,
    .personas-inner {
        padding: 0 24px;
    }

    .stat-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .brands-label-wrap {
        padding: 0 14px 0 20px;
    }

    .bridge-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 24px;
    }

    .bridge-cta-center {
        padding: 0 24px 60px;
    }

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

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

    .step-card {
        padding: 22px 18px;
    }

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

    .dual-cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 40px 24px;
    }

    .cta-block+.cta-block {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    footer {
        padding: 24px;
    }
}

@media (max-width: 580px) {
    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-title {
        letter-spacing: -0.5px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-neon,
    .hero-ctas .btn-outline-white,
    .btn-neon,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .stats-strip-inner {
        padding: 0 16px;
    }

    .stat-item {
        min-width: 50%;
    }

    .brands-label-wrap {
        padding: 0 10px 0 14px;
    }

    .brands-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .brand-logo-wrap {
        width: 100px;
        height: 56px;
    }

    .bridge-inner {
        padding: 48px 16px;
    }

    .bridge-cta-center {
        padding: 0 16px 48px;
    }

    .value-section,
    .steps-section,
    .personas-section {
        padding: 60px 0;
    }

    .value-inner,
    .steps-inner,
    .personas-inner {
        padding: 0 16px;
    }

    .tabs-nav {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 12px;
    }

    .cards-grid,
    .steps-grid,
    .personas-grid,
    .dual-cta-inner {
        grid-template-columns: 1fr;
    }

    .step-card {
        border-bottom: 1px solid var(--cinza);
    }

    .cta-block {
        padding: 36px 16px;
    }

    footer {
        padding: 20px 16px;
    }

    #fab-btn {
        width: 250px;
        height: 100px;
        bottom: 18px;
        right: 18px;
    }

    #fab-default,
    #fab-hover {
        width: 250px;
        height: 100px;
    }
}