/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a1a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    padding: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h3 {
    font-size: 18px;
    color: #4a9eff;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.cookie-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #b0b0b0;
    cursor: pointer;
}

.cookie-options input[type="checkbox"] {
    accent-color: #4a9eff;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.cookie-options input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4a9eff;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #3a7fd9;
    transform: scale(1.02);
}

.cookie-btn.reject {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid #333;
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-btn.customize {
    background: rgba(74, 158, 255, 0.15);
    color: #4a9eff;
}

.cookie-btn.customize:hover {
    background: rgba(74, 158, 255, 0.25);
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    padding: 40px 20px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(74, 158, 255, 0.15);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tagline {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #4a9eff;
}

.stat-label {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 40px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.product-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 4px 0 8px;
}

.product-description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4a9eff;
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.product-card:hover .product-link {
    gap: 10px;
}

/* Badges */
.badge-free,
.badge-new,
.badge-popular {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-free {
    background: rgba(74, 158, 255, 0.15);
    color: #4a9eff;
}

.badge-new {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
}

.badge-popular {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(74, 158, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ===== DONATION SECTION ===== */
.donation-section {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.08), rgba(167, 139, 250, 0.08));
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.donation-section h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.donation-section p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 24px;
}

.donation-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #4a9eff, #6c5ce7);
    color: #fff;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ===== TRANSPARENCY SECTION ===== */
.transparency-section {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
}

.transparency-section h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.transparency-section p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.transparency-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.transparency-number {
    font-size: 36px;
    font-weight: 800;
    color: #4a9eff;
}

.transparency-stats div div:last-child {
    font-size: 14px;
    color: #888;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid #4a9eff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

footer h4 {
    color: #4a9eff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 8px;
}

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

.footer-links a:hover {
    color: #4a9eff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4a9eff;
}

/* ===== CERTIFICATE SECTION ===== */
.certificate-section {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0d0d1a, #1a1a3e);
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid rgba(74, 158, 255, 0.3);
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.08), inset 0 0 40px rgba(74, 158, 255, 0.03);
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.certificate-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a9eff, #6c5ce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 30px rgba(74, 158, 255, 0.3);
    flex-shrink: 0;
}

.certificate-text {
    text-align: left;
}

.certificate-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.certificate-name {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff, #a78bfa, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.certificate-version {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.certificate-seal {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 16px;
    text-align: center;
}

.certificate-seal div:first-child {
    font-size: 20px;
}

.certificate-seal div:last-child {
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.certificate-thanks {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 15px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.certificate-thanks strong {
    color: #4a9eff;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #222;
}

.footer-copyright span {
    margin: 0 8px;
}

.footer-copyright span:last-child {
    color: rgba(74, 158, 255, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 16px;
    }

    .stats-bar {
        gap: 20px;
    }

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

    .product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-options {
        justify-content: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .certificate-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .certificate-text {
        text-align: center;
    }

    .certificate-seal {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 12px;
    }

    .transparency-stats {
        gap: 30px;
    }

    .donation-section {
        padding: 24px;
    }

    .donation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .logo-text {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
    }
}
/* Adicione ao final do arquivo styles.css */

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    gap: 6px;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.lang-btn.active {
    background: rgba(74, 158, 255, 0.15);
    color: #4a9eff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.1);
}

.lang-btn img {
    border-radius: 2px;
}

.lang-btn span {
    display: none;
}

@media (min-width: 768px) {
    .lang-btn span {
        display: inline;
    }
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 6px 8px;
        gap: 4px;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 10px;
    }

    .lang-btn img {
        width: 18px;
        height: 14px;
    }
}
