* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000000; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

:root {
    --lp-bg-color: #050505;
    --lp-card-bg: #111;
    --lp-accent: #6e0086;
    --lp-text: #fff;
}

.pagina { width: 100%; }

.bloco {
    width: 100%;
    position: relative;
}

.imagem {
    width: 100%;
    height: auto;
    display: block;
}

.img-mobile { display: block; }
.img-desktop { display: none; }

.area-botao {
    position: absolute;
    text-align: center;
    z-index: 10;
    width: 100%;
    bottom: 20%;
    left: 0;
}

.botao {
    max-width: 400px;
    width: 80%;
    height: auto;
    cursor: pointer;
}

@media (min-width: 768px) {
    .img-mobile { display: none; }
    .img-desktop { display: block; }
    .botao { max-width: 350px; width: auto; }
}

@media (max-width: 480px) {
    .botao { width: 90%; max-width: 300px; }
}

/* ============================================================
   CARROSSEL DE IMAGENS - 90% DA TELA COM GAP E VELOCIDADE REDUZIDA
   ============================================================ */

.image-carousel-section {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
}

.image-carousel-section .carousel-title {
    display: none;
}

.image-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollImagesReduced 60s linear infinite;
}

.image-carousel-slide {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: #000;
}

.image-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* MOBILE - 90% da tela com gap e velocidade reduzida */
@media (max-width: 768px) {
    .image-carousel-slide {
        width: 90vw;
        height: 160vh;
        max-height: 80vh;
    }
    
    .image-carousel-track {
        gap: 15px;
    }
    
    @keyframes scrollImagesReduced {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90vw * 9 - 15px * 9));
        }
    }
}

/* DESKTOP - tamanho normal com gap e velocidade reduzida */
@media (min-width: 768px) {
    .image-carousel-section {
        padding: 60px 0;
        background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    }
    
    .image-carousel-section .carousel-title {
        display: block;
        text-align: center;
        color: #fff;
        font-size: 2rem;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #b76fff, #6d0aff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
    }
    
    .image-carousel-slide {
        width: 280px;
        height: 498px;
    }
    
    .image-carousel-track {
        gap: 20px;
        animation: scrollImagesDesktopReduced 60s linear infinite;
    }
    
    @keyframes scrollImagesDesktopReduced {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 9));
        }
    }
}

/* ============================================================
   CSS COMPLETO DO BLOCO DE VÍDEO
   ============================================================ */

.area-video {
    position: absolute;
    z-index: 10;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid #8b5cf6;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.sound-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.sound-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.activate-sound-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.activate-sound-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.activate-sound-btn svg {
    width: 20px;
    height: 20px;
}

.video-progress-container {
    width: 100%;
    margin-top: 10px;
    padding: 0 5px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar:hover {
    height: 8px;
    background: rgba(139, 92, 246, 0.3);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s;
}

.replay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.replay-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.replay-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.replay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.6);
}

.replay-btn:active {
    transform: translateY(0);
}

.replay-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================================
   LeadPro Modal Styles
   ============================================================ */

#leadpro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

#leadpro-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.leadpro-modal-content {
    background: white;
    padding: 28px;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leadpro-success-content {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: checkmarkAnim 0.5s ease-out 0.1s both;
}

@keyframes checkmarkAnim {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% { 
        transform: scale(1.2);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.success-title {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.success-message {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
}

.success-ok-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.success-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

.success-ok-btn:active {
    transform: translateY(0);
}

.leadpro-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.leadpro-close-btn:hover {
    background: #f1f5f9;
    color: #334155;
}

.leadpro-title {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    padding-right: 30px;
}

.leadpro-subtitle {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.leadpro-form-group {
    margin-bottom: 18px;
}

.leadpro-label {
    display: block;
    color: #334155;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.leadpro-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s ease;
}

.leadpro-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.leadpro-input::placeholder {
    color: #94a3b8;
}

.leadpro-submit-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.leadpro-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.leadpro-submit-btn:active {
    transform: translateY(0);
}

.leadpro-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================
   BOTÃO ROXO PREMIUM
   ============================================================ */

.btn-premium-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.12),
        0 0 13px rgba(162, 75, 255, 0.5),
        0 0 45px rgba(162, 75, 255, 0.25);
    cursor: pointer;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.btn-premium-neon::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -40%;
    width: 200%;
    height: 300%;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    transform: rotate(25deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-premium-neon:hover::before {
    opacity: 1;
    transform: translateX(40%) rotate(25deg);
}

.btn-premium-neon:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(162, 75, 255, 0.65),
        0 0 80px rgba(162, 75, 255, 0.35);
}

.btn-premium-neon:focus {
    outline: 2px solid rgba(162, 75, 255, 0.8);
    outline-offset: 4px;
}

.btn-premium-neon .btn-inner {
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #b76fff, #6d0aff, #4800b8);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        0 0 10px rgba(146, 0, 255, 0.6),
        0 0 30px rgba(146, 0, 255, 0.3);
    border: none;
}

.btn-premium-neon .btn-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: inherit;
    opacity: 0.55;
    z-index: 2;
}

.btn-premium-neon .btn-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: inherit;
    animation: shine-diagonal-premium 3s linear infinite;
    z-index: 3;
    mix-blend-mode: screen;
}

.btn-premium-neon .btn-arrow {
    font-size: 20px;
    font-weight: bold;
    color: #d9c4ff;
    filter: drop-shadow(0 0 6px rgba(170, 110, 255, 0.8));
    transition: 0.35s ease;
    margin-right: 4px;
}

.btn-premium-neon:hover .btn-arrow {
    transform: translateX(6px);
    filter: drop-shadow(0 0 12px rgba(190, 140, 255, 1));
}

@keyframes shine-diagonal-premium {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ============================================================
   CARROSSÉIS ANIMADOS
   ============================================================ */

.carrossel-container {
    margin: 20px 0;
    overflow: hidden;
    width: 100%;
}

.trilho-carrossel {
    display: flex;
    gap: 28px;
    width: max-content;
}

.trilho-esquerda {
    animation: mover-esquerda 38s linear infinite;
}

.trilho-direita {
    animation: mover-direita 42s linear infinite;
}

.carrossel-container:hover .trilho-carrossel {
    animation-play-state: paused;
}

.item-carrossel {
    width: 300px;
    height: 190px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.6s ease;
}

.item-carrossel::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg,
                transparent,
                rgba(124, 255, 0, 0.6),
                rgba(0, 255, 255, 0.6),
                transparent);
    filter: blur(18px);
    opacity: 0.7;
    animation: mover-glow 6s linear infinite;
    z-index: 0;
}

.item-carrossel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 22px;
}

.item-carrossel:hover {
    transform: scale(1.08);
}

@keyframes mover-esquerda {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes mover-direita {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes mover-glow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ============================================================
   LANDING PAGE CARDS
   ============================================================ */

.lp-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

.lp-reveal-text {
    font-size: 4.5vw;
    line-height: 1.1;
    text-align: center;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(50px);
    animation: lpTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    max-width: 900px;
    margin: 0 auto;
}

.lp-accent-text {
    color: var(--lp-accent);
}

.lp-scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 0.9rem;
    opacity: 0.6;
    animation: lpBounce 2s infinite;
}

.lp-stack-area {
    padding-bottom: 5px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.lp-card {
    height: 420px;
    position: sticky;
    top: 15vh;
    background: var(--lp-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform-origin: center top;
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
    will-change: transform;
}

.lp-card:nth-child(1) {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.lp-card:nth-child(2) {
    background: linear-gradient(145deg, #222, #111);
}

.lp-card:nth-child(3) {
    background: linear-gradient(145deg, #2a2a2a, #151515);
}

.lp-card:nth-child(4) {
    background: linear-gradient(145deg, #333, #1a1a1a);
}

.lp-card-content {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.lp-card-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    color: #f6bfff;
}

.lp-card-num {
    font-size: 1rem;
    color: var(--lp-accent);
    margin-bottom: 20px;
    display:block;
    font-weight: 700;
    letter-spacing: 2px;
    
}

.lp-card-desc {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
}

.lp-strong {
    color: var(--lp-accent);
    font-weight: 700;
}

.lp-card-img {
    flex: 1;
    height: 100%;
    background: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.lp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s ease;
}

.lp-card:hover .lp-card-img img {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes lpTextReveal {
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lpBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================================
   ANIMAÇÕES PULSAR
   ============================================================ */

.pulsar { animation: pulsar 2s infinite ease-in-out; }
.pulsar-forte { animation: pulsar-forte 1.5s infinite ease-in-out; }
.pulsar-continuo { animation: pulsar-continuo 1s infinite ease-in-out; }

@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulsar-forte {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulsar-continuo {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.03); }
    50% { transform: scale(1.05); }
    75% { transform: scale(1.03); }
}

/* ============================================================
   RESPONSIVIDADE GERAL
   ============================================================ */

@media (max-width: 768px) {
    .pulsar { animation-duration: 2.5s; }
    .pulsar-forte { animation-duration: 2s; }
    .pulsar-continuo { animation-duration: 1.5s; }
    
    .lp-hero {
        padding: 0 15px;
    }

    .lp-reveal-text {
        font-size: 2.5rem;
    }

    .lp-card {
        flex-direction: column;
        height: auto;
        min-height: 65vh;
        top: 10vh;
        margin-bottom: 5vh;
        padding: 24px;
    }

    .lp-card-content {
        padding-right: 0;
        margin-bottom: 24px;
        flex: 0;
    }

    .lp-card-title {
        font-size: 2rem;
        font-weight: 700;
    }

    .lp-card-desc {
        font-size: 1.1rem;
        font-weight: 300;
    }

    .lp-card-img {
        height: 250px;
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .leadpro-modal-content {
        padding: 22px;
        border-radius: 14px;
    }
    
    .leadpro-success-content {
        padding: 32px 24px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .success-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .success-title {
        font-size: 22px;
    }
    
    .leadpro-title {
        font-size: 20px;
    }
    
    .leadpro-subtitle {
        font-size: 14px;
    }
    
    .video-container {
        border-radius: 8px;
        border: 3px solid #8b5cf6;
    }
    
    .activate-sound-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .progress-bar {
        height: 5px;
    }
    
    .progress-bar:hover {
        height: 6px;
    }
    
    .replay-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .replay-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   SEÇÃO FAQ - PERGUNTAS FREQUENTES
   ============================================================ */

.faq-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(110, 0, 134, 0.15) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
    z-index: 1;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-title {
    text-align: center;
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #b76fff, #6d0aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.faq-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.faq-grid {
    display: grid;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(110, 0, 134, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(110, 0, 134, 0.3);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #b76fff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active {
    background: rgba(110, 0, 134, 0.1);
    border-color: rgba(110, 0, 134, 0.5);
    box-shadow: 
        0 0 30px rgba(110, 0, 134, 0.2),
        inset 0 0 20px rgba(110, 0, 134, 0.1);
}

.faq-item.active .faq-question {
    color: #b76fff;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 16px;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

.faq-item {
    opacity: 0;
    animation: slideInFaq 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInFaq {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   STATUS DO WHATSAPP - VERSÃO MÉDIO-GRANDE (AJUSTADA)
   ============================================================ */

.status-whatsapp-section {
    width: 100%;
    background: #000000;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.status-whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(110, 0, 134, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.status-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #b76fff, #6d0aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.status-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Wrapper dos cards */
.interactive-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    margin-bottom: 20px;
    background: transparent;
    padding: 10px 0;
}

/* Contêiner dos cartões */
.interactive-cards-container {
    display: flex;
    gap: 16px;
    padding: 10px 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #9b59b6 #1a1a1a;
}

/* Estilo dos cartões - TAMANHO MÉDIO-GRANDE (240px x 420px) */
.interactive-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(128, 0, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 240px;
    width: 240px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(128, 0, 255, 0.4);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.interactive-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(128, 0, 255, 0.3);
    border: 2px solid rgba(128, 0, 255, 0.7);
}

/* Imagem circular sobreposta ao cartão */
.interactive-card-image {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px #9b59b6;
    padding: 2.5px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    z-index: 3;
    box-shadow: 0 0 12px rgba(155, 89, 182, 0.4);
}

/* Título do cartão */
.interactive-card-title {
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    padding: 0 12px;
    z-index: 3;
    background: linear-gradient(90deg, #b76fff, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Vídeo nos cartões */
.interactive-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

/* Estilos do modal */
.interactive-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.interactive-modal.active {
    display: flex;
}

.interactive-modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    background-color: #000000;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(128, 0, 255, 0.5);
    border: 2px solid #9b59b6;
}

/* Botão de fechar no modal */
.interactive-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(128, 0, 255, 0.85);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 20;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

.interactive-close-button:hover {
    background: #8e44ad;
    transform: scale(1.05);
}

/* Vídeo no modal */
.interactive-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Barra de rolagem personalizada */
.interactive-cards-container::-webkit-scrollbar {
    height: 5px;
}

.interactive-cards-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.interactive-cards-container::-webkit-scrollbar-thumb {
    background: #9b59b6;
    border-radius: 10px;
}

.interactive-cards-container::-webkit-scrollbar-thumb:hover {
    background: #8e44ad;
}

/* Responsividade para telas menores - ajuste suave */
@media (max-width: 550px) {
    .interactive-card {
        min-width: 220px;
        width: 220px;
        height: 390px;
        border-radius: 20px;
    }
    
    .interactive-card-image {
        width: 78px;
        height: 78px;
        top: 15px;
        border-width: 2.8px;
    }
    
    .interactive-card-title {
        font-size: 15px;
        bottom: 18px;
    }
}

@media (max-width: 450px) {
    .interactive-card {
        min-width: 200px;
        width: 200px;
        height: 360px;
        border-radius: 18px;
    }
    
    .interactive-card-image {
        width: 70px;
        height: 70px;
        top: 12px;
        border-width: 2.5px;
    }
    
    .interactive-card-title {
        font-size: 14px;
        bottom: 15px;
    }
}

@media (max-width: 380px) {
    .interactive-card {
        min-width: 180px;
        width: 180px;
        height: 330px;
        border-radius: 16px;
    }
    
    .interactive-card-image {
        width: 62px;
        height: 62px;
        top: 10px;
        border-width: 2.5px;
    }
    
    .interactive-card-title {
        font-size: 13px;
        bottom: 12px;
    }
}

/* ============================================================
   ANIMAÇÕES GERAIS
   ============================================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}