:root {
    --sfy-bg: #07111f;
    --sfy-surface: rgba(8, 23, 40, 0.86);
    --sfy-surface-strong: #0d1a2b;
    --sfy-surface-soft: #f4f8fb;
    --sfy-card: #ffffff;
    --sfy-card-alt: #eef6fb;
    --sfy-line: rgba(132, 162, 191, 0.22);
    --sfy-line-strong: rgba(132, 162, 191, 0.42);
    --sfy-text: #102033;
    --sfy-text-soft: #496079;
    --sfy-text-inverse: #f5fbff;
    --sfy-primary: #0da7d8;
    --sfy-primary-deep: #0a76a4;
    --sfy-secondary: #1dd7a8;
    --sfy-highlight: #ffd166;
    --sfy-danger: #ef6a6a;
    --sfy-radius-xl: 32px;
    --sfy-radius-lg: 22px;
    --sfy-radius-md: 16px;
    --sfy-shadow-lg: 0 32px 70px rgba(3, 13, 24, 0.18);
    --sfy-shadow-md: 0 18px 40px rgba(3, 13, 24, 0.1);
    --sfy-shadow-sm: 0 8px 20px rgba(3, 13, 24, 0.08);
    --sfy-gradient-brand: linear-gradient(135deg, #0da7d8 0%, #169fd1 24%, #1cccb3 67%, #7ce08f 100%);
    --sfy-gradient-dark: linear-gradient(135deg, rgba(7, 17, 31, 0.96) 0%, rgba(10, 25, 45, 0.88) 48%, rgba(9, 44, 61, 0.78) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--sfy-text);
    background:
        radial-gradient(circle at top left, rgba(13, 167, 216, 0.16), transparent 34%),
        radial-gradient(circle at top right, rgba(29, 215, 168, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fbfd 0%, #eef5fa 100%);
}

body.has-floating-survey {
    padding-bottom: 7rem;
}

a {
    color: inherit;
}

.sfy-page {
    overflow: clip;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 31, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .navbar-brand {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--sfy-text-inverse);
}

.topbar .nav-link {
    color: rgba(245, 251, 255, 0.78);
    font-weight: 600;
}

.topbar .nav-link:hover,
.topbar .nav-link:focus,
.topbar .nav-link.active {
    color: var(--sfy-text-inverse);
}

.topbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.topbar .navbar-toggler-icon {
    filter: invert(1) brightness(1.4);
}

.btn-brand,
.btn-outline-brand,
.btn-soft {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-brand {
    background: var(--sfy-gradient-brand);
    border: none;
    color: #072033;
    box-shadow: 0 14px 32px rgba(21, 184, 174, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #072033;
    transform: translateY(-1px);
}

.btn-outline-brand {
    border: 1px solid rgba(245, 251, 255, 0.28);
    color: var(--sfy-text-inverse);
    background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sfy-text-inverse);
}

.btn-soft {
    border: 1px solid rgba(13, 167, 216, 0.18);
    color: var(--sfy-primary-deep);
    background: rgba(13, 167, 216, 0.08);
}

.btn-soft:hover,
.btn-soft:focus {
    color: var(--sfy-primary-deep);
    background: rgba(13, 167, 216, 0.14);
}

.hero {
    position: relative;
    padding: 6.2rem 0 5.2rem;
    color: var(--sfy-text-inverse);
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.08)),
        var(--sfy-gradient-dark);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(29, 215, 168, 0.28), transparent 68%);
}

.hero::after {
    width: 300px;
    height: 300px;
    left: -90px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(13, 167, 216, 0.32), transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(245, 251, 255, 0.9);
}

.hero h1,
.section-title,
.footer-brand,
.timeline-title {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    letter-spacing: -0.045em;
}

.hero h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    line-height: 0.98;
}

.hero p {
    max-width: 680px;
    color: rgba(245, 251, 255, 0.82);
    font-size: 1.1rem;
}

.hero-actions,
.hero-tags,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-tags {
    margin: 1.5rem 0 2rem;
}

.hero-tag {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(245, 251, 255, 0.88);
    font-weight: 600;
}

.glass-panel,
.info-card,
.metric-card,
.timeline-card,
.quote-card,
.contact-panel {
    border-radius: var(--sfy-radius-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--sfy-shadow-lg);
}

.glass-panel {
    padding: 1.6rem;
    backdrop-filter: blur(12px);
}

.glass-label {
    color: rgba(245, 251, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 800;
}

.glass-panel ul {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: rgba(245, 251, 255, 0.82);
}

.glass-panel li + li {
    margin-top: 0.7rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
}

.hero-metric {
    padding: 1rem;
    border-radius: var(--sfy-radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    color: var(--sfy-text-inverse);
}

.hero-metric span {
    color: rgba(245, 251, 255, 0.7);
    font-size: 0.92rem;
}

.section {
    padding: 5.5rem 0;
}

.section-tight {
    padding: 4rem 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(236, 245, 249, 0.86));
}

.section-dark {
    background:
        radial-gradient(circle at right top, rgba(29, 215, 168, 0.12), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #0a1626 100%);
    color: var(--sfy-text-inverse);
}

.section-header {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 0.85rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sfy-primary-deep);
}

.section-dark .section-kicker {
    color: rgba(124, 224, 143, 0.92);
}

.section-title {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-copy,
.section-header p,
.quote-card p,
.contact-panel p,
.timeline-card p,
.info-card p,
.metric-card p {
    color: var(--sfy-text-soft);
    font-size: 1.03rem;
}

.section-dark .section-copy,
.section-dark .section-header p,
.section-dark .quote-card p,
.section-dark .contact-panel p {
    color: rgba(245, 251, 255, 0.76);
}

.info-card,
.metric-card,
.timeline-card,
.quote-card,
.contact-panel {
    background: var(--sfy-card);
    border: 1px solid var(--sfy-line);
    box-shadow: var(--sfy-shadow-sm);
    height: 100%;
    padding: 1.5rem;
}

.metric-card {
    padding: 1.65rem;
}

.info-card:hover,
.metric-card:hover,
.timeline-card:hover,
.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sfy-shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-icon,
.timeline-step {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(13, 167, 216, 0.14), rgba(29, 215, 168, 0.18));
    color: var(--sfy-primary-deep);
    font-size: 1.35rem;
}

.card-label,
.timeline-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(13, 167, 216, 0.1);
    color: var(--sfy-primary-deep);
    font-size: 0.85rem;
    font-weight: 700;
}

.info-card h3,
.metric-card h3,
.quote-card h3,
.timeline-card h3,
.contact-panel h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bullet-list,
.clean-list,
.contact-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.bullet-list li,
.clean-list li,
.contact-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--sfy-text-soft);
}

.bullet-list li + li,
.clean-list li + li,
.contact-list li + li {
    margin-top: 0.8rem;
}

.bullet-list li::before,
.clean-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sfy-gradient-brand);
    box-shadow: 0 0 0 5px rgba(13, 167, 216, 0.08);
}

.split-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.signal-item {
    padding: 1.2rem 1.25rem;
    border-radius: var(--sfy-radius-lg);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--sfy-line);
}

.signal-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.signal-item span {
    color: var(--sfy-text-soft);
    font-size: 0.94rem;
}

.stage-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: var(--sfy-radius-lg);
    background: rgba(13, 167, 216, 0.08);
    border: 1px solid rgba(13, 167, 216, 0.16);
    color: var(--sfy-primary-deep);
    font-weight: 700;
}

.stage-banner .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sfy-secondary);
    box-shadow: 0 0 0 5px rgba(29, 215, 168, 0.16);
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 1.05rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(13, 167, 216, 0.38), rgba(29, 215, 168, 0.24));
}

.timeline-item {
    position: relative;
    padding-left: 1.2rem;
}

.timeline-item + .timeline-item {
    margin-top: 1.6rem;
}

.timeline-step {
    position: absolute;
    left: -1.5rem;
    top: 1.35rem;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    background: var(--sfy-gradient-brand);
    color: #072033;
    font-weight: 900;
}

.timeline-card {
    padding: 1.6rem;
}

.timeline-card strong {
    color: var(--sfy-text);
}

.timeline-meta {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(29, 215, 168, 0.12);
    color: #11795e;
    font-size: 0.82rem;
    font-weight: 700;
}

.quote-card {
    background:
        linear-gradient(135deg, rgba(13, 167, 216, 0.06), rgba(29, 215, 168, 0.08)),
        var(--sfy-card);
}

.survey-panel {
    padding: 1.75rem;
    border-radius: var(--sfy-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(13, 167, 216, 0.08), rgba(29, 215, 168, 0.12)),
        var(--sfy-card);
    border: 1px solid rgba(13, 167, 216, 0.18);
    box-shadow: var(--sfy-shadow-sm);
}

.survey-panel h3 {
    margin-bottom: 0.8rem;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.survey-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0 1.5rem;
}

.survey-points span {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(13, 167, 216, 0.12);
    color: var(--sfy-primary-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.survey-note {
    margin-top: 0.9rem;
    color: var(--sfy-text-soft);
    font-size: 0.92rem;
}

.floating-survey {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 1.5rem;
    z-index: 40;
    width: min(520px, calc(100vw - 2rem));
    transform: translateX(-50%);
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(13, 167, 216, 0.94), rgba(29, 215, 168, 0.94));
    color: #072033;
    box-shadow: 0 24px 55px rgba(7, 17, 31, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(18px);
}

.floating-survey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.floating-survey-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.floating-survey-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    color: #0a5678;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(10, 86, 120, 0.08);
}

.floating-survey-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    color: #0a5678;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(10, 86, 120, 0.08);
}

.floating-survey-toggle i {
    transition: transform 0.2s ease;
}

.floating-survey-toggle:hover,
.floating-survey-toggle:focus {
    background: #ffffff;
    outline: none;
}

.floating-survey-body {
    margin-top: 0.9rem;
}

.floating-survey .floating-kicker {
    display: inline-flex;
    margin-bottom: 0.65rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(7, 32, 51, 0.74);
}

.floating-survey h3 {
    margin-bottom: 0.5rem;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.floating-survey p {
    margin-bottom: 0.85rem;
    color: rgba(7, 32, 51, 0.84);
    font-size: 0.95rem;
    line-height: 1.45;
}

.floating-survey .survey-points {
    margin: 0 0 1rem;
}

.floating-survey .survey-points span {
    background: rgba(255, 255, 255, 0.82);
    color: #0a5678;
    font-size: 0.82rem;
}

.floating-survey .btn-brand {
    width: 100%;
    justify-content: center;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.92);
    color: #08314a;
}

.floating-survey .btn-brand:hover,
.floating-survey .btn-brand:focus {
    color: #08314a;
    background: #ffffff;
}

.floating-survey .survey-note {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: rgba(7, 32, 51, 0.74);
    font-size: 0.82rem;
}

.quote-card blockquote {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--sfy-text);
}

.contact-panel {
    background:
        linear-gradient(135deg, rgba(13, 167, 216, 0.08), rgba(29, 215, 168, 0.12)),
        var(--sfy-card);
}

.contact-panel form .form-control,
.contact-panel form .form-select {
    border-radius: 16px;
    border: 1px solid rgba(73, 96, 121, 0.18);
    padding: 0.95rem 1rem;
    min-height: 54px;
}

.contact-panel form textarea.form-control {
    min-height: 132px;
}

.form-note {
    margin-top: 0.8rem;
    color: var(--sfy-text-soft);
    font-size: 0.92rem;
}

.footer {
    padding: 2.2rem 0 2.8rem;
    background: #07111f;
    color: rgba(245, 251, 255, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    color: var(--sfy-text-inverse);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.3rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(245, 251, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--sfy-text-inverse);
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero {
        padding: 5.4rem 0 4.2rem;
    }

    .hero-grid,
    .split-panel,
    .signal-strip {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .floating-survey {
        right: 1rem;
        bottom: 1rem;
        width: min(360px, calc(100vw - 2rem));
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 4.3rem 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.9rem;
    }

    .timeline::before {
        left: 0.7rem;
    }

    .timeline-step {
        left: -1.15rem;
    }

    body.has-floating-survey {
        padding-bottom: 5.6rem;
    }

    .floating-survey {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
        padding: 0.8rem;
        border-radius: 22px;
        transform-origin: bottom center;
    }

    .floating-survey-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .floating-survey-body {
        max-height: 55vh;
        overflow: auto;
        transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease, margin-top 0.24s ease;
    }

    .floating-survey.is-collapsed {
        padding: 0.75rem;
    }

    .floating-survey.is-collapsed .floating-survey-body {
        opacity: 0;
        transform: translateY(0.5rem);
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        pointer-events: none;
    }

    .floating-survey.is-collapsed .floating-survey-toggle i {
        transform: rotate(180deg);
    }

    body.has-floating-survey.floating-survey-open {
        padding-bottom: 11.5rem;
    }

    .floating-survey h3 {
        font-size: 1.1rem;
    }

    .floating-survey p {
        font-size: 0.9rem;
    }
}

/* Pesquisa de aderência recolhida por padrão em desktop e mobile */
body.has-floating-survey {
    padding-bottom: 5.4rem;
}

body.has-floating-survey.floating-survey-open {
    padding-bottom: 7rem;
}

.floating-survey-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.floating-survey-body {
    max-height: 62vh;
    overflow: auto;
    transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease, margin-top 0.24s ease;
}

.floating-survey.is-collapsed {
    width: min(680px, calc(100vw - 2rem));
    padding: 0.85rem 1rem;
}

.floating-survey.is-collapsed .floating-survey-body {
    opacity: 0;
    transform: translateY(0.5rem);
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    pointer-events: none;
}

.floating-survey.is-collapsed .floating-survey-title h3 {
    display: none;
}

.floating-survey.is-collapsed .floating-kicker {
    margin-bottom: 0;
}

.floating-survey:not(.is-collapsed) .floating-survey-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 767.98px) {
    body.has-floating-survey {
        padding-bottom: 5.2rem;
    }

    body.has-floating-survey.floating-survey-open {
        padding-bottom: 9rem;
    }

    .floating-survey.is-collapsed {
        width: min(520px, calc(100vw - 2rem));
    }
}

/* Ajustes profissionais de UX, acessibilidade, conversão e SEO técnico */
.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #072033;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--sfy-shadow-md);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid rgba(29, 215, 168, 0.45);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -2.1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(132, 162, 191, 0.22);
    box-shadow: var(--sfy-shadow-md);
    backdrop-filter: blur(18px);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 98px;
    padding: 1.1rem;
    border-radius: 22px;
    color: var(--sfy-text);
    text-decoration: none;
    background: linear-gradient(135deg, rgba(13, 167, 216, 0.08), rgba(29, 215, 168, 0.08));
    border: 1px solid rgba(13, 167, 216, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover,
.trust-item:focus {
    transform: translateY(-2px);
    color: var(--sfy-text);
    border-color: rgba(13, 167, 216, 0.28);
    box-shadow: var(--sfy-shadow-sm);
}

.trust-item strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.trust-item span {
    color: var(--sfy-text-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.2rem 0.1rem;
    color: var(--sfy-text-soft);
    font-size: 0.92rem;
    line-height: 1.4;
}

.consent-check .form-check-input {
    margin-left: 0;
    margin-top: 0.15rem;
    border-color: rgba(73, 96, 121, 0.35);
}

.contact-panel form .form-control:focus,
.contact-panel form .form-select:focus,
.consent-check .form-check-input:focus {
    border-color: rgba(13, 167, 216, 0.55);
    box-shadow: 0 0 0 0.24rem rgba(13, 167, 216, 0.14);
}

.floating-survey {
    width: min(620px, calc(100vw - 2rem));
}

.floating-survey.is-collapsed {
    width: min(760px, calc(100vw - 2rem));
}

.floating-survey.is-collapsed .floating-survey-toggle i {
    transform: none;
}

.floating-survey:not(.is-collapsed) .floating-survey-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: -1.4rem;
    }
}

@media (max-width: 767.98px) {
    .trust-grid {
        padding: 0.7rem;
        border-radius: 24px;
    }

    .trust-item {
        min-height: auto;
        padding: 0.95rem;
    }

    .floating-survey.is-collapsed {
        width: min(620px, calc(100vw - 1.2rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* SportsForYou V2 Premium Comercial */
.brand-mark{width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:var(--sfy-gradient-brand);color:#062033;font-size:.9rem;box-shadow:0 10px 24px rgba(29,215,168,.24)}
.hero-v2 .hero-actions{flex-wrap:wrap}.hero-v2 .glass-panel .mini-title{font-size:1.45rem;color:#fff;margin:.8rem 0 1rem}.trust-grid-four{grid-template-columns:repeat(4,1fr)}
.feature-icon{width:3rem;height:3rem;border-radius:1rem;display:inline-flex;align-items:center;justify-content:center;background:rgba(13,167,216,.1);color:var(--sfy-primary-deep);margin-bottom:1rem;font-size:1.2rem}.persona-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}.persona-card{background:#fff;border:1px solid rgba(13,167,216,.16);border-radius:24px;padding:1.4rem;box-shadow:var(--sfy-shadow-sm)}.persona-card h3{font-weight:800}.persona-card a{font-weight:800;color:var(--sfy-primary-deep);text-decoration:none}.timeline-card{background:#fff;border-radius:26px;padding:1.4rem;box-shadow:var(--sfy-shadow-md);display:grid;gap:1rem}.timeline-card div{display:grid;grid-template-columns:3.2rem 1fr;gap:1rem;align-items:start}.timeline-card strong{width:2.8rem;height:2.8rem;border-radius:999px;background:var(--sfy-gradient-brand);display:inline-flex;align-items:center;justify-content:center;color:#062033}.section-dark{background:var(--sfy-gradient-dark);color:#fff}.section-dark .section-title,.section-dark p{color:#fff}.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.proof-grid div{border:1px solid rgba(255,255,255,.14);border-radius:22px;padding:1.2rem;background:rgba(255,255,255,.06)}.proof-grid strong{display:block;font-size:1.1rem}.proof-grid span{color:rgba(255,255,255,.76)}.split-panel-strong{background:linear-gradient(135deg,#fff,rgba(238,246,251,.96));border:1px solid rgba(13,167,216,.14)}
@media(max-width:991.98px){.trust-grid-four,.persona-grid,.proof-grid{grid-template-columns:1fr 1fr}.hero-actions .btn{width:100%;justify-content:center}.topbar .navbar-nav{padding:1rem 0}.topbar .btn-brand{width:100%;text-align:center}}
@media(max-width:575.98px){.trust-grid-four,.persona-grid,.proof-grid{grid-template-columns:1fr}.hero h1{font-size:2.25rem}.hero{padding-top:4.5rem}.persona-card,.info-card,.timeline-card{border-radius:20px}.timeline-card div{grid-template-columns:2.8rem 1fr}}


/* Navegação superior padronizada */
.topbar .navbar-nav {
    --sfy-nav-radius: 999px;
}

.topbar .nav-link {
    border-radius: var(--sfy-nav-radius);
    padding: .5rem .72rem;
    line-height: 1.1;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.topbar .nav-link:hover,
.topbar .nav-link:focus {
    background: rgba(255, 255, 255, .08);
}

.topbar .nav-link.active {
    background: rgba(29, 215, 168, .16);
    box-shadow: inset 0 0 0 1px rgba(29, 215, 168, .28);
}

.btn-nav-cta {
    white-space: nowrap;
    padding-inline: 1rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .topbar .navbar-brand {
        font-size: 1rem;
    }

    .topbar .nav-link {
        font-size: .86rem;
        padding-inline: .48rem;
    }

    .btn-nav-cta {
        font-size: .86rem;
        padding-inline: .72rem;
    }
}

@media (max-width: 991.98px) {
    .topbar .navbar-collapse {
        margin-top: .75rem;
        padding: .75rem;
        border-radius: 1.25rem;
        background: rgba(7, 17, 31, .94);
        border: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
    }

    .topbar .navbar-nav {
        gap: .25rem;
    }

    .topbar .nav-link {
        padding: .72rem .9rem;
    }

    .topbar .btn-nav-cta {
        margin-top: .5rem;
    }
}


/* === SportsForYou brand identity refinement === */
:root {
    --sfy-brand-navy: #0b2343;
    --sfy-brand-blue: #1098db;
    --sfy-brand-green: #10df94;
    --sfy-brand-orange: #ff9f0a;
    --sfy-brand-white: #ffffff;
}

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(16, 152, 219, 0.14), transparent 26%),
        radial-gradient(circle at 90% 0%, rgba(16, 223, 148, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbfd 0%, #eef5f9 48%, #eaf4f8 100%);
}

.topbar {
    background: linear-gradient(135deg, rgba(7, 17, 31, 0.94) 0%, rgba(8, 25, 43, 0.92) 60%, rgba(10, 45, 61, 0.86) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 28px rgba(3, 13, 24, 0.18);
}

.topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 152, 219, 0.92), rgba(16, 223, 148, 0.88), rgba(255, 159, 10, 0.85));
}

.topbar .nav-link {
    position: relative;
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.topbar .nav-link::after {
    content: "";
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: .32rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green), var(--sfy-brand-orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.topbar .nav-link:hover::after,
.topbar .nav-link:focus::after,
.topbar .nav-link.active::after {
    transform: scaleX(1);
}

.sfy-brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
}

.topbar .navbar-brand.sfy-brand {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.52rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.sfy-brand .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 2.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sfy-brand-blue) 0%, var(--sfy-brand-green) 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 152, 219, .22);
    position: relative;
    overflow: hidden;
}

.sfy-brand .brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.24), transparent 42%);
}

.sfy-brand .brand-mark i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.sfy-brand .brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
}

.sfy-brand .brand-word-sports {
    color: #d9f3ff;
    font-weight: 700;
}

.sfy-brand .brand-word-foryou {
    color: #ffffff;
    font-weight: 800;
}

.sfy-brand .brand-arrow {
    width: 0;
    height: 0;
    margin-left: .34rem;
    border-top: .28rem solid transparent;
    border-bottom: .28rem solid transparent;
    border-left: .48rem solid var(--sfy-brand-orange);
    transform: translateY(-.06rem);
}

.hero {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.16), rgba(7, 17, 31, 0.08)),
        linear-gradient(135deg, rgba(7, 17, 31, 0.98) 0%, rgba(11, 35, 67, 0.92) 42%, rgba(10, 152, 219, 0.18) 68%, rgba(16, 223, 148, 0.18) 100%),
        var(--sfy-gradient-dark);
}

.eyebrow,
.section-kicker,
.floating-survey .floating-kicker {
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-kicker,
.section-dark .section-kicker,
.floating-survey .floating-kicker {
    color: var(--sfy-brand-orange);
}

.btn-brand {
    color: #08233a;
    background: linear-gradient(90deg, var(--sfy-brand-blue) 0%, #18c0c1 45%, var(--sfy-brand-green) 100%);
    box-shadow: 0 18px 34px rgba(16, 152, 219, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
    box-shadow: 0 20px 38px rgba(16, 152, 219, 0.28);
}

.btn-outline-brand {
    border-color: rgba(255,255,255,.34);
}

.btn-soft {
    background: rgba(16, 152, 219, .08);
    border-color: rgba(16, 152, 219, .16);
    color: var(--sfy-brand-navy);
}

.trust-item,
.info-card,
.persona-card,
.timeline-card,
.contact-panel,
.split-panel,
.glass-panel,
.section-muted .persona-card,
.proof-grid div,
.contact-panel,
.section .metric-card {
    position: relative;
    overflow: hidden;
}

.trust-item::before,
.info-card::before,
.persona-card::before,
.timeline-card::before,
.contact-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green), var(--sfy-brand-orange));
}

.feature-icon,
.timeline-card strong {
    background: linear-gradient(135deg, rgba(16, 152, 219, .16) 0%, rgba(16, 223, 148, .16) 100%);
    color: var(--sfy-brand-navy);
}

.contact-panel {
    border: 1px solid rgba(16, 152, 219, .14);
    box-shadow: 0 22px 42px rgba(6, 27, 46, .10);
}

.form-control,
.form-select {
    border-radius: 18px;
    border-color: rgba(16, 152, 219, .16);
    min-height: 3.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(16, 152, 219, .52);
    box-shadow: 0 0 0 .25rem rgba(16, 152, 219, .12);
}

textarea.form-control {
    min-height: 10rem;
}

.floating-survey {
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(135deg, rgba(16, 152, 219, .95) 0%, rgba(77, 194, 200, .95) 46%, rgba(107, 210, 159, .95) 100%);
    box-shadow: 0 22px 54px rgba(3, 17, 28, .24);
}

.floating-survey .btn-brand {
    background: #fff;
    color: var(--sfy-brand-navy);
    box-shadow: none;
}

.floating-survey .btn-brand:hover,
.floating-survey .btn-brand:focus {
    color: var(--sfy-brand-navy);
    background: rgba(255,255,255,.94);
}

.floating-survey-toggle {
    background: rgba(255,255,255,.92);
    color: var(--sfy-brand-navy);
}

.footer {
    background: linear-gradient(180deg, #06111e 0%, #09192a 100%);
    color: rgba(245, 251, 255, 0.84);
}

.footer::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green), var(--sfy-brand-orange));
}

.footer-brand.sfy-brand {
    font-size: 1.55rem;
    color: #fff;
}

.footer-links a:hover,
.footer-links a:focus,
.contact-panel a:hover,
.contact-panel a:focus {
    color: var(--sfy-brand-green);
}

@media (max-width: 991.98px) {
    .topbar .nav-link::after {
        left: 0;
        right: auto;
        width: 2.2rem;
        bottom: .1rem;
    }

    .topbar .navbar-brand.sfy-brand {
        font-size: 1.28rem;
    }

    .sfy-brand .brand-mark {
        width: 2.35rem;
        height: 2.35rem;
        flex-basis: 2.35rem;
    }
}

@media (max-width: 575.98px) {
    .topbar .navbar-brand.sfy-brand {
        font-size: 1.06rem;
    }

    .sfy-brand {
        gap: .55rem;
    }

    .sfy-brand .brand-arrow {
        border-top-width: .22rem;
        border-bottom-width: .22rem;
        border-left-width: .4rem;
        margin-left: .24rem;
    }
}


/* === SportsForYou V3 UX + Conteúdo === */
.hero-v3 .hero-grid,
.hero-sub .hero-grid {
    gap: 3rem;
}

.hero-v3 h1 {
    max-width: 900px;
}

.hero-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 12rem));
    align-items: stretch;
}

.hero-actions-grid .btn {
    justify-content: center;
}

.hero-brand-card {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 32px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
    box-shadow: 0 26px 58px rgba(0,0,0,.16);
    backdrop-filter: blur(18px);
}

.hero-brand-card h2 {
    margin-top: 1.3rem;
    margin-bottom: .7rem;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: -.04em;
}

.hero-brand-card p {
    color: rgba(245, 251, 255, .82);
}

.hero-brand-lockup {
    font-size: 1.9rem;
}

.hero-brand-list {
    display: grid;
    gap: .7rem;
    margin-top: 1.25rem;
}

.hero-brand-list span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(245, 251, 255, .88);
    font-weight: 700;
}

.hero-brand-list i {
    color: var(--sfy-brand-green);
}

.section-tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.profile-gateway,
.steps-grid,
.faq-grid,
.card-grid-3 {
    display: grid;
    gap: 1rem;
}

.profile-gateway {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -4.2rem;
    position: relative;
    z-index: 3;
}

.gateway-card,
.step-card,
.faq-grid details,
.cta-box {
    background: #fff;
    border: 1px solid rgba(16, 152, 219, .14);
    border-radius: 26px;
    padding: 1.35rem;
    box-shadow: var(--sfy-shadow-sm);
}

.gateway-card {
    display: block;
    color: var(--sfy-text);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gateway-card:hover,
.gateway-card:focus {
    transform: translateY(-3px);
    box-shadow: var(--sfy-shadow-md);
    color: var(--sfy-text);
}

.gateway-card span {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(16, 152, 219, .14), rgba(16, 223, 148, .14));
    color: var(--sfy-brand-navy);
}

.gateway-card h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.gateway-card p {
    color: var(--sfy-text-soft);
    margin-bottom: 0;
}

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

.step-card strong {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--sfy-brand-blue), var(--sfy-brand-green));
    color: #08233a;
    font-weight: 900;
}

.step-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
}

.step-card p {
    color: var(--sfy-text-soft);
    margin-bottom: 0;
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.faq-grid details {
    padding: 0;
    overflow: hidden;
}

.faq-grid summary {
    cursor: pointer;
    padding: 1.25rem 1.35rem;
    font-weight: 800;
    color: var(--sfy-brand-navy);
}

.faq-grid details[open] summary {
    border-bottom: 1px solid rgba(16, 152, 219, .12);
}

.faq-grid p {
    padding: 1rem 1.35rem 1.35rem;
    margin: 0;
    color: var(--sfy-text-soft);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,251,.96));
}

.cta-box h3 {
    font-weight: 800;
    letter-spacing: -.03em;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
    gap: 2rem;
    align-items: start;
}

.footer-cta {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 1rem;
    background: rgba(255,255,255,.05);
}

.footer-cta strong,
.footer-cta span,
.footer-cta a {
    display: block;
}

.footer-cta strong {
    color: #fff;
    margin-bottom: .3rem;
}

.footer-cta span {
    color: rgba(245, 251, 255, .7);
    margin-bottom: .8rem;
}

.footer-cta a {
    color: var(--sfy-brand-green);
    font-weight: 800;
    text-decoration: none;
}

.timeline-card-v3 {
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .profile-gateway,
    .steps-grid,
    .proof-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 767.98px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 4.5rem;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
        line-height: 1.02;
    }

    .hero p {
        font-size: 1rem;
    }

    .profile-gateway,
    .steps-grid,
    .faq-grid,
    .proof-grid-four,
    .hero-actions-grid {
        grid-template-columns: 1fr;
    }

    .profile-gateway {
        margin-top: -3rem;
    }

    .hero-brand-card {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .floating-survey.is-collapsed {
        width: min(92vw, 28rem);
    }

    .floating-survey.is-collapsed .floating-survey-title h3 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .gateway-card,
    .step-card,
    .faq-grid summary,
    .faq-grid p,
    .cta-box {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    textarea.form-control {
        min-height: 7.5rem;
    }
}


/* === SportsForYou V3.1 - Mobile First Refinements === */

/* Base safety */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

.sfy-page {
    width: 100%;
    overflow-x: clip;
}

/* Better touch targets */
.btn,
.nav-link,
.gateway-card,
.floating-survey-toggle,
.footer-links a {
    min-height: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Navbar mobile first */
.topbar {
    position: sticky;
}

.topbar .container {
    min-height: 4.25rem;
}

.navbar-collapse {
    padding-top: .75rem;
    padding-bottom: .95rem;
}

.topbar .navbar-nav {
    gap: .15rem;
}

.topbar .nav-link {
    width: 100%;
    border-radius: 14px;
    padding: .85rem 1rem;
}

.topbar .nav-link:hover,
.topbar .nav-link:focus,
.topbar .nav-link.active {
    background: rgba(255, 255, 255, .08);
}

.topbar .nav-link::after {
    display: none;
}

.btn-nav-cta {
    width: 100%;
    margin-top: .65rem;
    padding-top: .9rem;
    padding-bottom: .9rem;
}

/* Mobile hero */
.hero {
    padding: 3.25rem 0 4rem;
}

.hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

.hero h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.hero p {
    font-size: 1rem;
    line-height: 1.65;
}

.eyebrow {
    max-width: 100%;
    font-size: .78rem;
    line-height: 1.25;
    padding: .42rem .72rem;
}

.hero-actions,
.hero-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    width: 100%;
}

.hero-actions .btn,
.hero-actions-grid .btn {
    width: 100%;
}

.hero-tags {
    gap: .45rem;
}

.hero-tag {
    font-size: .82rem;
    padding: .42rem .68rem;
}

.hero-brand-card {
    margin-top: .6rem;
    padding: 1.15rem;
    border-radius: 22px;
}

.hero-brand-lockup {
    font-size: 1.35rem;
}

.hero-brand-card h2 {
    font-size: 1.35rem;
}

.hero-brand-list {
    gap: .55rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 1.55rem;
}

.section-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.08;
}

.section-header p {
    font-size: .98rem;
    line-height: 1.65;
}

.section-tight {
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
}

/* Cards/mobile layout */
.profile-gateway {
    grid-template-columns: 1fr;
    margin-top: -2.4rem;
    gap: .8rem;
}

.gateway-card,
.step-card,
.info-card,
.persona-card,
.faq-grid details,
.cta-box,
.contact-panel,
.split-panel,
.hero-brand-card {
    border-radius: 22px;
}

.gateway-card,
.step-card,
.info-card,
.persona-card,
.cta-box {
    padding: 1.1rem;
}

.gateway-card {
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: .85rem;
    align-items: center;
}

.gateway-card span {
    margin-bottom: 0;
}

.gateway-card h2 {
    margin-bottom: .2rem;
}

.gateway-card p {
    grid-column: 2;
    font-size: .92rem;
}

.steps-grid,
.card-grid-3,
.faq-grid,
.proof-grid,
.proof-grid-four,
.persona-grid {
    grid-template-columns: 1fr;
}

.step-card strong {
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: .75rem;
}

.proof-grid div {
    padding: 1rem;
}

/* Split/contact */
.split-panel,
.split-panel-strong {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.15rem;
    border-radius: 24px;
}

.contact-list {
    padding-left: 1.1rem;
}

.contact-panel {
    padding: 1.15rem;
}

.form-control,
.form-select {
    min-height: 3.35rem;
    border-radius: 16px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 7.5rem;
}

.consent-check {
    align-items: flex-start;
    gap: .55rem;
}

.consent-check .form-check-input {
    margin-top: .22rem;
}

/* FAQ */
.faq-grid summary {
    padding: 1rem 1.1rem;
    line-height: 1.35;
}

.faq-grid p {
    padding: .85rem 1.1rem 1.1rem;
}

/* Floating survey mobile */
body.has-floating-survey {
    padding-bottom: 5.75rem;
}

body.has-floating-survey.floating-survey-open {
    padding-bottom: 18rem;
}

.floating-survey {
    left: 50%;
    right: auto;
    bottom: .85rem;
    width: min(92vw, 27rem);
    max-height: calc(100dvh - 1.7rem);
    overflow: auto;
    transform: translateX(-50%);
    border-radius: 24px;
}

.floating-survey.is-collapsed {
    width: min(92vw, 27rem);
}

.floating-survey-header {
    gap: .75rem;
    padding: .75rem;
}

.floating-survey-title {
    min-width: 0;
}

.floating-survey-icon {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 2.65rem;
}

.floating-survey .floating-kicker {
    font-size: .72rem;
    letter-spacing: .08em;
    white-space: nowrap;
}

.floating-survey h3 {
    font-size: 1rem;
    line-height: 1.1;
}

.floating-survey.is-collapsed .floating-survey-title h3 {
    display: none;
}

.floating-survey-toggle {
    width: 2.9rem;
    height: 2.9rem;
    flex: 0 0 2.9rem;
}

.floating-survey-body {
    padding: 0 .95rem 1rem;
}

.floating-survey .btn-brand {
    width: 100%;
}

/* Footer */
.footer {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem .8rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
}

/* Tablet */
@media (min-width: 576px) {
    .hero-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gateway-card {
        display: block;
    }

    .gateway-card span {
        margin-bottom: 1rem;
    }

    .gateway-card p {
        grid-column: auto;
    }

    .steps-grid,
    .card-grid-3,
    .faq-grid,
    .proof-grid-four,
    .persona-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        padding-top: 0;
        padding-bottom: 0;
    }

    .topbar .nav-link {
        width: auto;
        background: transparent;
        padding: .85rem .65rem;
    }

    .topbar .nav-link:hover,
    .topbar .nav-link:focus,
    .topbar .nav-link.active {
        background: transparent;
    }

    .topbar .nav-link::after {
        display: block;
    }

    .btn-nav-cta {
        width: auto;
        margin-top: 0;
    }

    .hero {
        padding: 6.2rem 0 5.2rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        gap: 2.7rem;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 4.2vw, 4.7rem);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        width: auto;
    }

    .hero-actions-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 12rem));
        width: auto;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-brand-card {
        padding: 2rem;
        border-radius: 32px;
    }

    .section {
        padding: 5.25rem 0;
    }

    .section-tight {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .profile-gateway {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: -4.2rem;
        gap: 1rem;
    }

    .steps-grid,
    .proof-grid-four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .persona-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .split-panel,
    .split-panel-strong {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
        gap: 2rem;
        padding: 2rem;
        border-radius: 32px;
    }

    .contact-panel {
        padding: 1.5rem;
    }

    body.has-floating-survey {
        padding-bottom: 7rem;
    }

    body.has-floating-survey.floating-survey-open {
        padding-bottom: 7rem;
    }

    .floating-survey,
    .floating-survey.is-collapsed {
        width: min(56rem, calc(100vw - 2rem));
        left: 50%;
        bottom: 1rem;
        transform: translateX(-50%);
    }

    .floating-survey.is-collapsed .floating-survey-title h3 {
        display: block;
    }

    .floating-survey-body {
        padding: 0 1.6rem 1.4rem;
    }

    .floating-survey .btn-brand {
        width: auto;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
        gap: 2rem;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .topbar .nav-link {
        padding-left: .8rem;
        padding-right: .8rem;
    }
}


/* === SportsForYou V4 - Corporate refinement === */
:root {
    --sfy-bg: #061525;
    --sfy-surface: rgba(7, 23, 39, 0.92);
    --sfy-surface-strong: #0b2238;
    --sfy-surface-soft: #f5f8fb;
    --sfy-card-alt: #eef5f8;
    --sfy-text: #102235;
    --sfy-text-soft: #52677d;
    --sfy-primary: #008fc7;
    --sfy-primary-deep: #075f86;
    --sfy-secondary: #00bfa6;
    --sfy-highlight: #f28c28;
    --sfy-brand-navy: #082642;
    --sfy-brand-blue: #008fc7;
    --sfy-brand-green: #00bfa6;
    --sfy-brand-orange: #f28c28;
    --sfy-gradient-brand: linear-gradient(90deg, #008fc7 0%, #00bfa6 100%);
    --sfy-gradient-dark: linear-gradient(135deg, #061525 0%, #082642 52%, #0d415a 100%);
    --sfy-shadow-lg: 0 28px 64px rgba(5, 21, 37, 0.18);
    --sfy-shadow-md: 0 16px 38px rgba(5, 21, 37, 0.12);
    --sfy-shadow-sm: 0 8px 20px rgba(5, 21, 37, 0.08);
}

body {
    color: var(--sfy-text);
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 143, 199, 0.10), transparent 28%),
        radial-gradient(circle at 88% 4%, rgba(0, 191, 166, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbfd 0%, #f1f6f9 48%, #edf4f7 100%);
}

.topbar {
    background: linear-gradient(135deg, rgba(6, 21, 37, 0.97) 0%, rgba(8, 38, 66, 0.96) 100%);
    box-shadow: 0 10px 30px rgba(4, 16, 29, 0.20);
}

.topbar::after,
.trust-item::before,
.info-card::before,
.persona-card::before,
.timeline-card::before,
.contact-panel::before,
.footer::before {
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green), var(--sfy-brand-orange));
}

.sfy-brand .brand-mark,
.step-card strong,
.timeline-card strong {
    background: linear-gradient(135deg, #008fc7 0%, #00bfa6 100%);
}

.sfy-brand .brand-word-sports { color: #d7edf7; }
.sfy-brand .brand-word-foryou { color: #ffffff; }
.sfy-brand .brand-arrow { border-left-color: var(--sfy-brand-orange); }

.hero-corporate,
.hero {
    background:
        linear-gradient(135deg, rgba(6, 21, 37, .98) 0%, rgba(8, 38, 66, .96) 52%, rgba(5, 75, 95, .92) 100%);
}

.hero::before { background: radial-gradient(circle, rgba(0, 191, 166, 0.18), transparent 68%); }
.hero::after { background: radial-gradient(circle, rgba(0, 143, 199, 0.20), transparent 70%); }

.hero h1,
.section-title,
.hero-brand-card h2,
.cta-box h3,
.footer-brand {
    letter-spacing: -0.048em;
}

.hero p,
.section-header p,
.info-card p,
.step-card p,
.gateway-card p,
.faq-grid p {
    color: var(--sfy-text-soft);
}

.hero p,
.hero-brand-card p,
.hero-brand-list span,
.section-dark p,
.section-dark .proof-grid span {
    color: rgba(245, 251, 255, .80);
}

.eyebrow {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: rgba(245,251,255,.88);
}

.section-kicker,
.section-dark .section-kicker,
.floating-survey .floating-kicker {
    color: var(--sfy-brand-orange);
}

.btn-brand {
    background: linear-gradient(90deg, #008fc7 0%, #00bfa6 100%);
    color: #062338;
    box-shadow: 0 16px 32px rgba(0, 143, 199, 0.22);
}

.btn-brand:hover,
.btn-brand:focus { color: #062338; box-shadow: 0 18px 36px rgba(0, 143, 199, 0.28); }

.btn-outline-brand {
    border-color: rgba(255,255,255,.32);
    color: rgba(255,255,255,.92);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: rgba(255,255,255,.10);
    color: #fff;
}

.gateway-card,
.step-card,
.info-card,
.persona-card,
.faq-grid details,
.cta-box,
.contact-panel,
.split-panel,
.hero-brand-card {
    border-color: rgba(8, 38, 66, .10);
}

.gateway-card:hover,
.gateway-card:focus {
    border-color: rgba(0,143,199,.28);
}

.feature-icon,
.gateway-card span {
    background: linear-gradient(135deg, rgba(0,143,199,.12), rgba(0,191,166,.10));
    color: var(--sfy-brand-navy);
}

.section-muted {
    background: linear-gradient(180deg, #f3f8fb 0%, #eaf3f6 100%);
}

.section-dark {
    background: linear-gradient(135deg, #061525 0%, #082642 54%, #0d415a 100%);
}

.hero-brand-card {
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
    border-color: rgba(255,255,255,.14);
}

.contact-panel,
.cta-box,
.split-panel-strong {
    background: linear-gradient(135deg, #ffffff 0%, #f6fafc 100%);
}

.form-control,
.form-select {
    border-color: rgba(8,38,66,.14);
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(0,143,199,.52);
    box-shadow: 0 0 0 .25rem rgba(0,143,199,.11);
}

.floating-survey {
    background: linear-gradient(135deg, rgba(8,38,66,.98) 0%, rgba(0,143,199,.96) 54%, rgba(0,191,166,.92) 100%);
    color: #fff;
}

.floating-survey p { color: rgba(255,255,255,.82); }
.floating-survey .survey-points span { background: rgba(255,255,255,.14); color: rgba(255,255,255,.92); }
.floating-survey .btn-brand { background: #fff; color: var(--sfy-brand-navy); }

.footer {
    background: linear-gradient(180deg, #061525 0%, #071d31 100%);
}

.footer-links a,
.footer p { color: rgba(245,251,255,.72); }
.footer-links a:hover,
.footer-links a:focus,
.footer-cta a { color: #7ce6d7; }

@media (max-width: 767.98px) {
    .hero h1 { letter-spacing: -0.052em; }
    .hero-tags { margin-top: 1rem; }
    .hero-tag { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.13); }
}


/* === SportsForYou V4.1 - Ajuste fino corporativo === */
:root {
    --sfy-corp-navy-950: #061525;
    --sfy-corp-navy-900: #0a1d32;
    --sfy-corp-navy-800: #102a45;
    --sfy-corp-blue: #0b8fc6;
    --sfy-corp-green: #19c69a;
    --sfy-corp-orange: #f59e0b;
    --sfy-corp-text: #172436;
    --sfy-corp-muted: #526579;
    --sfy-corp-border: rgba(16, 42, 69, .12);
    --sfy-corp-shadow: 0 18px 42px rgba(6, 21, 37, .10);
}

body {
    color: var(--sfy-corp-text);
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 143, 198, .08), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(25, 198, 154, .07), transparent 24%),
        linear-gradient(180deg, #f8fbfd 0%, #eef5f8 52%, #f7fafc 100%);
}

.topbar {
    background: rgba(6, 21, 37, .96);
    box-shadow: 0 10px 28px rgba(6, 21, 37, .18);
}

.topbar::after,
.trust-item::before,
.info-card::before,
.persona-card::before,
.timeline-card::before,
.contact-panel::before,
.gateway-card::before,
.step-card::before {
    background: linear-gradient(90deg, var(--sfy-corp-blue), var(--sfy-corp-green), var(--sfy-corp-orange));
}

.hero {
    background:
        radial-gradient(circle at 82% 12%, rgba(25, 198, 154, .16), transparent 28%),
        radial-gradient(circle at 12% 12%, rgba(11, 143, 198, .14), transparent 25%),
        linear-gradient(135deg, #061525 0%, #0a1d32 58%, #102a45 100%);
}

.hero::before,
.hero::after {
    opacity: .72;
}

.hero h1 {
    color: #ffffff;
    letter-spacing: -.058em;
}

.hero p {
    color: rgba(247, 251, 255, .86);
}

.eyebrow {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    color: rgba(247, 251, 255, .92);
}

.section-title {
    color: var(--sfy-corp-navy-900);
}

.section-dark .section-title,
.section-dark p {
    color: #ffffff;
}

.section-header p,
.info-card p,
.step-card p,
.gateway-card p,
.faq-grid p,
.contact-list,
.footer p {
    color: var(--sfy-corp-muted);
}

.section-dark {
    background:
        radial-gradient(circle at 85% 10%, rgba(25,198,154,.12), transparent 30%),
        linear-gradient(135deg, #061525 0%, #0a1d32 58%, #102a45 100%);
}

.btn-brand {
    color: #061525;
    background: linear-gradient(90deg, #13a0d6 0%, #19c6b0 55%, #37d28f 100%);
    box-shadow: 0 16px 30px rgba(11, 143, 198, .20);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #061525;
    box-shadow: 0 18px 34px rgba(11, 143, 198, .26);
}

.btn-outline-brand {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .30);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: rgba(255, 255, 255, .10);
}

.gateway-card,
.step-card,
.info-card,
.persona-card,
.faq-grid details,
.cta-box,
.contact-panel,
.split-panel,
.hero-brand-card,
.timeline-card,
.proof-grid div {
    border-color: var(--sfy-corp-border);
    box-shadow: 0 14px 34px rgba(6, 21, 37, .075);
}

.gateway-card,
.step-card,
.info-card,
.persona-card,
.faq-grid details,
.cta-box,
.contact-panel {
    background: rgba(255, 255, 255, .96);
}

.gateway-card:hover,
.gateway-card:focus,
.info-card:hover,
.persona-card:hover {
    box-shadow: var(--sfy-corp-shadow);
}

.feature-icon,
.gateway-card span,
.step-card strong,
.timeline-card strong {
    background: linear-gradient(135deg, rgba(11, 143, 198, .12), rgba(25, 198, 154, .12));
    color: var(--sfy-corp-navy-900);
}

.info-card h3,
.gateway-card h2,
.step-card h3,
.faq-grid summary,
.contact-panel h3,
.cta-box h3 {
    color: var(--sfy-corp-navy-900);
}

.hero-brand-card {
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
    border-color: rgba(255,255,255,.14);
}

.hero-brand-card h2 {
    color: #ffffff;
}

.hero-brand-card p {
    color: rgba(247, 251, 255, .82);
}

.hero-brand-list span {
    color: rgba(247, 251, 255, .86);
}

.hero-brand-list i {
    color: #35d69f;
}

.form-control,
.form-select {
    border-color: rgba(16, 42, 69, .14);
    background-color: #ffffff;
}

.form-control::placeholder,
.form-select {
    color: #6b7d90;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(11, 143, 198, .46);
    box-shadow: 0 0 0 .25rem rgba(11, 143, 198, .10);
}

.contact-panel {
    background: #ffffff;
}

.form-note {
    color: var(--sfy-corp-muted);
}

.floating-survey {
    background: linear-gradient(135deg, #0b8fc6 0%, #16b7b1 48%, #19c69a 100%);
    border-color: rgba(255,255,255,.18);
}

.floating-survey.is-collapsed {
    background: #ffffff;
    color: var(--sfy-corp-navy-900);
    border-color: rgba(16, 42, 69, .12);
    box-shadow: 0 16px 36px rgba(6, 21, 37, .16);
}

.floating-survey.is-collapsed .floating-kicker,
.floating-survey.is-collapsed h3 {
    color: var(--sfy-corp-navy-900);
}

.floating-survey.is-collapsed .floating-survey-icon {
    background: linear-gradient(135deg, rgba(11,143,198,.12), rgba(25,198,154,.14));
    color: var(--sfy-corp-navy-900);
}

.floating-survey .btn-brand {
    background: #ffffff;
    color: var(--sfy-corp-navy-900);
}

.footer {
    background: linear-gradient(180deg, #061525 0%, #081a2c 100%);
}

.footer p,
.footer-cta span {
    color: rgba(247, 251, 255, .68);
}

.footer-cta {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
}

.footer-meta {
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.25rem;
    color: rgba(247, 251, 255, .58);
    font-size: .92rem;
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 3rem;
    }

    .hero h1 {
        letter-spacing: -.052em;
    }

    .section-title {
        letter-spacing: -.044em;
    }

    .footer-meta {
        display: grid;
        gap: .45rem;
    }
}


/* === SportsForYou V4.2 - Produto real / screenshots === */
.product-preview-grid,
.product-gallery-grid {
    display: grid;
    gap: 1rem;
}

.product-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-card,
.shot-card,
.product-summary-card {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(16, 42, 69, .12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(6, 21, 37, .075);
}

.product-card:hover,
.product-card:focus-within,
.shot-card:hover,
.shot-card:focus-within {
    box-shadow: 0 18px 42px rgba(6, 21, 37, .11);
}

.product-card a,
.shot-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.product-media,
.shot-media {
    position: relative;
    background: linear-gradient(180deg, #f4f8fb 0%, #ebf2f6 100%);
    border-bottom: 1px solid rgba(16, 42, 69, .08);
}

.product-media img,
.shot-media img {
    width: 100%;
    height: auto;
    display: block;
}

.product-body,
.shot-body,
.product-summary-card {
    padding: 1.15rem;
}

.product-body h3,
.shot-body h3 {
    margin-bottom: .45rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--sfy-corp-navy-900);
}

.product-body p,
.shot-body p,
.product-summary-card p {
    margin-bottom: 0;
    color: var(--sfy-corp-muted);
}

.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.product-summary-card strong {
    display: block;
    margin-bottom: .3rem;
    color: var(--sfy-corp-navy-900);
    font-size: 1.02rem;
}

.product-summary-card span {
    color: var(--sfy-corp-muted);
    font-size: .96rem;
}

.product-page-intro {
    max-width: 56rem;
}

.product-note {
    color: var(--sfy-corp-muted);
    font-size: .95rem;
}

@media (max-width: 991.98px) {
    .product-preview-grid {
        grid-template-columns: 1fr;
    }

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

    .product-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .product-summary-grid {
        grid-template-columns: 1fr;
    }

    .product-body,
    .shot-body,
    .product-summary-card {
        padding: 1rem;
    }
}


/* === SportsForYou V4.3 - Galeria com modal === */
.shot-trigger {
    appearance: none;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: left;
    background: transparent;
    display: block;
    cursor: zoom-in;
}

.shot-trigger:focus-visible {
    outline: 3px solid rgba(11, 143, 198, .35);
    outline-offset: 3px;
    border-radius: 24px;
}

.shot-card .shot-body h3::after {
    content: "Ampliar";
    float: right;
    font-size: .82rem;
    font-weight: 700;
    color: var(--sfy-corp-blue);
}

.shot-media {
    overflow: hidden;
}

.shot-media img {
    transition: transform .22s ease;
}

.shot-trigger:hover .shot-media img,
.shot-trigger:focus-visible .shot-media img {
    transform: scale(1.015);
}

.product-modal-content {
    border: 1px solid rgba(16, 42, 69, .12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(6, 21, 37, .18);
}

.product-modal-header {
    border-bottom: 1px solid rgba(16, 42, 69, .08);
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.product-modal-kicker {
    display: inline-block;
    margin-bottom: .2rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sfy-corp-blue);
}

.product-modal-body {
    padding: 1rem;
    background: #f3f7fa;
}

.product-modal-frame {
    background: #fff;
    border: 1px solid rgba(16, 42, 69, .08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.product-modal-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.product-modal-caption {
    margin-top: .9rem;
    color: var(--sfy-corp-muted);
    font-size: .98rem;
}

@media (max-width: 991.98px) {
    .shot-card .shot-body h3::after {
        display: none;
    }
    .product-modal-content {
        border-radius: 0;
    }
}


/* === SportsForYou V5 - Startup Growth Landing === */
:root {
    --sfy-growth-navy: #061525;
    --sfy-growth-blue: #0b8fc6;
    --sfy-growth-green: #19c69a;
    --sfy-growth-orange: #f59e0b;
    --sfy-growth-surface: #ffffff;
    --sfy-growth-muted: #526579;
    --sfy-growth-border: rgba(16, 42, 69, .12);
}

.growth-hero-note {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.1rem;
    color: rgba(247, 251, 255, .78);
    font-weight: 700;
}

.growth-hero-note i {
    color: var(--sfy-growth-orange);
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.growth-metric {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.06);
}

.growth-metric strong {
    display: block;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.growth-metric span {
    display: block;
    margin-top: .35rem;
    color: rgba(247,251,255,.72);
    font-size: .92rem;
}

.story-grid,
.model-grid,
.validation-grid,
.partner-grid,
.module-grid,
.audience-flow-grid {
    display: grid;
    gap: 1rem;
}

.story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.model-card,
.validation-card,
.partner-card,
.module-card,
.audience-flow-card,
.founder-card {
    position: relative;
    overflow: hidden;
    padding: 1.3rem;
    border: 1px solid var(--sfy-growth-border);
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 14px 34px rgba(6, 21, 37, .075);
}

.story-card::before,
.model-card::before,
.validation-card::before,
.partner-card::before,
.module-card::before,
.audience-flow-card::before,
.founder-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--sfy-growth-blue), var(--sfy-growth-green), var(--sfy-growth-orange));
}

.story-card span,
.model-card span,
.validation-card span,
.partner-card span,
.module-card span,
.audience-flow-card span {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(11,143,198,.12), rgba(25,198,154,.12));
    color: var(--sfy-growth-navy);
}

.story-card h3,
.model-card h3,
.validation-card h3,
.partner-card h3,
.module-card h3,
.audience-flow-card h3,
.founder-card h3 {
    font-size: 1.13rem;
    font-weight: 850;
    color: var(--sfy-growth-navy);
}

.story-card p,
.model-card p,
.validation-card p,
.partner-card p,
.module-card p,
.audience-flow-card p,
.founder-card p {
    color: var(--sfy-growth-muted);
    margin-bottom: 0;
}

.startup-band {
    border-radius: 34px;
    padding: 2rem;
    background:
        radial-gradient(circle at 88% 15%, rgba(25,198,154,.18), transparent 28%),
        linear-gradient(135deg, #061525 0%, #0a1d32 58%, #102a45 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(6,21,37,.16);
}

.startup-band .section-title,
.startup-band p {
    color: #fff;
}

.startup-band p {
    opacity: .82;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
    gap: 1.25rem;
    align-items: stretch;
}

.founder-card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}

.founder-card h3 {
    color: #fff;
}

.founder-card p {
    color: rgba(247,251,255,.72);
}

.founder-list {
    display: grid;
    gap: .7rem;
    padding: 0;
    margin: 1.1rem 0 0;
    list-style: none;
}

.founder-list li {
    display: flex;
    gap: .6rem;
    color: rgba(247,251,255,.82);
}

.founder-list i {
    color: var(--sfy-growth-green);
    margin-top: .2rem;
}

.model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.validation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-module-caption {
    margin-top: .75rem;
    color: var(--sfy-growth-muted);
    font-size: .95rem;
}

.growth-form-note {
    margin-top: 1rem;
    padding: .85rem 1rem;
    border-radius: 18px;
    background: rgba(11,143,198,.08);
    color: var(--sfy-growth-navy);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .growth-metrics,
    .story-grid,
    .model-grid,
    .validation-grid,
    .partner-grid,
    .module-grid,
    .audience-flow-grid,
    .founder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .growth-metrics,
    .story-grid,
    .model-grid,
    .validation-grid,
    .partner-grid,
    .module-grid,
    .audience-flow-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .growth-metric strong {
        font-size: 1.35rem;
    }

    .startup-band {
        padding: 1.2rem;
        border-radius: 26px;
    }

    .story-card,
    .model-card,
    .validation-card,
    .partner-card,
    .module-card,
    .audience-flow-card,
    .founder-card {
        padding: 1.08rem;
        border-radius: 22px;
    }
}


/* === SportsForYou V5.1 - Footer otimizado === */
.footer {
    padding: 0 0 1.25rem;
    background:
        radial-gradient(circle at 16% 18%, rgba(14, 149, 214, 0.15), transparent 26%),
        radial-gradient(circle at 88% 22%, rgba(245, 158, 11, 0.11), transparent 24%),
        linear-gradient(180deg, #06111e 0%, #071523 42%, #08192a 100%);
    color: rgba(245, 251, 255, 0.86);
}

.footer::before {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green), var(--sfy-brand-orange));
}

.footer .container {
    padding-top: 2rem;
}

.footer-shell {
    display: grid;
    gap: 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.62fr) minmax(180px, 0.68fr) minmax(260px, 0.95fr);
    gap: 1.25rem;
    align-items: start;
}

.footer-brand-block p {
    margin: 0.95rem 0 0;
    max-width: 38rem;
    color: rgba(245, 251, 255, 0.72);
    line-height: 1.65;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(245,251,255,0.84);
    font-size: 0.84rem;
    font-weight: 700;
}

.footer-col h3,
.footer-card h3 {
    margin: 0 0 0.85rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-list {
    display: grid;
    gap: 0.62rem;
}

.footer-list a,
.footer-email {
    color: rgba(245, 251, 255, 0.74);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-list a:hover,
.footer-list a:focus,
.footer-email:hover,
.footer-email:focus {
    color: var(--sfy-brand-green);
}

.footer-card {
    padding: 1.15rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.11);
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.footer-card p {
    margin: 0 0 0.9rem;
    color: rgba(245, 251, 255, 0.76);
    line-height: 1.6;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sfy-brand-blue), var(--sfy-brand-green));
    color: var(--sfy-brand-navy);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-button:hover,
.footer-button:focus {
    color: var(--sfy-brand-navy);
    filter: brightness(1.02);
}

.footer-email {
    display: inline-block;
    margin-top: 0.85rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: rgba(245, 251, 255, 0.62);
    font-size: 0.92rem;
}

.footer-meta-line span + span::before {
    content: "•";
    margin-right: 1rem;
    color: rgba(245, 251, 255, 0.34);
}

.footer-meta-end {
    justify-content: flex-end;
}

@media (max-width: 1199.98px) {
    .footer-top {
        grid-template-columns: minmax(0, 1fr) repeat(2, minmax(160px, 0.7fr));
    }

    .footer-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .footer .container {
        padding-top: 1.55rem;
    }

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

    .footer-card {
        grid-column: auto;
    }

    .footer-bottom,
    .footer-meta-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta-line span + span::before {
        content: none;
        margin-right: 0;
    }
}


/* === SportsForYou V5.2 - Otimização do painel de pesquisa === */
@media (min-width: 768px) {
    .floating-survey,
    .floating-survey.is-collapsed {
        width: min(42rem, calc(100vw - 2rem));
        bottom: 1rem;
    }

    .floating-survey-header {
        padding: .95rem 1.05rem 0;
        align-items: flex-start;
    }

    .floating-survey-title {
        gap: .85rem;
    }

    .floating-survey-icon {
        width: 3rem;
        height: 3rem;
        flex: 0 0 3rem;
        border-radius: 16px;
    }

    .floating-survey .floating-kicker {
        margin-bottom: .28rem;
        font-size: .72rem;
        line-height: 1;
    }

    .floating-survey h3 {
        font-size: 1rem;
        line-height: 1.15;
        margin-bottom: 0;
        letter-spacing: -.02em;
    }

    .floating-survey-body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "desc cta"
            "tags cta"
            "note note";
        align-items: center;
        gap: .8rem 1rem;
        padding: .8rem 1.05rem 1rem;
    }

    .floating-survey-body > p:first-of-type {
        grid-area: desc;
        margin: 0;
        max-width: 30rem;
        font-size: .94rem;
        line-height: 1.45;
    }

    .floating-survey .survey-points {
        grid-area: tags;
        margin: 0;
        gap: .45rem;
    }

    .floating-survey .survey-points span {
        padding: .42rem .78rem;
        font-size: .78rem;
        font-weight: 700;
    }

    .floating-survey .btn-brand {
        grid-area: cta;
        align-self: center;
        justify-self: end;
        width: auto;
        min-width: 13.75rem;
        min-height: 3.15rem;
        padding-inline: 1.15rem;
        white-space: nowrap;
    }

    .floating-survey .survey-note {
        grid-area: note;
        margin-top: 0;
        font-size: .8rem;
    }
}

@media (max-width: 767.98px) {
    .floating-survey {
        width: min(94vw, 24rem);
        bottom: .8rem;
        border-radius: 22px;
    }

    .floating-survey-header {
        padding: .78rem .82rem 0;
        gap: .6rem;
    }

    .floating-survey-title {
        gap: .65rem;
    }

    .floating-survey-icon {
        width: 2.5rem;
        height: 2.5rem;
        flex: 0 0 2.5rem;
    }

    .floating-survey .floating-kicker {
        margin-bottom: .18rem;
        line-height: 1.05;
    }

    .floating-survey h3 {
        font-size: .98rem;
        margin-bottom: 0;
        line-height: 1.12;
    }

    .floating-survey-body {
        padding: .75rem .82rem .9rem;
    }

    .floating-survey p {
        margin-bottom: .72rem;
        font-size: .9rem;
        line-height: 1.42;
    }

    .floating-survey .survey-points {
        gap: .42rem;
        margin-bottom: .82rem;
    }

    .floating-survey .survey-points span {
        padding: .38rem .68rem;
        font-size: .76rem;
    }

    .floating-survey .btn-brand {
        width: 100%;
        min-height: 3rem;
    }

    .floating-survey .survey-note {
        margin-top: .65rem;
        font-size: .78rem;
    }
}


/* === SportsForYou V5.3 - Roadmap rico === */
.roadmap-hero .hero-tags {
    margin-top: 1.3rem;
}

.roadmap-stage-grid,
.roadmap-module-grid,
.roadmap-criteria-grid,
.roadmap-audience-grid {
    display: grid;
    gap: 1rem;
}

.roadmap-stage-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roadmap-stage-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border: 1px solid rgba(16, 42, 69, .12);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 34px rgba(6,21,37,.075);
}

.roadmap-stage-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--sfy-growth-blue, #0b8fc6), var(--sfy-growth-green, #19c69a), var(--sfy-growth-orange, #f59e0b));
}

.roadmap-stage-card span {
    display: inline-flex;
    width: 2.6rem;
    height: 2.6rem;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(11,143,198,.12), rgba(25,198,154,.12));
    color: #061525;
    font-weight: 900;
}

.roadmap-stage-card h3 {
    margin-bottom: .45rem;
    font-size: 1.05rem;
    font-weight: 850;
    color: #061525;
}

.roadmap-stage-card p {
    margin-bottom: 0;
    color: #526579;
    font-size: .94rem;
    line-height: 1.55;
}

.roadmap-rich-timeline {
    position: relative;
    display: grid;
    gap: 1.2rem;
    max-width: 980px;
    margin: 0 auto;
}

.roadmap-rich-timeline::before {
    content: "";
    position: absolute;
    top: .8rem;
    bottom: .8rem;
    left: 1.35rem;
    width: 2px;
    background: linear-gradient(180deg, #0b8fc6, #19c69a, rgba(16,42,69,.14));
}

.roadmap-rich-item {
    position: relative;
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1rem;
}

.roadmap-rich-marker {
    position: relative;
    z-index: 1;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid rgba(11,143,198,.24);
    color: #061525;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(6,21,37,.10);
}

.roadmap-rich-item.is-current .roadmap-rich-marker {
    background: linear-gradient(135deg, #0b8fc6, #19c69a);
    color: #061525;
    border-color: transparent;
}

.roadmap-rich-content {
    padding: 1.3rem;
    border: 1px solid rgba(16,42,69,.12);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(6,21,37,.075);
}

.roadmap-rich-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
}

.roadmap-rich-head h3 {
    margin: 0;
    color: #061525;
    font-weight: 850;
    letter-spacing: -.03em;
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(11,143,198,.10);
    color: #0a5d81;
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.roadmap-rich-content p {
    color: #526579;
    line-height: 1.65;
}

.roadmap-rich-content ul {
    display: grid;
    gap: .45rem;
    margin: .85rem 0 0;
    padding-left: 1.1rem;
    color: #526579;
}

.roadmap-module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199.98px) {
    .roadmap-stage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .roadmap-module-grid,
    .roadmap-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .roadmap-criteria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .roadmap-stage-grid,
    .roadmap-module-grid,
    .roadmap-criteria-grid,
    .roadmap-audience-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-rich-item {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        gap: .75rem;
    }

    .roadmap-rich-timeline::before {
        left: 1.2rem;
    }

    .roadmap-rich-marker {
        width: 2.45rem;
        height: 2.45rem;
    }

    .roadmap-rich-content {
        padding: 1rem;
        border-radius: 22px;
    }

    .roadmap-rich-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* === SportsForYou V5.4 - Páginas internas ricas === */
.partner-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
    position: relative;
    overflow: hidden;
    padding: 1.3rem;
    border: 1px solid rgba(16, 42, 69, .12);
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 14px 34px rgba(6, 21, 37, .075);
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--sfy-growth-blue, #0b8fc6), var(--sfy-growth-green, #19c69a), var(--sfy-growth-orange, #f59e0b));
}

.partner-card span {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(11,143,198,.12), rgba(25,198,154,.12));
    color: #061525;
}

.partner-card h3 {
    font-size: 1.13rem;
    font-weight: 850;
    color: #061525;
}

.partner-card p {
    color: #526579;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}
