/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
    transition: background-color 0.3s ease;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

section h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

section a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
}

section a:hover {
    color: #8b9aff;
    text-decoration: none;
}

/* Intro Section */
.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Info Section */
.info-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Benefits Section */
.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer p {
    margin: 5px 0;
    opacity: 0.9;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Modal de Cookies */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #000000;
}

.cookie-background img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    display: block;
    /* Dimensões serão ajustadas via JavaScript para manter proporções */
}

.cookie-logo {
    position: absolute;
    top: 3%;
    left: 3%;
    z-index: 2;
    width: 12%;
    max-width: 100px;
    min-width: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cookie-content {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 30px 30px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
    z-index: 3;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content h2 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    border: none;
    padding: 0;
}

.cookie-content p {
    color: white;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-links {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.cookie-links a {
    color: #d32f2f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #f44336;
}

.cookie-links span {
    color: #d32f2f;
    margin: 0 5px;
}

.cookie-buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.btn {
    padding: 18px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    color: white;
}

.btn-reject {
    background: #000000;
    color: white;
    border-radius: 8px 0 0 8px;
}

.btn-reject:hover {
    background: #1a1a1a;
}

.btn-accept {
    background: #8B0000;
    color: white;
    border-radius: 0 8px 8px 0;
}

.btn-accept:hover {
    background: #A10000;
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 25px 20px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-logo {
        width: 10%;
        max-width: 70px;
        min-width: 55px;
        top: 2.5%;
        left: 2.5%;
    }
    
    .cookie-content {
        padding: 35px 20px 25px 20px;
        bottom: 6%;
    }
    
    .cookie-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-content p {
        font-size: 0.95rem;
    }
    
    .cookie-links {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .cookie-logo {
        width: 15%;
        max-width: 80px;
        min-width: 50px;
        top: 2%;
        left: 2%;
    }
    
    .cookie-content {
        padding: 30px 15px 20px 15px;
        bottom: 5%;
    }
    
    .cookie-content h2 {
        font-size: 1.3rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-links {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}

