/* =========================================================
   VENTACTIVE
   PREGUNTAS FRECUENTES
========================================================= */

.vcFaqPage {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafbfc 48%,
            #f6f7f9 100%
        );
    color: #17191f;
}


/* =========================================================
   HERO
========================================================= */

.vcFaqHero {
    position: relative;
    overflow: hidden;
    padding:
        clamp(120px, 12vw, 180px)
        clamp(20px, 5vw, 80px)
        clamp(64px, 8vw, 110px);
    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(255, 111, 39, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 30%,
            rgba(111, 76, 255, 0.07),
            transparent 28%
        ),
        #ffffff;
}

.vcFaqHero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 118, 41, 0.12),
            rgba(111, 76, 255, 0.04)
        );
    filter: blur(18px);
    pointer-events: none;
}

.vcFaqHeroInner {
    position: relative;
    z-index: 2;
    width: min(1400px, 100%);
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.vcFaqBreadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 36px;
    font-size: 13px;
    color: #8a8e98;
}

.vcFaqBreadcrumb a {
    color: #656a74;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vcFaqBreadcrumb a:hover {
    color: #15171c;
}

.vcFaqBreadcrumb strong {
    font-weight: 650;
    color: #262932;
}

.vcFaqBreadcrumb span {
    opacity: 0.55;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.vcFaqHeroContent {
    max-width: 950px;
}

.vcFaqEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(20, 22, 27, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 10px 35px rgba(18, 20, 26, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6f78;
}

.vcFaqEyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #ff7b31,
            #ff4f13
        );
    box-shadow:
        0 0 0 5px rgba(255, 104, 29, 0.08);
}

.vcFaqHero h1 {
    margin: 0;
    max-width: 900px;
    font-size:
        clamp(
            44px,
            6vw,
            82px
        );
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 760;
    color: #121318;
}

.vcFaqHeroText {
    margin:
        26px
        0
        0;
    max-width: 720px;
    font-size:
        clamp(
            17px,
            1.8vw,
            22px
        );
    line-height: 1.55;
    color: #666b75;
}


/* =========================================================
   SEARCH
========================================================= */

.vcFaqSearch {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 760px;
    margin-top: 34px;
    min-height: 66px;
    border: 1px solid rgba(20, 22, 28, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 22px 65px rgba(20, 22, 28, 0.075);
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vcFaqSearch:focus-within {
    border-color: rgba(20, 22, 28, 0.14);
    box-shadow:
        0 24px 75px rgba(20, 22, 28, 0.1);
    transform: translateY(-1px);
}

.vcFaqSearchIcon {
    flex: 0 0 auto;
    width: 62px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #858a94;
}

.vcFaqSearchIcon svg {
    width: 22px;
    height: 22px;
}

.vcFaqSearch input {
    flex: 1;
    min-width: 0;
    height: 66px;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 16px;
    color: #1b1d23;
}

.vcFaqSearch input::placeholder {
    color: #a2a6ae;
}

.vcFaqSearchClear {
    flex: 0 0 auto;
    width: 52px;
    height: 66px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #969aa3;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.vcFaqSearchClear:hover {
    color: #1a1c21;
    background: #f6f7f9;
}

.vcFaqSearchClear svg {
    width: 18px;
    height: 18px;
}

.vcFaqSearchMeta {
    min-height: 21px;
    margin-top: 12px;
    font-size: 13px;
    color: #8b8f97;
}


/* =========================================================
   CONTENT
========================================================= */

.vcFaqContent {
    position: relative;
    padding:
        clamp(48px, 7vw, 86px)
        clamp(20px, 5vw, 80px)
        clamp(90px, 9vw, 130px);
}

.vcFaqContentInner {
    width: min(1400px, 100%);
    margin: 0 auto;
}


/* =========================================================
   CATEGORY FILTERS
========================================================= */

.vcFaqCategories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.vcFaqCategory {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid rgba(20, 22, 28, 0.07);
    border-radius: 999px;
    background: #ffffff;
    color: #656a73;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vcFaqCategory:hover {
    transform: translateY(-1px);
    border-color: rgba(20, 22, 28, 0.11);
    color: #1d2026;
    box-shadow:
        0 8px 26px rgba(20, 22, 28, 0.05);
}

.vcFaqCategory.is-active {
    background:
        linear-gradient(
            135deg,
            #181a20,
            #282b33
        );
    color: #ffffff;
    border-color: transparent;
    box-shadow:
        0 10px 30px rgba(18, 20, 25, 0.16);
}


/* =========================================================
   FEATURED
========================================================= */

.vcFaqFeatured {
    margin-bottom: clamp(60px, 8vw, 100px);
}

.vcFaqSectionIntro {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 460px);
    align-items: end;
    gap: 40px;
    margin-bottom: 26px;
}

.vcFaqSectionEyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #9a9ea6;
}

.vcFaqSectionIntro h2 {
    margin: 0;
    font-size:
        clamp(
            30px,
            4vw,
            52px
        );
    line-height: 1.04;
    letter-spacing: -0.045em;
    color: #17191f;
}

.vcFaqSectionIntro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #737882;
}

.vcFaqFeaturedGrid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 18px;
}

.vcFaqFeaturedCard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(20, 22, 28, 0.06);
    border-radius: 24px;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    box-shadow:
        0 18px 55px rgba(17, 20, 26, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.vcFaqFeaturedCard:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 22, 28, 0.1);
    box-shadow:
        0 28px 75px rgba(17, 20, 26, 0.075);
}

.vcFaqFeaturedCategory {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9da1a9;
}

.vcFaqFeaturedCard strong {
    max-width: 90%;
    font-size: 18px;
    line-height: 1.4;
    color: #20232a;
}

.vcFaqFeaturedArrow {
    margin-top: auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f5f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292c32;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.vcFaqFeaturedCard:hover .vcFaqFeaturedArrow {
    transform: translateX(3px);
    background: #eceef2;
}

.vcFaqFeaturedArrow svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   FAQ GROUPS
========================================================= */

.vcFaqGroups {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 92px);
}

.vcFaqGroup {
    scroll-margin-top: 120px;
}

.vcFaqGroupHeader {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 450px);
    align-items: end;
    gap: 40px;
    margin-bottom: 24px;
}

.vcFaqGroupLabel {
    display: inline-block;
    margin-bottom: 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #a0a4ab;
}

.vcFaqGroupHeader h2 {
    margin: 0;
    font-size:
        clamp(
            29px,
            4vw,
            46px
        );
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #17191f;
}

.vcFaqGroupHeader p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #757a83;
}


/* =========================================================
   ACCORDION
========================================================= */

.vcFaqAccordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vcFaqItem {
    scroll-margin-top: 125px;
    border: 1px solid rgba(20, 22, 28, 0.065);
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow:
        0 14px 45px rgba(17, 20, 26, 0.035);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vcFaqItem:hover {
    border-color: rgba(20, 22, 28, 0.1);
    box-shadow:
        0 20px 55px rgba(17, 20, 26, 0.055);
}

.vcFaqItem.is-open {
    border-color: rgba(20, 22, 28, 0.12);
    box-shadow:
        0 22px 60px rgba(17, 20, 26, 0.065);
}

.vcFaqQuestion {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        44px;
    align-items: center;
    gap: 20px;
    min-height: 78px;
    padding:
        20px
        22px
        20px
        26px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.vcFaqQuestionText {
    font-size:
        clamp(
            16px,
            1.5vw,
            19px
        );
    line-height: 1.45;
    font-weight: 680;
    color: #22252b;
}

.vcFaqToggleIcon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        transform 0.25s ease;
}

.vcFaqToggleIcon span {
    position: absolute;
    width: 15px;
    height: 1.7px;
    border-radius: 999px;
    background: #33363d;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.vcFaqToggleIcon span:last-child {
    transform: rotate(90deg);
}

.vcFaqItem.is-open .vcFaqToggleIcon {
    background: #1b1d23;
    transform: rotate(180deg);
}

.vcFaqItem.is-open .vcFaqToggleIcon span {
    background: #ffffff;
}

.vcFaqItem.is-open .vcFaqToggleIcon span:last-child {
    opacity: 0;
    transform: rotate(0deg);
}


/* =========================================================
   ANSWER
========================================================= */

.vcFaqAnswer {
    border-top: 1px solid rgba(20, 22, 28, 0.055);
}

.vcFaqAnswerInner {
    padding:
        22px
        88px
        28px
        26px;
    max-width: 980px;
    font-size:
        clamp(
            15px,
            1.25vw,
            17px
        );
    line-height: 1.8;
    color: #656a73;
}


/* =========================================================
   NO RESULTS
========================================================= */

.vcFaqNoResults {
    margin-top: 50px;
    padding:
        clamp(36px, 6vw, 64px);
    border: 1px solid rgba(20, 22, 28, 0.06);
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
    box-shadow:
        0 18px 60px rgba(17, 20, 26, 0.04);
}

.vcFaqNoResultsIcon {
    width: 62px;
    height: 62px;
    margin:
        0
        auto
        20px;
    border-radius: 20px;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #767b84;
}

.vcFaqNoResultsIcon svg {
    width: 26px;
    height: 26px;
}

.vcFaqNoResults h2 {
    margin: 0;
    font-size:
        clamp(
            26px,
            4vw,
            38px
        );
    letter-spacing: -0.035em;
    color: #191b21;
}

.vcFaqNoResults p {
    max-width: 520px;
    margin:
        14px
        auto
        0;
    font-size: 15px;
    line-height: 1.7;
    color: #777c85;
}

.vcFaqNoResults button {
    min-height: 48px;
    margin-top: 24px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    background: #191b21;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.vcFaqNoResults button:hover {
    transform: translateY(-1px);
    background: #292c33;
}


/* =========================================================
   HELP CTA
========================================================= */

.vcFaqHelp {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 36px;
    margin-top: clamp(70px, 9vw, 110px);
    padding:
        clamp(32px, 5vw, 54px);
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            #17191f 0%,
            #24272f 100%
        );
    color: #ffffff;
    box-shadow:
        0 30px 90px rgba(13, 15, 20, 0.18);
}

.vcFaqHelp::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -130px;
    top: -170px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 115, 42, 0.32),
            transparent 68%
        );
    pointer-events: none;
}

.vcFaqHelp::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -180px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(112, 82, 255, 0.2),
            transparent 70%
        );
    pointer-events: none;
}

.vcFaqHelpContent,
.vcFaqHelpAction {
    position: relative;
    z-index: 2;
}

.vcFaqHelpContent {
    max-width: 720px;
}

.vcFaqHelpEyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.vcFaqHelp h2 {
    margin: 0;
    font-size:
        clamp(
            29px,
            4vw,
            48px
        );
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vcFaqHelp p {
    margin: 16px 0 0;
    max-width: 630px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.vcFaqHelpButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 15px;
    background: #ffffff;
    color: #17191f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.vcFaqHelpButton:hover {
    transform: translateY(-2px);
    background: #f5f5f7;
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.16);
}

.vcFaqHelpButton svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.vcFaqHelpButton:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   STATES USED BY JS
========================================================= */

.vcFaqGroup[hidden],
.vcFaqItem[hidden],
.vcFaqFeaturedCard[hidden],
.vcFaqFeatured[hidden],
.vcFaqNoResults[hidden] {
    display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .vcFaqFeaturedGrid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .vcFaqSectionIntro,
    .vcFaqGroupHeader {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vcFaqSectionIntro p,
    .vcFaqGroupHeader p {
        max-width: 720px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .vcFaqHero {
        padding:
            112px
            18px
            58px;
    }

    .vcFaqBreadcrumb {
        margin-bottom: 28px;
        font-size: 12px;
    }

    .vcFaqHero h1 {
        font-size:
            clamp(
                40px,
                13vw,
                58px
            );
        line-height: 1;
    }

    .vcFaqHeroText {
        font-size: 16px;
    }


    /* SEARCH */

    .vcFaqSearch {
        min-height: 58px;
        margin-top: 26px;
        border-radius: 17px;
    }

    .vcFaqSearchIcon {
        width: 52px;
        height: 58px;
    }

    .vcFaqSearch input {
        height: 58px;
        font-size: 15px;
    }

    .vcFaqSearchClear {
        width: 48px;
        height: 58px;
    }


    /* CONTENT */

    .vcFaqContent {
        padding:
            34px
            15px
            80px;
    }


    /* CATEGORIES */

    .vcFaqCategories {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin:
            0
            -15px
            42px;
        padding:
            0
            15px
            8px;
        scrollbar-width: none;
    }

    .vcFaqCategories::-webkit-scrollbar {
        display: none;
    }

    .vcFaqCategory {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 15px;
    }


    /* FEATURED */

    .vcFaqFeatured {
        margin-bottom: 62px;
    }

    .vcFaqFeaturedGrid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .vcFaqFeaturedCard {
        min-height: 160px;
        padding: 22px;
        border-radius: 21px;
    }


    /* GROUPS */

    .vcFaqGroups {
        gap: 58px;
    }

    .vcFaqGroupHeader {
        margin-bottom: 19px;
    }


    /* ACCORDION */

    .vcFaqAccordion {
        gap: 10px;
    }

    .vcFaqItem {
        border-radius: 18px;
    }

    .vcFaqQuestion {
        grid-template-columns:
            minmax(0, 1fr)
            38px;
        min-height: 70px;
        gap: 13px;
        padding:
            18px
            16px
            18px
            18px;
    }

    .vcFaqQuestionText {
        font-size: 16px;
    }

    .vcFaqToggleIcon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .vcFaqAnswerInner {
        padding:
            18px
            18px
            23px;
        font-size: 15px;
        line-height: 1.75;
    }


    /* HELP */

    .vcFaqHelp {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 66px;
        padding: 30px 22px;
        border-radius: 24px;
    }

    .vcFaqHelpButton {
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .vcFaqHero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vcFaqContent {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vcFaqCategories {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .vcFaqFeaturedCard {
        padding: 20px 18px;
    }

    .vcFaqFeaturedCard strong {
        font-size: 17px;
    }

    .vcFaqQuestion {
        padding-left: 16px;
        padding-right: 14px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vcFaqSearch,
    .vcFaqCategory,
    .vcFaqFeaturedCard,
    .vcFaqFeaturedArrow,
    .vcFaqItem,
    .vcFaqToggleIcon,
    .vcFaqToggleIcon span,
    .vcFaqHelpButton,
    .vcFaqHelpButton svg {
        transition: none;
    }

}

/* =========================================================
   FEATURED QUESTION HIGHLIGHT
========================================================= */

.vcFaqItemHighlight {
    animation:
        vcFaqHighlight
        1.4s ease;
}

@keyframes vcFaqHighlight {

    0% {
        box-shadow:
            0 0 0 0
            rgba(255, 105, 30, 0);
    }

    25% {
        box-shadow:
            0 0 0 5px
            rgba(255, 105, 30, 0.13),
            0 22px 60px
            rgba(17, 20, 26, 0.08);
    }

    100% {
        box-shadow:
            0 22px 60px
            rgba(17, 20, 26, 0.065);
    }

}