/* ==== FAQ / VIDEO ==== */
.faq-video-section .faq-title {
    font-family: 'Croissant One', cursive;
    color: #6d1a94;
    font-size: 1.6rem;
}

.faq-video-section .faq-subtitle {
    color: #5b5b5b;
    font-size: .95rem;
}

.faq-card {
    background: #b76be5;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    background-image: url('tannyAmiwis/assets/images/FONDO MARIPOSAS.png');
    /* opcional */
    background-size: 220px auto;
    background-repeat: repeat;
}

.faq-video {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.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;
}

/* ==== CONTACTO ==== */
.contact-section {
    background-color: #fff7ff;
    font-family: 'Croissant One', cursive;
    position: relative;
    padding-bottom: 4rem;
}

.contact-title {
    font-weight: 700;
    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: 700;
    color: #a24ac3;
}

/* Imagen recortada al centro */
.contact-photo {
    height: 75vh;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Líneas decorativas */
.decorative-line1,
.decorative-line2 {
    position: relative;
    height: 10px;
    background-color: #d68cff;
    margin-top: 2rem;
    width: 50%;
}

.decorative-line1 {
    transform: translateX(100%);
}

.tuerca-deco1,
.tuerca-deco2 {
    position: absolute;
    top: -30px;
    width: 80px;
    height: 80px;
    background: url('assets/logos/Tuerca.svg') no-repeat center/contain;
}

.tuerca-deco1 {
    right: 90%;
    transform: translateX(-50%);
}

.tuerca-deco2 {
    left: 100%;
    transform: translateX(-50%);
}

/* ==== Responsive ==== */
@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;
    }
}

@media (max-width:991.98px) {
    .contact-photo {
        height: 55vh;
        min-height: 320px;
    }
}