@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --card: #141414;
    --card-2: #1b1b1b;
    --text: #ffffff;
    --muted: #bdbdbd;
    --accent: #d2ff28;
    --accent-hover: #b8ea1f;
    --border: rgba(255,255,255,.08);
    --shadow: 0 20px 50px rgba(0,0,0,.35);
    --shadow-soft: 0 14px 32px rgba(0,0,0,.28);
    --radius: 20px;
    --radius-sm: 14px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

p,
h1,
h2,
h3 {
    word-break: break-word;
}

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

.section {
    padding: 88px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-text {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.card {
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    word-break: break-word;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(210,255,40,.14);
    box-shadow: 0 26px 56px rgba(0,0,0,.4);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(210,255,40,.10);
    border: 1px solid rgba(210,255,40,.18);
    color: var(--accent);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    background: var(--accent);
    color: #000;
    font-size: .95rem;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 30px rgba(210,255,40,.16);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(210,255,40,.18);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(255,255,255,.03);
    color: var(--accent);
    border-color: rgba(210,255,40,.18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5,5,5,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

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

.site-nav a {
    color: var(--muted);
    font-weight: 500;
    transition: .2s ease;
    position: relative;
    text-decoration: none !important;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .22s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(210,255,40,.15), transparent 28%),
        radial-gradient(circle at bottom right, rgba(210,255,40,.08), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 22%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(210,255,40,.08), transparent 65%);
    filter: blur(18px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: .98;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 720px;
}

.hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.04rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: .95rem;
}

.hero-meta span strong {
    color: var(--accent);
}

.hero-visual {
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(210,255,40,.14), rgba(255,255,255,.02)),
        url('../img/hero-fabio-melo-sports.jpg') center/cover no-repeat,
        #111;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.hero-visual:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 50%, rgba(0,0,0,.45) 100%);
}

.hero-highlight {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.hero-highlight strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.hero-highlight span {
    color: var(--muted);
    font-size: .95rem;
}

.strip {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

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

.strip-item {
    text-align: center;
    color: var(--muted);
    font-weight: 600;
    font-size: .95rem;
    transition: color .2s ease, transform .2s ease;
}

.strip-item:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.feature-card h3,
.portfolio-card h3,
.contact-card h3,
.testimonial strong {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p,
.portfolio-card p,
.contact-card p,
.testimonial p,
.evento-info p {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.7;
}

.portfolio-card {
    overflow: hidden;
    padding: 0;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210,255,40,.18);
    box-shadow: 0 28px 54px rgba(0,0,0,.42);
}

.portfolio-thumb {
    height: 240px;
    background:
        linear-gradient(135deg, rgba(210,255,40,.10), rgba(255,255,255,.02)),
        #101010;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.portfolio-thumb img {
    transition: transform .45s ease;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.04);
}

.portfolio-content {
    padding: 22px;
}

.evento-destaque {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: stretch;
}

.evento-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evento-info h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: 12px;
}

.evento-data {
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
}

.evento-local {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 14px;
}

.evento-capa {
    min-height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(210,255,40,.12), rgba(255,255,255,.02)), #111;
}

.evento-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.evento-capa:hover img {
    transform: scale(1.03);
}

.eventos-lista {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.evento-mini {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.evento-mini:hover {
    transform: translateY(-4px);
    border-color: rgba(210,255,40,.18);
    box-shadow: 0 24px 48px rgba(0,0,0,.38);
}

.evento-mini h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.evento-mini p {
    color: var(--muted);
    font-size: .95rem;
}

.cta-section {
    background:
        radial-gradient(circle at left top, rgba(210,255,40,.10), transparent 22%),
        var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-box {
    text-align: center;
    padding: 12px 0;
}

.cta-box .section-text {
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-card strong {
    color: var(--accent);
}

.form-card form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input,
.textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0d0d0d;
    color: var(--text);
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.input:focus,
.textarea:focus {
    border-color: rgba(210,255,40,.45);
    box-shadow: 0 0 0 4px rgba(210,255,40,.06);
    transform: translateY(-1px);
}

.textarea {
    min-height: 140px;
    resize: vertical;
}

.site-footer {
    padding: 34px 0 46px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-brand strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.footer-copy {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-dev {
    display: inline-block;
    margin-top: 6px;
}

.footer-dev a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
}

.footer-dev a:hover {
    color: var(--accent) !important;
    text-decoration: none !important;

}

.footer-dev a:hover::after {
    width: 100%;
}

.page-hero {
    padding: 90px 0 44px;
    background:
        radial-gradient(circle at top left, rgba(210,255,40,.12), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 25%);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.7;
}

.empty-state {
    text-align: center;
    padding: 34px;
    color: var(--muted);
}

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

.galeria-foto {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #111;
    min-height: 320px;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.galeria-foto:hover {
    transform: translateY(-3px);
    border-color: rgba(210,255,40,.18);
    box-shadow: 0 24px 48px rgba(0,0,0,.38);
}

.galeria-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.galeria-foto:hover img {
    transform: scale(1.04);
}

.galeria-foto::after {
    content: "Ampliar";
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.10);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    color: var(--muted);
    line-height: 1.7;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    max-width: 1200px;
    width: 100%;
    position: relative;
    animation: lightboxIn .22s ease;
}

.lightbox img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--accent);
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: #000;
    font-weight: 800;
    padding: 14px 18px;
    border-radius: 999px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    transition: .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(210,255,40,.18);
    box-shadow: var(--shadow-soft);
}

/* reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .evento-destaque,
    .contact-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .eventos-lista,
    .strip-items,
    .form-grid,
    .galeria-page-grid,
    .info-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }
}

@media (max-width: 820px) {
    .site-nav,
    .header-actions {
        display: none;
    }

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

    .site-header.mobile-open .site-nav {
        display: flex;
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        background: #0d0d0d;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
        flex-direction: column;
        gap: 14px;
    }

    .site-header.mobile-open .header-actions {
        display: flex;
        position: absolute;
        top: calc(84px + 208px);
        left: 16px;
        right: 16px;
        background: #0d0d0d;
        border: 1px solid var(--border);
        border-top: 0;
        border-radius: 0 0 18px 18px;
        padding: 0 18px 18px;
        justify-content: flex-start;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 10vw, 4rem);
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 13px 16px;
        font-size: .92rem;
    }
}

.heart {
    color: var(--accent);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.15); }
    40% { transform: scale(1); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    color: var(--text);
    font-size: .92rem;
    font-weight: 600;
}

.conversion-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(210,255,40,.08), rgba(255,255,255,.02));
    box-shadow: var(--shadow);
}

.conversion-actions {
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .conversion-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .conversion-actions {
        width: 100%;
    }

    .conversion-actions .btn {
        width: 100%;
    }
}

/* ===== MELHORIAS UX/UI ===== */

.page-hero {
    padding: 110px 0 56px;
}

.page-hero .badge {
    margin-bottom: 18px;
}

.page-hero h1 {
    max-width: 900px;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-title {
    max-width: 900px;
}

.section-text {
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero h1,
.page-hero h1,
.evento-info h3,
.portfolio-content h3,
.feature-card h3,
.testimonial strong {
    text-wrap: balance;
}

.feature-card,
.testimonial,
.info-box,
.evento-mini,
.portfolio-card {
    backdrop-filter: blur(6px);
}

.feature-card p,
.testimonial p,
.portfolio-content p,
.info-box p,
.evento-mini p {
    color: #c7c7c7;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    margin-bottom: 12px;
}

.evento-mini {
    min-height: 100%;
}

.evento-mini h3 {
    margin-bottom: 10px;
}

.evento-mini p + p {
    margin-top: 6px;
}

.info-box {
    min-height: 100%;
}

.info-box h3 {
    margin-bottom: 12px;
}

.galeria-foto::after {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}

.galeria-foto:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.hero-highlight {
    box-shadow: 0 18px 32px rgba(0,0,0,.26);
}

.strip-item {
    padding: 8px 10px;
    border-radius: 12px;
}

.footer-brand strong {
    font-size: 1.05rem;
}

.footer-brand span,
.footer-copy {
    line-height: 1.7;
}

.empty-state {
    font-size: 1rem;
    line-height: 1.7;
}

.btn,
.btn-outline,
.whatsapp-float {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 980px) {
    .page-hero {
        padding: 96px 0 44px;
    }

    .portfolio-content {
        padding: 20px;
    }

    .hero-proof {
        gap: 10px;
    }

    .hero-proof span {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .page-hero h1,
    .hero h1 {
        letter-spacing: -0.025em;
    }

    .hero-cta,
    .hero-meta {
        gap: 10px;
    }

    .hero-cta .btn,
    .hero-cta .btn-outline {
        width: 100%;
    }

    .portfolio-thumb {
        height: 220px;
    }

    .galeria-foto {
        min-height: 260px;
    }

    .evento-capa {
        min-height: 280px;
    }
}

/* ===== HERO CINEMATOGRÁFICA ===== */
.hero-visual {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #111;
}

.hero-cinematic {
    position: absolute;
    inset: 0;
}

.hero-cinematic-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.hero-cinematic-slide-1 {
    background-image:
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42)),
        url('../img/hero-slide-1.jpg');
    animation: heroCrossfade 10s infinite;
}

.hero-cinematic-slide-2 {
    background-image:
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42)),
        url('../img/hero-slide-2.jpg');
    animation: heroCrossfade 10s infinite;
    animation-delay: 5s;
    opacity: 0;
}

.hero-cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(210,255,40,.18), transparent 30%),
        linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.38) 100%);
    pointer-events: none;
}

.hero-cinematic-tags {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-cinematic-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.hero-highlight {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    background: rgba(0,0,0,.62);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 32px rgba(0,0,0,.26);
}

.hero-highlight strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-highlight span {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.65;
}

@keyframes heroCrossfade {
    0% { opacity: 0; }
    8% { opacity: 1; }
    42% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@media (max-width: 980px) {
    .hero-visual {
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        min-height: 360px;
    }

    .hero-cinematic-tags {
        top: 18px;
        left: 18px;
        right: 18px;
        gap: 8px;
    }

    .hero-cinematic-tags span {
        min-height: 34px;
        padding: 0 12px;
        font-size: .82rem;
    }

    .hero-highlight {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 16px;
    }
}


/* ===== REFINO VISUAL PREMIUM FINAL ===== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(210,255,40,.06), transparent 30%),
        radial-gradient(circle at 80% 90%, rgba(210,255,40,.04), transparent 30%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    letter-spacing: -0.03em;
}

.badge {
    background: rgba(210,255,40,.08);
    border: 1px solid rgba(210,255,40,.18);
    color: var(--accent);
    font-weight: 700;
}

.btn {
    min-height: 50px;
    padding: 0 26px;
    box-shadow: 0 6px 18px rgba(210,255,40,.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(210,255,40,.35);
}

.card {
    background: rgba(20,20,20,.7);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(12px);
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(210,255,40,.2);
}

.hero-cinematic-slide {
    filter: brightness(.88) contrast(1.08) saturate(1.05);
    transition: transform 6s ease, filter 1s ease;
}

@keyframes heroCrossfade {
    0% { opacity: 0; transform: scale(1.05); }
    8% { opacity: 1; transform: scale(1.08); }
    42% { opacity: 1; transform: scale(1.1); }
    50% { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1.12); }
}


/* ===== AJUSTE CTA SITE BLINDADO ===== */
.sobre-cta-fix .cta-box,
.index-final-cta-fix .cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sobre-cta-fix .section-title,
.sobre-cta-fix .section-text,
.index-final-cta-fix .section-title,
.index-final-cta-fix .section-text {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.sobre-cta-fix .section-text,
.index-final-cta-fix .section-text {
    max-width: 760px;
}

.sobre-cta-fix .btn,
.index-final-cta-fix .btn {
    margin: 20px auto 0;
    display: inline-flex;
}


/* ===== ZAP UNICO FINAL ===== */
.zap-bolinha{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 15px 30px rgba(0,0,0,.30);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.zap-bolinha:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(0,0,0,.34);
}
.zap-bolinha svg{
    width: 28px;
    height: 28px;
    display: block;
}
.zap-tooltip{
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #25D366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.zap-bolinha:hover .zap-tooltip,
.zap-bolinha.zap-auto-show .zap-tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.zap-hard{
    animation: zapPulse 2.8s ease-in-out infinite;
}
.zap-hard:hover{
    animation-play-state: paused;
}
@keyframes zapPulse{
    0%{ box-shadow: 0 15px 30px rgba(0,0,0,.30), 0 0 0 0 rgba(37,211,102,.34); }
    70%{ box-shadow: 0 15px 30px rgba(0,0,0,.30), 0 0 0 14px rgba(37,211,102,0); }
    100%{ box-shadow: 0 15px 30px rgba(0,0,0,.30), 0 0 0 0 rgba(37,211,102,0); }
}
@media(max-width:640px){
    .zap-tooltip{ display:none; }
    .zap-hard{ animation:none; }
    .zap-bolinha{
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
}


/* ===== BOTÃO TOPO PREMIUM ===== */
.btn-topo {
    position: fixed;
    right: 24px;
    bottom: 108px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(210,255,40,.18);
    background: rgba(210,255,40,.96);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.96);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-topo svg {
    width: 22px;
    height: 22px;
    display: block;
}

.btn-topo.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-topo:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,.34);
}

.btn-topo:focus-visible {
    outline: 2px solid rgba(210,255,40,.55);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .btn-topo {
        right: 18px;
        bottom: 86px;
        width: 50px;
        height: 50px;
    }
}
