@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/* ---------- RESET ---------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 16px;
    background-color: #000000;
    background: linear-gradient(135deg, #0b0f19 0%, #172134 50%, #0b0f19 100%);
    animation: fadePage 1s ease;
    color: #fff;
    min-height: 100vh;
}

@keyframes fadePage {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ---------- FAQ HERO ---------- */
.hero-faq {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 5% 80px;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    animation: contactFadeUp 0.8s ease forwards;
}

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-title {
    font-family: 'Noto Serif', serif;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Accordion Custom Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 189, 236, 0.2);
    border-color: rgba(33, 189, 236, 0.3);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 25px;
    box-shadow: none !important;
    border-radius: 15px !important;
}

.accordion-button::after {
    filter: invert(1);
    transition: 0.3s;
}

.accordion-button:not(.collapsed) {
    color: #21bdec !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(60%) sepia(50%) saturate(3000%) hue-rotate(160deg) brightness(100%) contrast(100%);
}

.accordion-body {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    border-top: none;
}


/* ---------- FOOTER ---------- */
.footer {
    background: #e6e6e6;
    padding: 60px 5%;
    color: #444;
    font-family: 'Raleway', sans-serif;
}

.footer img {
    margin-bottom: 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    text-decoration: none;
    color: #555;
    transition: .3s;
}

.footer a:hover {
    color: #000;
    transform: translateX(3px);
}

.social {
    display: flex;
    gap: 35px;
    margin-top: 6%;
    font-size: 150%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: .9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.social a:hover {
    transform: scale(1.1);
    color: #000;
}

/* ---------- MOVIL ---------- */
@media(max-width:768px) {
    .hero-faq {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .faq-title {
        font-size: 2rem;
        text-align: center;
    }

    .faq-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .accordion-body {
        padding: 0 18px 18px;
        font-size: 0.9rem;
    }

    .faq-container {
        padding: 0;
    }
}