/* Variáveis e Reset */
:root {
    --primary-green: #27ae60;
    --dark-bg: #0a0a0a;
    --text-white: #ffffff;
    --accent-red: #e74c3c;
    --gold: #f1c40f;
    --light-green: rgba(39, 174, 96, 0.15);
    --success-green: #1abc9c;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ===== NOTIFICAÇÕES FLUTUANTES (PROVA SOCIAL) ===== */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    background: linear-gradient(135deg, var(--success-green), #16a085);
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    animation: slideIn 0.5s ease-out;
    border-left: 5px solid var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
}

.notification strong {
    display: block;
    color: var(--gold);
    margin-bottom: 4px;
    font-size: 1rem;
}

.notification-status {
    color: #fff;
    font-size: 0.85rem;
    opacity: 0.9;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification.remove {
    animation: slideOut 0.5s ease-out forwards;
}

/* ===== HERO BANNER ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)), 
                url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-bottom: 5px solid var(--primary-green);
    overflow: hidden;
}

/* Confetes Animados */
.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: 
        radial-gradient(circle, #fff 1px, transparent 1px), 
        radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    opacity: 0.12;
    pointer-events: none;
    animation: snow 15s linear infinite;
}

@keyframes snow {
    0% { background-position: 0 0; }
    100% { background-position: 500px 1000px; }
}

.hero-content {
    z-index: 2;
    max-width: 850px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 4px 8px 16px rgba(0,0,0,0.95);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero .highlight {
    color: var(--primary-green);
    display: block;
    text-shadow: 3px 6px 12px rgba(39, 174, 96, 0.6);
    font-size: 1.1em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.98;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.8);
    line-height: 1.5;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 700;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--accent-red), var(--primary-green));
    box-shadow: 0 0 25px rgba(39, 174, 96, 0.7);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(39, 174, 96, 0.2);
    padding: 10px 18px;
    border-radius: 25px;
    border: 2px solid var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    padding: 20px 55px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.7);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.urgency-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== SEÇÃO SERVIDOR ===== */
.server-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    text-align: center;
}

.container {
    max-width: 650px;
    margin: 0 auto;
}

.server-section h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 28px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ddd;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
}

.custom-select, 
.custom-input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid #333;
    background-color: #1a1a1a;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.custom-select:focus, 
.custom-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.4);
}

.custom-select option {
    background-color: #1a1a1a;
    color: white;
}

.server-info-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 14px;
    border-radius: 10px;
    margin-top: 12px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
}

.server-info-box img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    margin-right: 15px;
    object-fit: cover;
}

.server-info-box span {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* ===== SEÇÃO PACOTES ===== */
.packages-section {
    padding: 70px 20px;
    background-color: var(--dark-bg);
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.packages-header p {
    color: #bbb;
    font-size: 1.2rem;
}

.table-container {
    overflow-x: auto;
    max-width: 950px;
    margin: 0 auto 60px;
    background: #111;
    border-radius: 15px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.6);
    border: 2px solid #222;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th, 
.price-table td {
    padding: 22px;
    border-bottom: 1px solid #222;
}

.price-table th {
    background-color: #1a1a1a;
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.price-table tbody tr {
    transition: 0.3s;
}

.price-table tbody tr:hover {
    background-color: rgba(39, 174, 96, 0.08);
}

.price-table tr.popular {
    background-color: var(--light-green);
}

.price-table tr.popular td {
    border-top: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
}

.moedas-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
}

.preco-val {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 900;
}

.economia-tag {
    background: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    display: inline-block;
    font-weight: 700;
}

.price-table tr.popular .economia-tag {
    background: var(--primary-green);
    color: white;
}

.btn-comprar {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    position: relative;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-comprar::before {
    content: "🎁";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.4rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

.btn-comprar:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.btn-popular {
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.4);
}

/* ===== BENEFÍCIOS ===== */
.benefits-section {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
}

.benefits-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #222;
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.benefit-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
    max-width: 1100px;
    margin: 60px auto;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 45px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #ddd;
    font-weight: 500;
}

.testimonial-card .author {
    display: block;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 6px;
    font-size: 1rem;
}

.testimonial-card .detail {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

/* ===== CTA FINAL ===== */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(26, 188, 156, 0.1));
    padding: 50px;
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 25px;
}

.btn-cta-final {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.7);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .price-table th, 
    .price-table td {
        padding: 14px;
    }

    .moedas-val, 
    .preco-val {
        font-size: 1.1rem;
    }

    .btn-comprar {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .notifications-container {
        top: 10px;
        right: 10px;
        max-width: 85vw;
    }

    .notification {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .final-cta {
        padding: 30px;
    }

    .final-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero {
        height: 65vh;
        min-height: 420px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .server-section,
    .packages-section {
        padding: 40px 15px;
    }

    .server-section h2,
    .packages-header h2 {
        font-size: 1.6rem;
    }

    .price-table th, 
    .price-table td {
        padding: 10px;
    }

    .btn-comprar::before {
        font-size: 1rem;
        top: -6px;
        right: -6px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 20px;
    }
}
