/* ===========================
   BASE / VARIABLES / TIPOGRAFÍA
   =========================== */
:root {
    --font-sans: 'Quicksand', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Croissant One', serif;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
}

h1,
h2,
h3,
.faq-title,
.qa-title,
.contact-title {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: #6d1a94;
    font-size: 2.5rem;
}

/* UI semibold (Quicksand 600) */
.subtitle,
.qa-accordion .accordion-button,
.care-list li,
.contact-info li,
.btn,
.btn-custom {
    font-family: var(--font-sans);
    font-weight: 600;
}

/* Inputs light (Quicksand 300) */
input,
textarea,
select,
.form-control {
    font-family: var(--font-sans);
    font-weight: 300;
}

/* ===========================
   FAQ / VIDEO
   =========================== */
.faq-video-section .faq-subtitle {
    color: #5b5b5b;
    font-size: 1rem;
}

.faq-card {
    background: #b76be5;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    background-image: url('../assets/images/mariposas.png');
    background-size: 220px auto;
    background-repeat: repeat;
}

.faq-video {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.faq-video::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

/* 16:9 */
.faq-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===========================
   ACORDEÓN PREGUNTAS
   =========================== */
.qa-accordion-section {
    background: #fff7ff;
}

.qa-accordion .accordion-item {
    border: 1px solid #ead6ff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(75, 0, 125, .08);
}

.qa-accordion .accordion-button {
    color: #4b007d;
    background: #f4e6ff;
    font-weight: 600;
}

.qa-accordion .accordion-button.collapsed {
    background: #faf5ff;
}

.qa-accordion .accordion-button:focus {
    box-shadow: none;
}

.qa-no-caret.accordion-button::after {
    display: none;
}

.qa-caret {
    transition: transform .2s ease;
}

.qa-accordion .accordion-button:not(.collapsed) .qa-caret {
    transform: rotate(180deg);
}

/* ===========================
   RECOMENDACIONES / CUIDADOS
   =========================== */
.care-section {
    background: #f7efff;
}

.care-card {
    background: #fff;
    border: 1px solid #ead6ff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(75, 0, 125, .08);
}

.care-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.care-list li {
    position: relative;
    padding-left: 34px;
    margin: .6rem 0;
    color: #4b007d;
}

.care-list li::before {
    content: "\F33B";
    /* bi-shield-exclamation */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: .1rem;
    font-size: 1.1rem;
    color: #a64ad7;
}

/* ===========================
   CONTACTO
   =========================== */
.contact-section {
    background-color: #fff7ff;
    position: relative;
    padding-bottom: 4rem;
}

.contact-title {
    color: #4b007d;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4b007d;
}

.contact-info li {
    font-size: 1rem;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    color: #a24ac3;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: #a24ac3;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.location {
    margin-top: 2rem;
    font-weight: 600;
    color: #a24ac3;
}

/* Imagen recortada al centro */
.contact-photo {
    height: 75vh;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
}

.contact-photo img {
    width: clamp(240px, 60%, 520px);
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 20%;
}

/* ===========================
   LÍNEAS DECORATIVAS
   =========================== */
.decorative-line1,
.decorative-line2 {
    position: relative;
    height: 20px;
    background-color: #d68cff;
    margin-top: 2rem;
    width: 50%;
    border-radius: 30px;
}

.decorative-line1 {
    transform: translateX(100%);
}

/* =====================================
   RESPONSIVE
   ===================================== */

/* ≤575.98px */
@media (max-width:575.98px) {
    .faq-video-section .faq-title {
        font-size: 1.35rem;
    }

    .faq-video-section .faq-subtitle {
        font-size: .9rem;
    }

    .faq-card {
        padding: 12px;
        border-radius: 16px;
    }

    .faq-video {
        border-radius: 14px;
    }

    .qa-title,
    .faq-title {
        font-size: 2rem;
    }
}

/* ≤991.98px */
@media (max-width:991.98px) {
    .contact-photo {
        height: 55vh;
        min-height: 320px;
    }

    .contact-photo img {
        margin: 0 auto 0 auto;
    }

    .info {
        text-align: center;
    }

    .contact-info li {
        display: block;
    }
}