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

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

body.show-content {
    background-color: #f5f5f5;
}

.hidden {
    display: none !important;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.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: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

section h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* 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: #fafafa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #d4af37;
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 300;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

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

/* 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: #4a4a4a;
    border-bottom: 1px solid #f0f0f0;
}

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

.benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background-color: #d4af37;
    border-radius: 50%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #f5f5f5;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

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

.footer-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.footer-link-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-separator {
    color: #666;
    margin: 0 5px;
}

/* 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;
    padding-bottom: 20px;
    transition: opacity 0.3s ease;
}

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

.cookie-content {
    background: #1a1a1a;
    padding: 30px 20px 20px 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
    border: none;
    border-top: 2px solid #d4af37;
}

.cookie-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border: none;
    padding: 0;
}

.cookie-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.btn {
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 48%;
}

.btn-accept {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #c19b2e;
    transform: scale(1.05);
}

.btn-reject {
    background: #4a4a4a;
    color: #f5f5f5;
}

.btn-reject:hover {
    background: #3a3a3a;
    transform: scale(1.05);
}

/* 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-content {
        padding: 25px 15px 15px 15px;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
}

/* Modais de Política e Termos */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.policy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.policy-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10002;
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #d4af37;
    background: #1a1a1a;
    border-radius: 10px 10px 0 0;
}

.policy-modal-header h2 {
    color: #f5f5f5;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    border: none;
    padding: 0;
}

.policy-modal-close {
    background: transparent;
    border: none;
    color: #f5f5f5;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: #2c2c2c;
}

.policy-modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}

.policy-modal-body h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 8px;
}

.policy-modal-body h3:first-of-type {
    margin-top: 0;
}

.policy-modal-body a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-modal-body a:hover {
    border-bottom-color: #d4af37;
}

.policy-modal-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsividade para Modais */
@media (max-width: 768px) {
    .policy-modal-content {
        max-height: 95vh;
        border-radius: 10px 10px 0 0;
        margin-top: auto;
    }
    
    .policy-modal-header {
        padding: 20px;
    }
    
    .policy-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .policy-modal-body {
        padding: 20px;
    }
    
    .policy-modal-body h3 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-separator {
        display: none;
    }
}

