/* Sitio web desarrollado por:
María G. Ramírez Morales 
Contacto: maria.hlvt98@gmail.com 
Año: 2026 */

/* ===========================
   AVISO DE PRIVACIDAD
=========================== */

.privacy-page {
    background-color: #f5f5f5;
    padding-bottom: 100px;
}

/* HERO */

.privacy-hero {
    padding-top: 90px;
    padding-bottom: 70px;
}

.privacy-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.privacy-hero-text h1 {
    color: #EF7911;
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1;
}

.privacy-hero-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
}

.privacy-hero-image img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}

/* CONTENIDO */

.privacy-content-section {
    padding-bottom: 40px;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.legal-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
}

.legal-card h2 {
    color: #EF7911;
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-card ul {
    padding-left: 20px;
}

.legal-card li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* EMAIL */

.privacy-email a {
    color: #EF7911;
    font-weight: 700;
    text-decoration: none;
}

.privacy-email a:hover {
    text-decoration: underline;
}

/* FECHA */

.privacy-update {
    text-align: center;
    margin-top: 60px;
}

.privacy-update p {
    color: #777;
    font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .privacy-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .privacy-hero-text h1 {
        font-size: 2.4rem;
    }

    .legal-card {
        padding: 30px;
    }
}


/* ===========================
   FAQ
=========================== */

.faq-page {
    background-color: #f5f5f5;
    padding-bottom: 100px;
}

/* HERO */

.faq-hero {
    padding-top: 90px;
    padding-bottom: 70px;
    text-align: center;
}

.faq-hero h1 {
    color: #EF7911;
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1;
}

.faq-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* FAQ */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 35px;
    font-size: 1.2rem;
    font-family: 'Kanit-Bold', sans-serif;
    color: #EF7911;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 2rem;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 35px 30px;
    color: #555;
    line-height: 1.9;
}

/* ACTIVO */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    content: "-";
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .faq-hero h1 {
        font-size: 2.3rem;
    }

    .faq-question {
        padding: 24px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 24px 24px;
    }
}