/* ========================================= */
/* 1. VARIÁVEIS E RESET */
/* ========================================= */
:root {
    --bg-dark: #050505;
    --neon-green: #25D366;
    --neon-yellow: #FFD700;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
    perspective: 1500px;
}

/* ========================================= */
/* 2. FUNDO E ANIMAÇÕES GERAIS */
/* ========================================= */
.cyber-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(transparent 0 1px, transparent 1px 40px, rgba(37, 211, 102, 0.03) 40px 41px),
        repeating-linear-gradient(90deg, transparent 0 1px, transparent 1px 40px, rgba(37, 211, 102, 0.03) 40px 41px);
    background-attachment: fixed;
    pointer-events: none;
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.anim-down { animation: fadeInDown 1s ease-out backwards; }
.anim-up-1 { animation: fadeInUp 1s ease-out 0.3s backwards; }
.anim-up-2 { animation: fadeInUp 1s ease-out 0.6s backwards; }
.anim-up-3 { animation: fadeInUp 1s ease-out 0.9s backwards; }

/* ========================================= */
/* 3. ESTRUTURA E LAYOUT */
/* ========================================= */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-style: preserve-3d;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    transform-style: preserve-3d;
}

.text-column {
    flex: 1;
    min-width: 300px;
    text-align: left;
    transform-style: preserve-3d;
}

/* ========================================= */
/* 4. LOGO COM EFEITO "AURA SUAVE" */
/* ========================================= */
.logo-container {
    width: 220px;
    height: auto;
    display: block;
    margin-bottom: 30px;
    position: relative;
    perspective: 1000px; 
    z-index: 10;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease-in-out;
    transform-origin: center center;
}

.logo-container:hover .logo {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1) 
            drop-shadow(0 0 10px rgba(37, 211, 102, 0.3)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
    animation: softGlow 2s infinite alternate;
}

@keyframes softGlow {
    from {
        filter: brightness(1.1) 
                drop-shadow(0 0 10px rgba(37, 211, 102, 0.3)) 
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
    }
    to {
        filter: brightness(1.15) 
                drop-shadow(0 0 15px rgba(37, 211, 102, 0.4)) 
                drop-shadow(0 0 25px rgba(255, 215, 0, 0.3));
    }
}

/* ========================================= */
/* 5. TEXTOS E BOTÃO */
/* ========================================= */
h1 {
    font-weight: 700;
    font-size: 3.8rem; 
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

h1 .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.text-column:hover h1 {
    transform: translateZ(40px) scale(1.02);
    text-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 30px var(--neon-green);
}

.subtitle-box {
    border-left: 4px solid var(--neon-yellow);
    padding-left: 15px;
    margin-bottom: 40px;
    transition: transform 0.5s ease;
}

.subtitle-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
}

.subtitle-box .bold {
    color: var(--text-white);
    font-weight: 700;
}

.text-column:hover .subtitle-box {
    transform: translateZ(30px);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--neon-green);
    color: var(--text-white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(10px);
}

.whatsapp-button i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05) translateZ(50px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6), inset 0 0 20px rgba(255,255,255,0.2);
    background-color: #20bd5a;
}

/* ========================================= */
/* 6. IMAGEM DO PLAYER E CARTAS */
/* ========================================= */
.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 300px;
    animation: fadeInUp 1.2s ease-out 0.5s backwards;
    transform-style: preserve-3d;
}

.player-container {
    position: relative;
    width: 580px; 
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.player-container:hover {
    transform: scale(1.05) translateZ(40px) rotateY(-5deg);
}

.player-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 60px rgba(37, 211, 102, 0.3), inset 0 0 20px rgba(37, 211, 102, 0.2);
    z-index: 1;
    animation: pulseBorder 4s infinite alternate;
}

@keyframes pulseBorder {
    from { box-shadow: 0 0 60px rgba(37, 211, 102, 0.3), inset 0 0 20px rgba(37, 211, 102, 0.2); }
    to { box-shadow: 0 0 80px rgba(37, 211, 102, 0.5), inset 0 0 40px rgba(37, 211, 102, 0.3); }
}

.player-image {
    position: absolute;
    width: 135%;
    height: auto;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%) translateZ(20px);
    bottom: -60px;
}

/* --- CARTAS: PERSPECTIVA 3D + SEMPRE A FRENTE (SEM HOVER) --- */
.floating-card {
    position: absolute;
    width: 90px;
    z-index: 100;
    filter: drop-shadow(15px 30px 20px rgba(0, 0, 0, 0.6));
    transform-style: preserve-3d;
    transform: translateZ(150px);
}

/* CARTA 1 (Esquerda) */
.card-1 { 
    top: 80px; 
    left: -180px; 
    animation: floatCard1 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { 
        transform: translateY(0) rotateY(30deg) rotateX(10deg) rotateZ(-15deg) translateZ(150px); 
    }
    50% { 
        transform: translateY(-20px) rotateY(35deg) rotateX(15deg) rotateZ(-15deg) translateZ(150px); 
    }
}

/* CARTA 2 (Direita) */
.card-2 { 
    top: 60px; 
    right: 30px; 
    animation: floatCard2 7s ease-in-out infinite;
}

@keyframes floatCard2 {
    0%, 100% { 
        transform: translateY(0) rotateY(-30deg) rotateX(5deg) rotateZ(15deg) translateZ(150px); 
    }
    50% { 
        transform: translateY(-25px) rotateY(-25deg) rotateX(10deg) rotateZ(15deg) translateZ(150px); 
    }
}

/* CARTA 3 (Baixo) */
.card-3 { 
    bottom: -15px; 
    left: 250px; 
    animation: floatCard3 5s ease-in-out infinite;
}

@keyframes floatCard3 {
    0%, 100% { 
        transform: translateY(0) rotateY(-10deg) rotateX(-20deg) rotateZ(-5deg) translateZ(150px); 
    }
    50% { 
        transform: translateY(-20px) rotateY(-5deg) rotateX(-15deg) rotateZ(-5deg) translateZ(150px); 
    }
}

/* ========================================= */
/* 7. RODAPÉ */
/* ========================================= */
footer {
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.seal-18 {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255,0,0,0.3));
    transition: transform 0.5s ease;
}

footer:hover .seal-18 {
    transform: scale(1.1) translateZ(20px);
}

/* ========================================= */
/* 8. RESPONSIVIDADE (Celular/Tablet) */
/* ========================================= */
@media (max-width: 992px) {
     h1 { font-size: 3rem; }
     .player-container { width: 450px; height: 450px; }
}

@media (max-width: 768px) {
    body { perspective: 1000px; }
    .main-container { justify-content: flex-start; padding-top: 40px; }
    .content { flex-direction: column; text-align: center; gap: 60px; margin-top: 0; }
    .text-column { text-align: center; }
    .logo-container { margin: 0 auto 30px auto; width: 180px; }
    h1 { font-size: 2.5rem; }
    .subtitle-box { border-left: none; border-top: 4px solid var(--neon-yellow); padding-left: 0; padding-top: 15px; display: inline-block; }
    .whatsapp-button { width: 100%; justify-content: center; padding: 15px; font-size: 0.9rem; }
    .whatsapp-button i { font-size: 1.5rem; }
    .player-container { width: 340px; height: 340px; }
    
    /* CORREÇÃO: Tamanho reduzido das cartas */
    .floating-card { width: 55px; } 
    
    /* CORREÇÃO: Reposicionamento para não tapar mão e rodapé */
    .card-1 { left: -65px; top: 170px;; } 
    .card-2 { right: -20px; top: 60px; } 
    .card-3 { bottom: 80px; right: 150px; }

    /* CORREÇÃO: Espaço extra no rodapé para o selo */
    footer { padding-bottom: 40px; }
}