* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background com imagem da página oficial (blur) */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fundo.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.7);
    z-index: 1;
}

/* Container da Presell de Cookies */
.cookie-presell {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

/* Box de Cookies no Centro */
.cookie-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cookie-box h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cookie-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.small-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 30px;
}

/* Botão Principal */
.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 350px;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-accept:active {
    transform: translateY(-1px);
}

.arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-accept:hover .arrow {
    transform: translateX(5px);
}

/* Footer Links */
.footer-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.privacy-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .cookie-box {
        padding: 40px 30px;
    }
    
    .cookie-box h1 {
        font-size: 26px;
    }
    
    .cookie-icon {
        font-size: 60px;
    }
    
    .btn-accept {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-box {
        padding: 30px 20px;
    }
    
    .cookie-box h1 {
        font-size: 22px;
    }
    
    .cookie-box p {
        font-size: 14px;
    }
}
