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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

/* Modal de Cookies */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.modal-content h2 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 24px;
}

.modal-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.link {
    color: #2563eb;
    text-decoration: underline;
}

/* Seção de Carregamento */
.loading-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.loading-section.hidden {
    display: none;
}

.loading-content {
    text-align: center;
    color: white;
}

/* Spinner (Círculo de Carregamento) */
.spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.loading-message {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.timer-container {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.timer-text {
    font-size: 18px;
    font-weight: 500;
}

.timer-value {
    font-size: 32px;
    font-weight: 700;
    color: #fbbf24;
    margin: 0 5px;
}

/* Container Principal */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-section {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.6s ease;
}

.title {
    color: #1e40af;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    color: #059669;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.description {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Botões */
.btn-primary,
.cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-primary:active,
.cta-button:active {
    transform: translateY(0);
}

/* Benefícios */
.benefits {
    margin-top: 30px;
    text-align: left;
    display: inline-block;
}

.benefits p {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.benefits p::before {
    content: '';
    display: inline-block;
    margin-right: 8px;
}

/* Rodapé */
.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 20px;
    text-align: center;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.copyright {
    font-size: 13px;
    opacity: 0.9;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 25px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 15px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }
}

