* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #0b1120;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.carousel {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta {
    padding: 60px 20px;
    text-align: center;
    background: #111827;
}

.plans {
    padding: 60px 20px;
}

.plans-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    background: #1f2937;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h3 {
    margin-bottom: 10px;
}

.plan-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #1d4ed8;
}

.destaque {
    border: 2px solid #2563eb;
}

.footer {
    background: #0b1120;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer a {
    color: #2563eb;
    text-decoration: none;
    margin: 0 5px;
}

@media(max-width: 768px) {
    .overlay h1 {
        font-size: 1.8rem;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .carousel {
        height: 50vh;
    }
}

///BARRA SUPERIOR

.topbar {
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: #fff;
    width: 100%;
    overflow: hidden;
    font-size: 14px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: auto;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.topbar-contact a:hover {
    opacity: 0.8;
}

@media(max-width: 768px) {
    .topbar-container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .marquee-text {
        animation: marquee 20s linear infinite;
    }
}

/* ===== TOPBAR PREMIUM ===== */

.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #1e40af, #2563eb);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: auto;
}

body {
    padding-top: 45px;
    /* Compensa barra fixa */
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
    font-weight: 500;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== WHATSAPP FLUTUANTE ===== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    animation: floatPulse 1.5s infinite;
}

.whatsapp-float img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
}

@keyframes floatPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.whatsapp-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsivo */
@media(max-width:768px) {
    .topbar-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* ===== POPUP PREMIUM ===== */

.promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.promo-content {
    position: relative;
    background: #111827;
    padding: 35px 30px 30px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    animation: popupFade 0.4s ease;
}

/* BOTÃO FECHAR MAIS PRÓXIMO */
.close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 14px;
    background: #2563eb;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.close-popup:hover {
    background: #1d4ed8;
}

@keyframes popupFade {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/// ==== EFEITO URGÊNCIA PISCANDO ====

#countdown {
    font-weight: bold;
    color: #ffeb3b;
    animation: blinkUrgency 1s infinite;
}

@keyframes blinkUrgency {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/// ==== FOOTER EXTRA ====

.footer-extra {
    margin-bottom: 20px;
}

.dmca-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.pix-area img {
    margin-top: 8px;
    max-width: 120px;
}

/// 
/* ===== CENTRALIZAÇÃO IMAGEM HOSPEDAGEM ===== */

.hospedagem-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.hospedagem-image img {
    max-width: 100%;
    width: 300px;
    height: auto;
    display: block;
}

.hospedagem-image img {
    transition: 0.3s;
}

.hospedagem-image img:hover {
    transform: scale(1.05);
}

/* ===== CENTRALIZAÇÃO IMAGEM SCRIPTS ===== */

.scripts-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.scripts-image img {
    max-width: 100%;
    width: 300px;
    height: auto;
    display: block;
}

.scripts-image img {
    transition: 0.3s;
}

.scripts-image img:hover {
    transform: scale(1.05);
}


/* ===== CENTRALIZAÇÃO IMAGEM PLAYER ===== */

.player-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.player-image img {
    max-width: 100%;
    width: 300px;
    height: auto;
    display: block;
}

.player-image img {
    transition: 0.3s;
}

.player-image img:hover {
    transform: scale(1.05);
}

/* ===== PREÇO DO PLANO ===== */

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #00ff88;
    margin: 20px 0;
    text-align: center;
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
    letter-spacing: 1px;
}

/* ===== INFORMAÇÃO DE PERÍODO ====*/
.price-period {
    font-size: 50%;
    color: #ccc;
    font-weight: 400;
}