:root {
    --primary-cyan: #38bdf8;
    --dark-bg: #0f172a;
    --text-gray: #94a3b8;
       --glass: rgba(15, 23, 42, 0.45); 
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.main-overlay {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1280px; 
    margin: 0 auto;    
    padding: 0 30px;   
    width: 100%;
}
.header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 30px 0; transition: all 0.5s ease;
    background: transparent;
}
.navbar {
    width: 100%;
    padding: 20px 0;   
    display: flex;
}

.brand-logo {
    height: 70px !important; 
    width: auto;
    filter: brightness(0) invert(1) !important; 
    display: block;
}

.pricing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-top: -60px; 
    position: relative;
    z-index: 10;
    width: 100%;
}

.text-content {
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
}

.text-content h1 {
    font-size: 3rem; 
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}

.text-content h1 span {
    color: var(--primary-cyan);
}

.tagline {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 10px;
    max-width: 500px;
}

.cards-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin-top: 15px;
    padding: 0 20px 40px 20px;
    width: 100%;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px;
    padding: 35px 25px; 
    width: 320px; 
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.premium-plan {
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(30, 41, 59, 0.5);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary-cyan);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #C5A059;
    color: #000;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}
.gold-glow {
    color: #C5A059;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5));
}
.price {
    font-size: 2.8rem; 
    font-weight: 900;
    margin-bottom: 15px;
}

.price span {
    font-size: 0.9rem;
}

.plan-description {
    font-size: 0.85rem;
    min-height: 50px;
    margin-bottom: 15px;
}

.benefit-list li {
    padding: 8px 0;
    font-size: 0.85rem;
}

.btn-glow {
    display: block;
    padding: 15px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--primary-cyan);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-glow:hover {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}
/* --- SECCIÓN FAQ  --- */
.faq-section {
    width: 100%;
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background: var(--glass); 
    backdrop-filter: blur(15px);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-cyan);
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] {
    border-color: var(--primary-cyan);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-gray); 
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*Celulares */
@media screen and (max-width: 768px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
}
/* --- FOOTER  */
.footer-simple {
    width: 100%;
    display: flex;
    justify-content: center; 
    padding: 40px 0 20px 0;
    margin-top: auto; 
}

.footer-simple p {
    color: rgba(148, 163, 184, 0.3); 
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    pointer-events: none; 
    user-select: none; 
}

@media screen and (max-width: 768px) {
    .footer-simple p {
        font-size: 0.7rem;
        padding: 0 20px;
    }
}
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.trust-item a {
    color: rgba(148, 163, 184, 0.5); 
    text-decoration: none;
    font-size: 0.75rem;
    max-width: 200px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.trust-item a:hover {
    color: var(--primary-cyan);
}
/*/ CELULARES//

@media screen and (max-width: 768px) {
    /* 1. Contenedor */
    .main-overlay {
        background-attachment: scroll;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-x: hidden;
    }

    /* 2. Logo y Título */
    .navbar {
        padding: 10px 0 0;
        justify-content: center;
        width: 100%;
    }

    .brand-logo {
        height: 70px !important;
        margin-bottom: 0;
    }

    .pricing-hero {
        margin-top: -10px !important;
        padding: 0 15px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .text-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    /* 3. Tarjetas y FAQ*/
    .cards-container, 
    .faq-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100vw;
        padding: 20px 15px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .glass-card, 
    .faq-item {
        width: 100%;
        max-width: 320px; 
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    /* 4. Detalles internos de las tarjetas */
    .glass-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .premium-plan {
        order: -1; 
        transform: scale(1) !important;
    }

    .price {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .benefit-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    /* 5. Detalles internos de las FAQ */
    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .faq-item summary {
        padding: 15px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 15px;
        font-size: 0.85rem;
    }

    /* 6. Footer Marca de Agua */
    .footer-simple {
        padding: 30px 0;
        width: 100%;
        text-align: center;
    }

    .footer-simple p {
        font-size: 0.7rem;
    }
}
