/* ============================================================================
   PREGUNTAS FRECUENTES — REDISEÑO INTERNO
   ----------------------------------------------------------------------------
   Reglas:
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Contenido dinámico desde tabla marcas3.
   - Bootstrap 4 collapse.
   ============================================================================ */


/* ============================================================================
   01. BANNER INTERNO
   ============================================================================ */

.gar-faq-hero {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gar-primary-deep);
    font-family: var(--gar-font-body);
}

.gar-faq-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.34;
    transform: scale(1.06);
}

.gar-faq-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 50, 71, 0.96) 0%,
            rgba(0, 90, 127, 0.86) 52%,
            rgba(0, 50, 71, 0.82) 100%
        );
}

.gar-faq-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.gar-faq-hero__shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(216, 184, 109, 0.18);
    background: rgba(216, 184, 109, 0.08);
}

.gar-faq-hero__shape--one {
    top: 52px;
    right: 8%;
    width: 118px;
    height: 118px;
    border-radius: 30px;
    transform: rotate(18deg);
}

.gar-faq-hero__shape--two {
    left: 9%;
    bottom: -52px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.gar-faq-hero .container {
    position: relative;
    z-index: 5;
}

.gar-faq-hero__content {
    max-width: 820px;
    margin: 0 auto;
    padding: 74px 0;
    text-align: center;
}

.gar-faq-hero__content h1 {
    margin: 0;
    color: var(--gar-secondary);
    font-family: var(--gar-font-hero);
    font-size: 58px;
    font-weight: 800;
    line-height: 64px;
}

.gar-faq-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.gar-faq-hero__breadcrumb a {
    color: var(--gar-white);
    text-decoration: none;
    transition: color var(--gar-transition-fast);
}

.gar-faq-hero__breadcrumb a:hover {
    color: var(--gar-secondary-light);
    text-decoration: none;
}

.gar-faq-hero__breadcrumb span {
    color: var(--gar-secondary-light);
}

.gar-faq-hero__breadcrumb strong {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
}


/* ============================================================================
   02. SECCIÓN FAQ GENERAL
   ============================================================================ */

.gar-faq {
    position: relative;
    overflow: hidden;
    padding: var(--gar-section-padding);
    background:
        radial-gradient(circle at 8% 18%, rgba(216, 184, 109, 0.10), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(0, 90, 127, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--gar-cream) 46%, #ffffff 100%);
    color: var(--gar-text);
    font-family: var(--gar-font-body);
}

.gar-faq .container {
    position: relative;
    z-index: 3;
    max-width: 1220px;
}

.gar-faq__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-faq__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 90, 127, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(216, 184, 109, 0.08) 1px, transparent 1px);
    background-size: 24px 24px, 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.22;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
}

.gar-faq__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.44;
}

.gar-faq__glow--one {
    top: -220px;
    right: -170px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.20), transparent 70%);
}

.gar-faq__glow--two {
    left: -210px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.14), transparent 70%);
}

.gar-faq__shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gar-faq__shape--one {
    top: 12%;
    right: 4%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(216, 184, 109, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 24px 70px rgba(0, 90, 127, 0.08);
    transform: rotate(16deg);
}

.gar-faq__shape--two {
    left: 5%;
    bottom: 12%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(216, 184, 109, 0.10);
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.08);
}


/* ============================================================================
   03. HEADER
   ============================================================================ */

.gar-faq__header {
    max-width: 850px;
    margin: 0 auto 64px;
    text-align: center;
}

.gar-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 17px;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 90, 127, 0.07);
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 90, 127, 0.05);
}

.gar-faq__eyebrow i {
    color: var(--gar-secondary-dark);
    font-size: 16px;
    line-height: 1;
}

.gar-faq__title {
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-faq__title span {
    color: var(--gar-secondary-dark);
}

.gar-faq__lead {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 16px;
    line-height: 27px;
}


/* ============================================================================
   04. LAYOUT
   ============================================================================ */

.gar-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 38px;
}

.gar-faq__main,
.gar-faq__aside {
    position: relative;
    z-index: 2;
}


/* ============================================================================
   05. ACORDEÓN
   ============================================================================ */

.gar-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gar-faq__item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.86));
    box-shadow:
        0 16px 38px rgba(0, 90, 127, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition:
        border-color var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-faq__item:hover {
    border-color: rgba(216, 184, 109, 0.42);
    background: var(--gar-white);
    box-shadow: 0 24px 54px rgba(0, 90, 127, 0.12);
    transform: translateY(-3px);
}

.gar-faq__item:has(.show),
.gar-faq__item.is-open {
    border-color: rgba(216, 184, 109, 0.45);
    background: var(--gar-white);
    box-shadow: 0 24px 58px rgba(0, 90, 127, 0.13);
}

.gar-faq__item:has(.show)::before,
.gar-faq__item.is-open::before {
    width: calc(100% - 48px);
    background: linear-gradient(90deg, var(--gar-secondary), var(--gar-primary-light));
}

.gar-faq__question {
    position: relative;
    z-index: 2;
}

.gar-faq__toggle {
    width: 100%;
    min-height: 84px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 18px;
    padding: 25px 26px 23px;
    color: var(--gar-primary);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--gar-transition-fast);
}

.gar-faq__toggle:hover {
    color: var(--gar-primary-deep);
    text-decoration: none;
}

.gar-faq__question-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.86));
    color: var(--gar-secondary-dark);
    box-shadow:
        0 12px 24px rgba(0, 90, 127, 0.08),
        0 0 0 7px rgba(216, 184, 109, 0.10);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth),
        transform var(--gar-transition-smooth);
}

.gar-faq__question-icon i {
    font-size: 21px;
    line-height: 1;
}

.gar-faq__toggle:not(.collapsed) .gar-faq__question-icon {
    border-color: rgba(0, 90, 127, 0.22);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-dark));
    color: var(--gar-secondary-light);
    transform: rotate(-4deg);
}

.gar-faq__question-text {
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
}

.gar-faq__toggle:not(.collapsed) .gar-faq__question-text {
    color: var(--gar-primary-deep);
}

.gar-faq__question-action {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 50%;
    background: rgba(0, 90, 127, 0.07);
    color: var(--gar-primary);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        transform var(--gar-transition-smooth);
}

.gar-faq__question-action i {
    position: absolute;
    font-size: 17px;
    line-height: 1;
    transition:
        opacity var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-faq__icon-minus {
    opacity: 1;
    transform: scale(1);
}

.gar-faq__icon-plus {
    opacity: 0;
    transform: scale(0.65);
}

.gar-faq__toggle.collapsed .gar-faq__icon-minus {
    opacity: 0;
    transform: scale(0.65);
}

.gar-faq__toggle.collapsed .gar-faq__icon-plus {
    opacity: 1;
    transform: scale(1);
}

.gar-faq__toggle:not(.collapsed) .gar-faq__question-action {
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    transform: rotate(180deg);
}

.gar-faq__answer {
    padding: 0 26px 28px 92px;
}

.gar-faq__answer-content {
    position: relative;
    padding: 21px 24px;
    border-left: 3px solid var(--gar-secondary);
    border-radius: 0 18px 18px 0;
    background: rgba(0, 90, 127, 0.04);
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 27px;
}

.gar-faq__answer-content p {
    margin: 0 0 14px;
    color: var(--gar-text-soft);
    font-size: 15px;
    line-height: 27px;
}

.gar-faq__answer-content p:last-child {
    margin-bottom: 0;
}

.gar-faq__answer-content strong,
.gar-faq__answer-content b {
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-weight: 800;
}

.gar-faq__answer-content ul,
.gar-faq__answer-content ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.gar-faq__answer-content li {
    position: relative;
    padding-left: 28px;
    color: var(--gar-text-soft);
    font-size: 15px;
    line-height: 24px;
}

.gar-faq__answer-content li::before {
    content: "\F26E";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--gar-secondary-dark);
    font-family: "bootstrap-icons";
    font-size: 16px;
    line-height: 1;
}


/* ============================================================================
   06. CARD LATERAL
   ============================================================================ */

.gar-faq__aside {
    position: sticky;
    top: 110px;
}

.gar-faq__help-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 30px;
    background:
        radial-gradient(circle at 95% 0%, rgba(216, 184, 109, 0.18), transparent 34%),
        linear-gradient(145deg, var(--gar-primary), var(--gar-primary-deep));
    color: var(--gar-white);
    box-shadow: 0 26px 70px rgba(0, 90, 127, 0.20);
}

.gar-faq__help-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -72px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.13);
}

.gar-faq__help-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: inherit;
    pointer-events: none;
}

.gar-faq__help-icon,
.gar-faq__help-kicker,
.gar-faq__help-card h3,
.gar-faq__help-card p,
.gar-faq__help-list,
.gar-faq__help-card .gar-faq__btn {
    position: relative;
    z-index: 2;
}

.gar-faq__help-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(216, 184, 109, 0.24);
}

.gar-faq__help-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-faq__help-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-faq__help-card h3 {
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 28px;
    font-weight: 800;
    line-height: 36px;
}

.gar-faq__help-card p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 25px;
}

.gar-faq__help-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 23px 0 28px;
    padding: 0;
    list-style: none;
}

.gar-faq__help-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 22px;
}

.gar-faq__help-list li i {
    margin-top: 3px;
    color: var(--gar-secondary-light);
    font-size: 16px;
    line-height: 1;
}

.gar-faq__mini-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 15px;
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(216, 184, 109, 0.25);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(0, 90, 127, 0.08);
}

.gar-faq__mini-card > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(216, 184, 109, 0.18);
    color: var(--gar-primary);
}

.gar-faq__mini-card > span i {
    font-size: 21px;
    line-height: 1;
}

.gar-faq__mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
}

.gar-faq__mini-card p {
    margin: 0;
    color: var(--gar-text-soft);
    font-size: 13px;
    line-height: 21px;
}


/* ============================================================================
   07. BOTONES
   ============================================================================ */

.gar-faq__btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 25px;
    border: 0;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-faq__btn:hover {
    text-decoration: none;
}

.gar-faq__btn i {
    font-size: 18px;
    line-height: 1;
}

.gar-faq__btn--whatsapp {
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    box-shadow: 0 15px 32px rgba(0, 90, 127, 0.25);
}

.gar-faq__btn--whatsapp:hover {
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    box-shadow: 0 20px 40px rgba(0, 90, 127, 0.34);
    transform: translateY(-2px);
}


/* ============================================================================
   08. EMPTY STATE
   ============================================================================ */

.gar-faq__empty {
    padding: 40px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    box-shadow: 0 18px 44px rgba(0, 90, 127, 0.08);
}

.gar-faq__empty-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.18);
    color: var(--gar-primary);
}

.gar-faq__empty-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-faq__empty h3 {
    margin: 0 0 10px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 28px;
    font-weight: 800;
    line-height: 34px;
}

.gar-faq__empty p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: var(--gar-text-soft);
    font-size: 15px;
    line-height: 25px;
}


/* ============================================================================
   09. CTA FINAL
   ============================================================================ */

.gar-faq__cta {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 70px 0 0;
    padding: 28px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 5px solid var(--gar-secondary);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 10%, rgba(216, 184, 109, 0.18), transparent 30%),
        radial-gradient(circle at 5% 90%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--gar-primary) 0%, var(--gar-primary-deep) 100%);
    box-shadow:
        0 28px 80px rgba(0, 90, 127, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.gar-faq__cta::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -72px;
    width: 255px;
    height: 255px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.12);
    pointer-events: none;
}

.gar-faq__cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.14;
    pointer-events: none;
}

.gar-faq__cta-icon,
.gar-faq__cta-content,
.gar-faq__cta-action {
    position: relative;
    z-index: 2;
}

.gar-faq__cta-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(216, 184, 109, 0.24);
}

.gar-faq__cta-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-faq__cta-content span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-faq__cta-content h3 {
    margin: 0 0 6px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 27px;
    font-weight: 800;
    line-height: 32px;
}

.gar-faq__cta-content p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 24px;
}


/* ============================================================================
   10. RESPONSIVE
   ============================================================================ */

@media (max-width: 1199px) {

    .gar-faq__layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 30px;
    }

    .gar-faq__title {
        font-size: 46px;
        line-height: 51px;
    }

    .gar-faq__toggle {
        grid-template-columns: 46px minmax(0, 1fr) 40px;
        gap: 15px;
        padding: 24px 23px 22px;
    }

    .gar-faq__answer {
        padding: 0 23px 26px 85px;
    }
}

@media (max-width: 991px) {

    .gar-faq-hero {
        min-height: 300px;
    }

    .gar-faq-hero__content {
        padding: 62px 0;
    }

    .gar-faq-hero__content h1 {
        font-size: 48px;
        line-height: 55px;
    }

    .gar-faq {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-faq__header {
        margin-bottom: 50px;
    }

    .gar-faq__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-faq__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gar-faq__aside {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 18px;
    }

    .gar-faq__help-card,
    .gar-faq__mini-card {
        height: 100%;
    }

    .gar-faq__cta {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .gar-faq__cta-content p {
        margin: 0 auto;
    }

    .gar-faq__cta-action {
        width: 100%;
        max-width: 360px;
    }

    .gar-faq__cta-action .gar-faq__btn {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .gar-faq-hero {
        min-height: 270px;
    }

    .gar-faq-hero__content {
        padding: 54px 0;
        text-align: left;
    }

    .gar-faq-hero__content h1 {
        font-size: 40px;
        line-height: 46px;
    }

    .gar-faq-hero__breadcrumb {
        justify-content: flex-start;
        font-size: 14px;
    }

    .gar-faq {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-faq__header {
        margin-bottom: 42px;
        text-align: left;
    }

    .gar-faq__eyebrow {
        justify-content: flex-start;
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-faq__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-faq__lead {
        margin: 16px 0 0;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-faq__aside {
        grid-template-columns: 1fr;
    }

    .gar-faq__help-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .gar-faq__help-card h3 {
        font-size: 25px;
        line-height: 31px;
    }

    .gar-faq__help-card p {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-faq__help-list li {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-faq__btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .gar-faq__cta {
        margin-top: 48px;
        padding: 27px 20px;
        border-radius: 24px;
    }

    .gar-faq__cta-content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .gar-faq__cta-content p {
        font-size: 14px;
        line-height: 23px;
    }
}

@media (max-width: 575px) {
    
    .gar-faq-hero__content h1 {
        font-size: 35px;
        line-height: 41px;
    }

    .gar-faq {
        padding: var(--gar-section-padding-small);
    }

    .gar-faq__shape {
        display: none;
    }

    .gar-faq__header {
        margin-bottom: 38px;
    }

    .gar-faq__eyebrow {
        font-size: 10px;
        line-height: 14px;
    }

    .gar-faq__title {
        font-size: 34px;
        line-height: 40px;
    }

    .gar-faq__lead {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-faq__toggle {
        grid-template-columns: 1fr 36px;
        gap: 12px;
        padding: 22px 16px 20px;
    }

    .gar-faq__question-icon {
        display: none;
    }

    .gar-faq__question-text {
        font-size: 15px;
        line-height: 22px;
    }

    .gar-faq__question-action {
        width: 36px;
        height: 36px;
    }

    .gar-faq__answer {
        padding: 0 16px 20px;
    }

    .gar-faq__answer-content {
        padding: 16px;
        font-size: 14px;
        line-height: 23px;
    }

    .gar-faq__help-card {
        padding: 26px 18px;
        border-radius: 24px;
    }

    .gar-faq__help-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .gar-faq__help-icon i {
        font-size: 24px;
    }

    .gar-faq__help-card h3 {
        font-size: 23px;
        line-height: 29px;
    }

    .gar-faq__mini-card {
        grid-template-columns: 1fr;
        padding: 18px;
        text-align: center;
    }

    .gar-faq__mini-card > span {
        margin: 0 auto;
    }

    .gar-faq__empty {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .gar-faq__empty h3 {
        font-size: 23px;
        line-height: 29px;
    }

    .gar-faq__cta {
        padding: 26px 16px;
        border-radius: 22px;
    }

    .gar-faq__cta-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .gar-faq__cta-icon i {
        font-size: 24px;
    }

    .gar-faq__cta-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .gar-faq__cta-content p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* FIN PREGUNTAS FRECUENTES — REDISEÑO INTERNO */