/* =========================================
   CSS AAA - OMNIS MULTIVERSE ADS MASTER
========================================= */

/* Estrutura principal do Banner Desktop */
.preview-banner-pc {
    position: relative;
    width: 100%;
    min-height: 280px; /* Altura padrão, expansível se o texto for grande */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    
    /* Moldura AAA */
    border: 1px solid rgba(245, 158, 11, 0.5); 
    border-radius: 6px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 80px rgba(0, 0, 0, 0.95);
    transition: all 0.4s ease;
}

.preview-banner-pc:hover {
    border-color: rgba(245, 158, 11, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.4), inset 0 0 80px rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
}

.pc-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

/* Sombras nos textos (HUD/Radar LORE) */
.pc-subtitulo {
    text-shadow: 0 0 8px rgba(177, 146, 253, 0.8), 2px 2px 3px black;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(177, 146, 253, 0.6); 
    margin-bottom: 8px;
    font-weight: bold;
}

.pc-titulo {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6), 0px 0px 20px rgba(245, 158, 11, 0.5), 3px 3px 6px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 5px 0;
    font-weight: bold;
}

.pc-descricao {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 18px;
    border-left: 3px solid #f59e0b; 
    border-radius: 0 8px 8px 0;
    text-shadow: 1px 1px 2px black;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Base do Botão: Profundidade e Gradientes */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.4), inset 0 0 5px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 25px rgba(245, 158, 11, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4); }
    100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.4), inset 0 0 5px rgba(255, 255, 255, 0.1); }
}

.pc-botao {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 12px 26px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 1px solid #fbbf24;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: pulse-glow 2.5s infinite;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

/* Efeito de Brilho (Shine) que passa pelo botão no Hover */
.pc-botao::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.pc-botao:hover::after {
    left: 150%;
}

.pc-botao:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.5);
    border-color: #fef08a;
}

/* =========================================
   ESTRUTURA DO BANNER MOBILE (CELULAR)
========================================= */
.preview-banner-mob {
    position: relative;
    width: 100%;
    min-height: 280px; /* Garante a proporção alta no celular */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: none; /* Escondido no Desktop por padrão */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    
    /* Moldura AAA igual do PC */
    border: 1px solid rgba(245, 158, 11, 0.5); 
    border-radius: 6px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 80px rgba(0, 0, 0, 0.95);
}

.mob-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mob-subtitulo {
    font-weight: bold;
    text-shadow: 0 0 8px rgba(177, 146, 253, 0.8), 2px 2px 3px black;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.mob-titulo {
    font-weight: bold;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6), 0px 0px 20px rgba(245, 158, 11, 0.5), 3px 3px 6px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 5px 0 10px 0;
}

.mob-descricao {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 6px;
    text-shadow: 1px 1px 2px black;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.mob-botao {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #fbbf24;
    transition: all 0.3s ease;
    animation: pulse-glow 2.5s infinite;
}

/* =========================================
   MÁGICA DA RESPONSIVIDADE (MEDIA QUERIES)
========================================= */
@media (max-width: 768px) {
    /* No celular: Esconde PC, Mostra Mobile */
    .preview-banner-pc { display: none !important; }
    .preview-banner-mob { display: flex !important; }
}