/* ============================================================================
   HEADER + PREHEADER + NAVEGACIÓN
   ----------------------------------------------------------------------------
   Objetivo de este bloque:
   - Mantener el header sticky.
   - Conservar preheader con contacto y redes.
   - Conservar menú desktop con dropdown.
   - Conservar menú mobile tipo panel lateral.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. HEADER GENERAL
   ============================================================================ */

.gar-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: var(--gar-white);
    font-family: var(--gar-font-body);
    box-shadow: 0 1px 0 rgba(0, 90, 127, 0.08);
    transition:
        background var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

/* Estado sticky cuando el usuario hace scroll */
.gar-header.is-sticky {
    box-shadow: 0 8px 28px rgba(0, 90, 127, 0.12);
}

/* Al hacer scroll, el preheader se oculta para ahorrar espacio vertical */
.gar-header.is-sticky .gar-preheader {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

/* Al hacer scroll, el header principal baja su altura */
.gar-header.is-sticky .gar-header__main {
    padding: 8px 0;
}


/* ============================================================================
   02. PREHEADER
   ============================================================================ */

.gar-preheader {
    max-height: 44px;
    padding: 9px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--gar-primary-deep) 0%, var(--gar-primary-dark) 100%);
    color: var(--gar-cream);
    font-family: var(--gar-font-body);
    font-size: 14px;
    line-height: 1.3;
    transition:
        max-height var(--gar-transition-smooth),
        padding var(--gar-transition-smooth),
        border var(--gar-transition-smooth);
}

.gar-preheader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    flex-wrap: wrap;
}

/* Lista de datos de contacto */
.gar-preheader__contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gar-preheader__contact li {
    display: inline-flex;
    align-items: center;
}

.gar-preheader__contact a,
.gar-preheader__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(250, 247, 240, 0.92);
    text-decoration: none;
    transition:
        color var(--gar-transition-fast),
        opacity var(--gar-transition-fast);
}

.gar-preheader__contact a:hover {
    color: var(--gar-secondary-light);
    opacity: 1;
    text-decoration: none;
}

.gar-preheader__contact i {
    color: var(--gar-secondary);
    font-size: 15px;
    line-height: 1;
}

/* Lista de redes sociales */
.gar-preheader__social {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gar-preheader__social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.13);
    color: var(--gar-cream);
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-preheader__social a:hover {
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    transform: translateY(-2px);
    text-decoration: none;
}


/* ============================================================================
   03. HEADER PRINCIPAL
   ============================================================================ */

.gar-header__main {
    padding: 5px 0;
    border-bottom: 1px solid var(--gar-border);
    background: var(--gar-white);
    transition:
        padding var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth);
}

.gar-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.gar-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gar-header__logo a {
    display: inline-block;
    line-height: 0;
}

.gar-header__logo img {
    display: block;
    width: auto;
    height: 82px;
    transition: height var(--gar-transition-smooth);
}

.gar-header.is-sticky .gar-header__logo img {
    height: 58px;
}

/* Acciones del header */
.gar-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* CTA del header */
.gar-header__cta {
    min-height: 46px;
    padding: 13px 22px 16px 22px !important;
    font-size: 14px !important;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 90, 127, 0.22);
}

.gar-header__cta i {
    font-size: 18px;
    line-height: 1;
}


/* ============================================================================
   04. NAVEGACIÓN DESKTOP
   ============================================================================ */

.gar-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Lista principal del menú */
.gar-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item principal */
.gar-nav__item {
    position: relative;
}

/* Enlace principal */
.gar-nav__item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 15px;
    border-radius: var(--gar-radius-sm);
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        color var(--gar-transition-fast),
        background var(--gar-transition-fast);
}

.gar-nav__item > a:hover,
.gar-nav__item--current > a {
    color: var(--gar-secondary-dark);
    background: rgba(216, 184, 109, 0.10);
    text-decoration: none;
}

/* Línea inferior sutil para estado hover/current */
.gar-nav__item > a::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: var(--gar-secondary);
    opacity: 0;
    transform: scaleX(0.65);
    transition:
        opacity var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-nav__item > a:hover::after,
.gar-nav__item--current > a::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Item destacado, por ejemplo Ley de Insolvencia */
.gar-nav__item--highlight > a {
    background: var(--gar-primary-soft);
    border: 1px solid rgba(0, 90, 127, 0.12);
    color: var(--gar-primary);
}

.gar-nav__item--highlight > a i {
    color: var(--gar-secondary-dark);
    font-size: 16px;
    line-height: 1;
}

.gar-nav__item--highlight > a:hover {
    background: var(--gar-primary);
    border-color: var(--gar-primary);
    color: var(--gar-white);
}

.gar-nav__item--highlight > a:hover i {
    color: var(--gar-secondary-light);
}

/* En el item destacado no necesitamos línea inferior */
.gar-nav__item--highlight > a::after {
    display: none;
}

/* Chevron de dropdown */
.gar-nav__chevron {
    font-size: 12px;
    line-height: 1;
    transition: transform var(--gar-transition-fast);
}

.gar-nav__item--open .gar-nav__chevron,
.gar-nav__item--has-children:hover .gar-nav__chevron {
    transform: rotate(180deg);
}


/* ============================================================================
   05. SUBMENÚ DESKTOP
   ============================================================================ */

.gar-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 250px;
    margin: 8px 0 0;
    padding: 8px;
    list-style: none;
    background: var(--gar-white);
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: var(--gar-radius-md);
    box-shadow: 0 18px 45px rgba(0, 90, 127, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity var(--gar-transition-smooth),
        visibility var(--gar-transition-smooth),
        transform var(--gar-transition-smooth);
}

/* Mostrar submenú en desktop al hover */
.gar-nav__item--has-children:hover > .gar-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gar-nav__submenu li {
    margin: 0;
    padding: 0;
}

.gar-nav__submenu li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--gar-radius-sm);
    color: var(--gar-primary);
    font-family: var(--gar-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        padding var(--gar-transition-fast);
}

.gar-nav__submenu li a:hover {
    padding-left: 18px;
    background: var(--gar-primary-soft);
    color: var(--gar-primary-dark);
    text-decoration: none;
}


/* ============================================================================
   06. BOTÓN HAMBURGUESA
   ============================================================================ */

.gar-header__toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(0, 90, 127, 0.12);
    border-radius: var(--gar-radius-sm);
    background: var(--gar-white);
    cursor: pointer;
    transition:
        background var(--gar-transition-fast),
        border-color var(--gar-transition-fast);
}

.gar-header__toggle:hover {
    background: var(--gar-primary-soft);
    border-color: rgba(0, 90, 127, 0.22);
}

.gar-header__toggle span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--gar-primary);
    transform-origin: center;
    transition: all var(--gar-transition-smooth);
}

/* Estado activo: hamburguesa convertida en X */
.gar-header__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.gar-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.gar-header__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================================
   07. OVERLAY MOBILE
   ============================================================================ */

.gar-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1019;
    background: rgba(0, 50, 71, 0.62);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--gar-transition-smooth),
        visibility var(--gar-transition-smooth);
}

.gar-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
}


/* ============================================================================
   08. BOTÓN CERRAR MENÚ MOBILE
   ============================================================================ */

.gar-nav__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gar-border);
    border-radius: 50%;
    background: var(--gar-cream);
    color: var(--gar-primary);
    font-size: 16px;
    cursor: pointer;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        border-color var(--gar-transition-fast);
}

.gar-nav__close:hover {
    background: var(--gar-primary);
    border-color: var(--gar-primary);
    color: var(--gar-white);
}


/* ============================================================================
   09. RESPONSIVE HEADER
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-header__logo img {
        height: 72px;
    }

    .gar-header.is-sticky .gar-header__logo img {
        height: 56px;
    }

    .gar-nav__item > a {
        padding: 11px 11px;
        font-size: 14px;
    }

    .gar-header__cta {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}


/* ---------------------------------------------------------------------------
   Tablet y mobile horizontal
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-preheader {
        max-height: none;
        padding: 8px 0;
        font-size: 13px;
    }

    .gar-preheader__inner {
        justify-content: center;
        text-align: center;
    }

    .gar-preheader__contact {
        justify-content: center;
        gap: 16px;
    }

    .gar-preheader__contact a span,
    .gar-preheader__location span {
        font-size: 13px;
    }

    .gar-preheader__social {
        display: none;
    }

    .gar-header__main {
        padding: 10px 0;
    }

    .gar-header.is-sticky .gar-header__main {
        padding: 8px 0;
    }

    .gar-header__logo img {
        height: 54px;
    }

    .gar-header.is-sticky .gar-header__logo img {
        height: 48px;
    }

    .gar-header__cta {
        display: none !important;
    }

    .gar-header__toggle {
        display: inline-flex;
    }

    /* Panel lateral mobile */
    .gar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1030;
        width: 330px;
        max-width: 86vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 78px 22px 30px;
        overflow-y: auto;
        background: var(--gar-white);
        box-shadow: -12px 0 42px rgba(0, 90, 127, 0.18);
        transition: right var(--gar-transition-smooth);
    }

    .gar-nav.is-open {
        right: 0;
    }

    .gar-nav__close {
        display: inline-flex;
    }

    .gar-nav__menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .gar-nav__item {
        border-bottom: 1px solid var(--gar-border);
    }

    .gar-nav__item:last-child {
        border-bottom: none;
    }

    .gar-nav__item > a {
        width: 100%;
        justify-content: space-between;
        padding: 16px 6px;
        border-radius: 0;
        font-size: 16px;
        line-height: 1.25;
    }

    .gar-nav__item > a::after {
        display: none;
    }

    .gar-nav__item > a:hover,
    .gar-nav__item--current > a {
        background: transparent;
        color: var(--gar-secondary-dark);
    }

    .gar-nav__item--highlight {
        padding: 10px 0;
    }

    .gar-nav__item--highlight > a {
        padding: 16px !important;
        border-radius: var(--gar-radius-sm);
        background: var(--gar-primary-soft);
        border: 1px solid rgba(0, 90, 127, 0.12);
    }

    .gar-nav__item--highlight > a:hover {
        background: var(--gar-primary);
        color: var(--gar-white);
    }

    /* Submenú mobile tipo acordeón */
    .gar-nav__submenu {
        position: static;
        min-width: 0;
        max-height: 0;
        margin: 0 0 0;
        padding: 0 6px;
        overflow: hidden;
        background: var(--gar-cream);
        border: 0;
        border-radius: var(--gar-radius-sm);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height var(--gar-transition-smooth),
            padding var(--gar-transition-smooth),
            margin var(--gar-transition-smooth);
    }

    .gar-nav__item--open > .gar-nav__submenu {
        max-height: 520px;
        margin: 0 0 10px;
        padding: 6px;
    }

    .gar-nav__submenu li a {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.35;
    }

    .gar-nav__submenu li a:hover {
        padding-left: 16px;
        background: var(--gar-white);
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-preheader {
        display: none !important;
    }

    .gar-header__main {
        padding: 9px 0;
    }

    .gar-header.is-sticky .gar-header__main {
        padding: 8px 0;
    }

    .gar-header__row {
        gap: 12px;
    }

    .gar-header__logo img {
        height: 58px;
    }

    .gar-header.is-sticky .gar-header__logo img {
        height: 50px;
    }

    .gar-header__toggle {
        width: 42px;
        height: 42px;
    }

    .gar-header__toggle span {
        width: 23px;
    }

    .gar-nav {
        width: 320px;
        max-width: 88vw;
        padding: 76px 20px 28px;
    }

    .gar-nav__item > a {
        padding: 15px 4px;
        font-size: 15px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-header__main {
        padding: 8px 0;
    }

    .gar-header__logo img {
        height: 62px;
    }

    .gar-header.is-sticky .gar-header__logo img {
        height: 48px;
    }

    .gar-header__actions {
        gap: 10px;
    }

    .gar-header__toggle {
        width: 40px;
        height: 40px;
        gap: 5px;
    }

    .gar-header__toggle span {
        width: 22px;
    }

    .gar-nav {
        width: 300px;
        max-width: 88vw;
        padding: 72px 18px 26px;
    }

    .gar-nav__close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .gar-nav__item > a {
        padding: 14px 4px;
        font-size: 15px;
    }

    .gar-nav__item--highlight > a {
        padding: 15px !important;
    }

    .gar-nav__submenu li a {
        padding: 10px;
        font-size: 14px;
    }
}

/* FIN HEADER + PREHEADER + NAVEGACIÓN */

/* ============================================================================
   HERO SLIDER
   ----------------------------------------------------------------------------
   Objetivo de este bloque:
   - Mantener el hero tipo slider con Swiper.
   - Conservar animaciones de entrada por slide activo.
   - Conservar imagen principal de la abogada y sello.
   - Conservar botones, navegación, paginación y bloque de confianza.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px para medidas principales.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL DEL HERO
   ============================================================================ */

.gar-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--gar-primary-deep);
    font-family: var(--gar-font-body);
}

.gar-hero__swiper {
    width: 100%;
    height: 100%;
}

.gar-hero__slide {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* ============================================================================
   02. FONDO DEL SLIDE
   ============================================================================ */

.gar-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.08);
    transition: transform 8000ms ease-out;
}

.swiper-slide-active .gar-hero__bg {
    transform: scale(1);
}

/* Overlay principal del hero */
.gar-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) 42%,
            rgba(0, 90, 127, 0.55) 68%,
            rgba(0, 50, 71, 0.82) 100%
        );
}


/* ============================================================================
   03. DECORACIONES DEL HERO
   ============================================================================ */

.gar-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: rgba(216, 184, 109, 0.18);
    pointer-events: none;
}

.gar-hero__decor-statue {
    position: absolute;
    left: 24px;
    bottom: 0;
    width: auto;
    height: 75%;
    max-height: 580px;
    color: rgba(216, 184, 109, 0.20);
}

.gar-hero__decor-curve {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    color: rgba(216, 184, 109, 0.42);
}


/* ============================================================================
   04. CONTENIDO PRINCIPAL DEL HERO
   ============================================================================ */

.gar-hero__content {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding: 80px 0 96px;
    color: var(--gar-white);
}

/* Eyebrow superior */
.gar-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    padding: 8px 19px;
    border: 1px solid rgba(216, 184, 109, 0.42);
    border-radius: 999px;
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 600ms ease-out;
    transition-delay: 200ms;
}

.swiper-slide-active .gar-hero__eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* Punto pulsante del eyebrow */
.gar-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 10px rgba(216, 184, 109, 0.70);
    animation: gar-hero-eyebrow-pulse 2000ms ease-in-out infinite;
}

@keyframes gar-hero-eyebrow-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}


/* ============================================================================
   05. TÍTULO Y SUBTÍTULO
   ============================================================================ */

.gar-hero__title {
    position: relative;
    display: inline-block;
    max-width: 640px;
    margin: 0 0 32px;
    padding-bottom: 8px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 55px;
    font-weight: 800;
    line-height: 1.08;
    opacity: 0;
    transform: translateY(30px);
    transition: all 800ms ease-out;
    transition-delay: 350ms;
}

.swiper-slide-active .gar-hero__title {
    opacity: 1;
    transform: translateY(0);
}

.gar-hero__title span,
.gar-hero__title .gar-accent {
    display: inline;
    color: var(--gar-secondary);
}

/* Subrayado dorado */
.gar-hero__title-underline {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 320px;
    max-width: 60%;
    height: auto;
    color: var(--gar-secondary);
    opacity: 0;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition:
        opacity 400ms ease,
        stroke-dashoffset 1600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .gar-hero__title-underline {
    opacity: 1;
    stroke-dashoffset: 0;
    transition-delay: 900ms;
}

.gar-hero__subtitle {
    max-width: 540px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--gar-font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 700ms ease-out;
    transition-delay: 650ms;
}

.swiper-slide-active .gar-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================================
   06. BOTONES DEL HERO
   ============================================================================ */

.gar-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 700ms ease-out;
    transition-delay: 800ms;
}

.swiper-slide-active .gar-hero__actions {
    opacity: 1;
    transform: translateY(0);
}

.gar-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 27px;
    border-radius: 999px;
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gar-hero__btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* Botón principal del hero */
.gar-hero__btn--whatsapp {
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    box-shadow: 0 14px 32px rgba(0, 90, 127, 0.34);
}

.gar-hero__btn--whatsapp:hover {
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    box-shadow: 0 18px 40px rgba(0, 90, 127, 0.44);
}

/* Ícono dentro del botón principal */
.gar-hero__btn-wa-icon {
    flex-shrink: 0;
    font-size: 21px;
    line-height: 1;
}

/* Botón secundario outline */
.gar-hero__btn--outline {
    background: transparent;
    color: var(--gar-white);
    border: 2px solid rgba(255, 255, 255, 0.52);
}

.gar-hero__btn--outline:hover {
    background: var(--gar-white);
    color: var(--gar-primary-deep);
    border-color: var(--gar-white);
}

/* Círculo de flecha del botón */
.gar-hero__btn-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: all 350ms ease;
}

.gar-hero__btn--outline .gar-hero__btn-arrow {
    background: rgba(255, 255, 255, 0.12);
}

.gar-hero__btn--outline:hover .gar-hero__btn-arrow {
    background: rgba(0, 90, 127, 0.14);
}

.gar-hero__btn-arrow i {
    font-size: 15px;
    line-height: 1;
    transition: transform 350ms ease;
}

.gar-hero__btn:hover .gar-hero__btn-arrow i {
    transform: translateX(3px);
}


/* ============================================================================
   07. BLOQUE DE CONFIANZA
   ============================================================================ */

.gar-hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 700ms ease-out;
    transition-delay: 950ms;
}

.swiper-slide-active .gar-hero__trust {
    opacity: 1;
    transform: translateY(0);
}

.gar-hero__trust-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gar-hero__trust-avatar {
    width: 42px;
    height: 42px;
    margin-left: -10px;
    border: 2px solid var(--gar-primary-deep);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
    transition: transform 300ms ease;
}

.gar-hero__trust-avatar:first-child {
    margin-left: 0;
}

.gar-hero__trust-avatars:hover .gar-hero__trust-avatar {
    transform: translateY(-2px);
}

/* Avatares de referencia */
.gar-hero__trust-avatar--1 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=120&q=80');
}

.gar-hero__trust-avatar--2 {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=120&q=80');
}

.gar-hero__trust-avatar--3 {
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=120&q=80');
}

.gar-hero__trust-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gar-hero__trust-text {
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--gar-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.gar-hero__trust-text strong {
    color: var(--gar-white);
    font-weight: 700;
}

.gar-hero__trust-rating {
    display: flex;
    align-items: center;
    gap: 9px;
}

.gar-hero__trust-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--gar-secondary);
    font-size: 13px;
}

.gar-hero__trust-rating-text {
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--gar-font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}


/* ============================================================================
   08. PAGINACIÓN DEL SLIDER
   ============================================================================ */

.gar-hero__pagination {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    bottom: 32px !important;
    z-index: 10;
    width: 100% !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: none !important;
    pointer-events: none;
}

.gar-hero__pagination .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    margin: 0 !important;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.26);
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: all var(--gar-transition-smooth);
}

.gar-hero__pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.52);
}

.gar-hero__pagination .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--gar-secondary);
}


/* ============================================================================
   09. FLECHAS DE NAVEGACIÓN
   ============================================================================ */

.gar-hero__nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--gar-white);
    font-size: 19px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all var(--gar-transition-smooth);
}

.gar-hero__nav::after {
    display: none;
}

.gar-hero__nav:hover {
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    border-color: var(--gar-secondary);
    transform: translateY(-50%) scale(1.05);
}

.gar-hero__nav--prev {
    left: 29px;
}

.gar-hero__nav--next {
    right: 29px;
}


/* ============================================================================
   10. FIGURA PRINCIPAL DEL HERO
   ============================================================================ */

.gar-hero__figure {
    position: absolute;
    top: 50%;
    right: 112px;
    z-index: 4;
    width: 460px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    animation: gar-hero-figure-in 1200ms ease-out 500ms forwards;
}

@keyframes gar-hero-figure-in {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Foto principal */
.gar-hero__figure-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    border-radius: 38px;
    background:
        linear-gradient(
            135deg,
            var(--gar-primary-light) 0%,
            var(--gar-primary-dark) 100%
        );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(216, 184, 109, 0.18);
}

.gar-hero__figure-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) brightness(1.02);
}

/* Sello circular sobre la imagen */
.gar-hero__figure-seal {
    position: absolute;
    left: -70px;
    top: 50%;
    z-index: 5;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border: 3px solid var(--gar-secondary);
    border-radius: 50%;
    background: var(--gar-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
    transform: translateY(-50%);
}

.gar-hero__figure-seal img {
    width: 100%;
    height: 100%;
    display: block;
    border: 8px solid var(--gar-primary-light);
    object-fit: cover;
}


/* ============================================================================
   11. RESPONSIVE HERO
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Desktop grande
   --------------------------------------------------------------------------- */

@media (min-width: 1500px) {
    .gar-hero__figure {
        right: 80px;
        width: 500px;
    }

    .gar-hero__figure-seal {
        left: -80px;
        width: 175px;
        height: 175px;
    }

    .gar-hero__content {
        max-width: 700px;
    }

    .gar-hero__title {
        font-size: 58px;
    }
}


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-hero__figure {
        display: none !important;
    }

    .gar-hero__slide {
        min-height: 660px;
    }

    .gar-hero__content {
        max-width: 100%;
        padding: 72px 0 88px;
    }

    .gar-hero__decor-statue {
        height: 65%;
        opacity: 0.55;
    }

    .gar-hero__nav {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .gar-hero__nav--prev {
        left: 16px;
    }

    .gar-hero__nav--next {
        right: 16px;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-hero__slide {
        min-height: 640px;
    }

    .gar-hero__content {
        padding: 68px 0 86px;
    }

    .gar-hero__title {
        max-width: 620px;
        font-size: 48px;
        line-height: 1.12;
    }

    .gar-hero__subtitle {
        max-width: 600px;
        font-size: 16px;
        line-height: 28px;
    }

    .gar-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 50, 71, 0.96) 0%,
                rgba(0, 90, 127, 0.84) 55%,
                rgba(0, 50, 71, 0.86) 100%
            );
    }

    .gar-hero__decor-curve {
        opacity: 0.55;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-hero__slide {
        min-height: 600px;
    }

    .gar-hero__content {
        padding: 64px 0 80px;
    }

    .gar-hero__eyebrow {
        gap: 9px;
        margin-bottom: 16px;
        padding: 7px 16px;
        font-size: 11px;
    }

    .gar-hero__title {
        max-width: 100%;
        margin-bottom: 26px;
        font-size: 38px;
        line-height: 1.18;
    }

    .gar-hero__title-underline {
        bottom: -5px;
        width: 200px;
    }

    .gar-hero__subtitle {
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 26px;
    }

    .gar-hero__actions {
        gap: 12px;
        margin-bottom: 35px;
    }

    .gar-hero__btn {
        width: 100%;
        justify-content: space-between;
        padding: 15px 20px;
        font-size: 15px;
    }

    .gar-hero__decor-statue {
        left: -16px;
        height: 55%;
        opacity: 0.32;
    }

    .gar-hero__decor-curve {
        width: 80%;
        opacity: 0.32;
    }

    .gar-hero__trust {
        align-items: flex-start;
        gap: 14px;
    }

    .gar-hero__trust-avatar {
        width: 36px;
        height: 36px;
    }

    .gar-hero__trust-text {
        font-size: 14px;
        line-height: 19px;
    }

    .gar-hero__trust-rating-text {
        font-size: 12px;
    }

    .gar-hero__trust-stars {
        font-size: 12px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-hero__slide {
        min-height: 580px;
    }

    .gar-hero__content {
        padding: 56px 0 74px;
    }

    .gar-hero__nav {
        display: none;
    }

    .gar-hero__pagination {
        bottom: 22px !important;
    }

    .gar-hero__pagination .swiper-pagination-bullet {
        width: 24px;
    }

    .gar-hero__pagination .swiper-pagination-bullet-active {
        width: 44px;
    }

    .gar-hero__decor-statue {
        display: none;
    }

    .gar-hero__decor-curve {
        opacity: 0.25;
    }

    .gar-hero__eyebrow {
        max-width: 100%;
        padding: 7px 14px;
        font-size: 10px;
        line-height: 14px;
    }

    .gar-hero__title {
        font-size: 34px;
        line-height: 1.2;
    }

    .gar-hero__subtitle {
        font-size: 15px;
        line-height: 25px;
    }

    .gar-hero__actions {
        margin-bottom: 30px;
    }

    .gar-hero__trust {
        gap: 12px;
    }

    .gar-hero__trust-info {
        gap: 5px;
    }

    .gar-hero__trust-text {
        font-size: 13px;
        line-height: 18px;
    }

    .gar-hero__trust-rating {
        gap: 7px;
    }
}

/* FIN HERO SLIDER */

/* ============================================================================
   PROBLEMAS / DIAGNÓSTICO FINANCIERO
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Conectar emocionalmente con el usuario que tiene deudas, embargos,
     llamadas de bancos o presión financiera.
   - Mostrar visualmente una situación de diagnóstico legal-financiero.
   - Convertir el contenido dinámico del administrador en cards modernas.
   - Mantener el collage visual lateral.
   - Mantener CTA final hacia WhatsApp / diagnóstico.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-problems {
    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, #f7f8f6 0%, var(--gar-cream) 100%);
    color: var(--gar-text);
    font-family: var(--gar-font-body);
}

.gar-problems .container {
    position: relative;
    z-index: 3;
}


/* ============================================================================
   02. DECORACIONES DE FONDO
   ============================================================================ */

.gar-problems__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-problems__decor-statue {
    position: absolute;
    left: -44px;
    bottom: -70px;
    width: 285px;
    height: auto;
    color: rgba(0, 90, 127, 0.055);
}

.gar-problems__decor-scale {
    position: absolute;
    top: 10%;
    right: 4%;
    width: 150px;
    height: 150px;
    color: rgba(216, 184, 109, 0.16);
    transform: rotate(-8deg);
}

/* Shapes decorativos con Bootstrap Icons */
.gar-problems__shape {
    position: absolute;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.20);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(0, 90, 127, 0.13);
    box-shadow: 0 20px 50px rgba(0, 90, 127, 0.06);
    transform: rotate(-8deg);
}

.gar-problems__shape i {
    font-size: 32px;
    line-height: 1;
}

.gar-problems__shape--one {
    top: 10%;
    left: 7%;
}

.gar-problems__shape--two {
    left: 45%;
    bottom: 9%;
    width: 92px;
    height: 92px;
    color: rgba(216, 184, 109, 0.17);
    transform: rotate(10deg);
}

.gar-problems__shape--three {
    right: 7%;
    bottom: 12%;
    color: rgba(0, 90, 127, 0.11);
    transform: rotate(12deg);
}

.gar-problems__shape--four {
    top: 18%;
    right: 18%;
    width: 58px;
    height: 58px;
    color: rgba(216, 184, 109, 0.17);
    transform: rotate(-14deg);
}


/* ============================================================================
   03. GRID PRINCIPAL
   ============================================================================ */

.gar-problems__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 72px;
    align-items: start;
}

.gar-problems__media,
.gar-problems__content {
    position: relative;
    z-index: 2;
}

.gar-problems__media {
    padding-top: 25px;
}


/* ============================================================================
   04. COLLAGE VISUAL
   ============================================================================ */

.gar-problems__collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    grid-template-rows: 255px 255px;
    gap: 20px;
    min-height: 540px;
}

.gar-problems__frame {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: 1;
    width: 74%;
    height: calc(100% - 16px);
    border: 2px solid rgba(0, 90, 127, 0.46);
    border-radius: 78px 0 78px 78px;
}

.gar-problems__photo,
.gar-problems__visual-card {
    position: relative;
    z-index: 2;
}

.gar-problems__photo {
    margin: 0;
    overflow: hidden;
    background: var(--gar-white);
    box-shadow: 0 22px 58px rgba(0, 90, 127, 0.13);
}

.gar-problems__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform var(--gar-transition-smooth),
        filter var(--gar-transition-smooth);
}

.gar-problems__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 127, 0.02),
            rgba(0, 90, 127, 0.18)
        );
    opacity: 0.72;
    pointer-events: none;
}

.gar-problems__photo--vertical {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 72px 0 72px 72px;
}

.gar-problems__photo--vertical img {
    object-position: 44% center;
}

.gar-problems__photo--top {
    grid-column: 2;
    grid-row: 1;
    border-radius: 0 72px 0 72px;
}

/* Card visual dentro del collage */
.gar-problems__visual-card {
    grid-column: 2;
    grid-row: 2;
    padding: 32px;
    overflow: hidden;
    border-radius: 0 72px 72px 0;
    background:
        linear-gradient(145deg, var(--gar-primary-light), var(--gar-primary));
    color: var(--gar-white);
    box-shadow: 0 22px 58px rgba(0, 90, 127, 0.17);
}

.gar-problems__visual-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.gar-problems__visual-icon {
    position: relative;
    z-index: 2;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.gar-problems__visual-icon i {
    font-size: 23px;
    line-height: 1;
}

.gar-problems__visual-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 9px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
}

.gar-problems__visual-card p {
    position: relative;
    z-index: 2;
    max-width: 230px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 23px;
}

/* Sello central del collage */
.gar-problems__seal {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gar-cream);
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--gar-primary-light) 0%, var(--gar-primary-deep) 72%);
    box-shadow: 0 16px 36px rgba(0, 90, 127, 0.24);
    transform: translate(-50%, -50%);
}

.gar-problems__seal::before {
    content: 'DIAGNÓSTICO';
    position: absolute;
    inset: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--gar-font-display);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
}

.gar-problems__seal span {
    padding-top: 11px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}

.gar-problems__collage:hover .gar-problems__photo img {
    transform: scale(1.04);
    filter: saturate(1.05);
}


/* ============================================================================
   05. BADGE DE CONFIANZA BAJO COLLAGE
   ============================================================================ */

.gar-problems__media-actions {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 620px;
    margin-top: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.gar-problems__expert-badge {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 23px 25px;
    overflow: hidden;
    border: 1px solid rgba(232, 221, 200, 0.95);
    border-radius: var(--gar-radius-lg);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 48px rgba(0, 90, 127, 0.08);
    backdrop-filter: blur(10px);
}

.gar-problems__expert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 130px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
}

.gar-problems__expert-badge::after {
    content: '';
    position: absolute;
    right: -48px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.10);
    pointer-events: none;
}

.gar-problems__expert-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.36);
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.20);
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(0, 90, 127, 0.08);
}

.gar-problems__expert-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-problems__expert-content {
    position: relative;
    z-index: 2;
}

.gar-problems__expert-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gar-problems__expert-content strong {
    display: block;
    max-width: 430px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.gar-problems__expert-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 11px;
}

.gar-problems__stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--gar-secondary);
    line-height: 1;
}

.gar-problems__stars i {
    font-size: 14px;
    line-height: 1;
}

.gar-problems__rating-text {
    color: var(--gar-text-soft);
    font-family: var(--gar-font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}


/* ============================================================================
   06. CONTENIDO TEXTUAL
   ============================================================================ */

.gar-problems__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    padding: 8px 19px;
    border: 1px solid rgba(216, 184, 109, 0.42);
    border-radius: 999px;
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gar-problems__eyebrow-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.14);
}

.gar-problems__title {
    position: relative;
    max-width: 710px;
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-problems__title span,
.gar-problems__title em,
.gar-problems__title i {
    color: var(--gar-secondary-dark);
    display: initial;
}

.gar-problems__title em,
.gar-problems__title i {
    font-style: italic;
}

.gar-problems__lead {
    max-width: 650px;
    margin: 19px 0 0;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 28px;
}


/* ============================================================================
   07. CONTENIDO DINÁMICO DEL ADMINISTRADOR
   ============================================================================ */

.gar-problems__dynamic {
    max-width: 760px;
    margin-top: 16px;
}

.gar-problems__dynamic p {
    margin: 0 0 16px;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 27px;
}

.gar-problems__dynamic ul {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gar-problems__dynamic li {
    position: relative;
    display: block;
    min-height: 92px;
    padding: 18px 22px 18px 82px;
    border: 1px solid rgba(232, 221, 200, 0.96);
    border-radius: var(--gar-radius-md);
    background: rgba(255, 255, 255, 0.88);
    color: var(--gar-text-soft);
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0 10px 28px rgba(0, 90, 127, 0.06);
    transition:
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-problems__dynamic li::before {
    content: '\F26E';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--gar-primary-deep), var(--gar-primary-light));
    color: var(--gar-white);
    font-family: "bootstrap-icons";
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 90, 127, 0.18);
    transition:
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth);
}

.gar-problems__dynamic li::after {
    content: '';
    position: absolute;
    top: 73px;
    bottom: 20px;
    left: 57px;
    width: 1px;
    background: linear-gradient(180deg, rgba(216, 184, 109, 0.55), transparent);
    opacity: 0.55;
}

.gar-problems__dynamic li strong,
.gar-problems__dynamic li b {
    display: block;
    margin: 0 0 5px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.gar-problems__dynamic li:hover {
    background: var(--gar-white);
    border-color: rgba(216, 184, 109, 0.70);
    box-shadow: var(--gar-shadow-medium);
    transform: translateX(8px);
}

.gar-problems__dynamic li:hover::before {
    background:
        linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    transform: scale(1.06);
}


/* ============================================================================
   08. BOTONES DE LA SECCIÓN
   ============================================================================ */

.gar-problems__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 33px;
}

.gar-problems__btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        border-color var(--gar-transition-fast);
}

.gar-problems__btn:hover {
    text-decoration: none;
}

.gar-problems__btn i {
    font-size: 17px;
    line-height: 1;
}

/* Botón principal */
.gar-problems__btn--whatsapp {
    border: 1px solid var(--gar-whatsapp);
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    box-shadow: var(--gar-shadow-cta);
}

.gar-problems__btn--whatsapp:hover {
    border-color: var(--gar-whatsapp-dark);
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    box-shadow: 0 12px 34px rgba(0, 90, 127, 0.34);
    transform: translateY(-2px);
}

/* Botón secundario */
.gar-problems__btn--secondary {
    border: 1px solid rgba(0, 90, 127, 0.28);
    background: transparent;
    color: var(--gar-primary);
}

.gar-problems__btn--secondary:hover {
    border-color: var(--gar-primary);
    background: var(--gar-primary);
    color: var(--gar-white);
    box-shadow: var(--gar-shadow-medium);
    transform: translateY(-2px);
}


/* ============================================================================
   09. CTA FINAL DE LA SECCIÓN
   ============================================================================ */

.gar-problems__final-cta {
    position: relative;
    z-index: 4;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 74px 0 0;
    padding: 32px 35px;
    overflow: hidden;
    border-radius: var(--gar-radius-lg);
    background:
        linear-gradient(135deg, rgba(0, 50, 71, 0.98), rgba(0, 90, 127, 0.94));
}

.gar-problems__final-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.16);
}

.gar-problems__final-cta::after {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.gar-problems__final-icon,
.gar-problems__final-content,
.gar-problems__final-actions {
    position: relative;
    z-index: 2;
}

.gar-problems__final-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.gar-problems__final-icon i {
    font-size: 25px;
    line-height: 1;
}

.gar-problems__final-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gar-problems__final-content h3 {
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 30px;
    font-weight: 800;
    line-height: 35px;
}

.gar-problems__final-content p {
    max-width: 680px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 24px;
}

.gar-problems__final-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.gar-problems__final-actions .gar-problems__btn--secondary {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--gar-white);
}

.gar-problems__final-actions .gar-problems__btn--secondary:hover {
    border-color: var(--gar-white);
    background: var(--gar-white);
    color: var(--gar-primary-deep);
}


/* ============================================================================
   10. RESPONSIVE PROBLEMAS
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-problems__grid {
        gap: 54px;
    }

    .gar-problems__collage {
        grid-template-rows: 235px 235px;
        min-height: 500px;
    }

    .gar-problems__visual-card {
        padding: 26px;
    }

    .gar-problems__title {
        font-size: 46px;
        line-height: 51px;
    }

    .gar-problems__final-cta {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .gar-problems__final-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .gar-problems__final-actions {
        justify-content: center;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-problems {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-problems__grid {
        display: flex;
        flex-direction: column;
        gap: 52px;
    }

    .gar-problems__content {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .gar-problems__media {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        padding-top: 0;
    }

    .gar-problems__title {
        max-width: 680px;
        font-size: 42px;
        line-height: 47px;
    }

    .gar-problems__lead {
        font-size: 16px;
        line-height: 27px;
    }

    .gar-problems__final-cta {
        margin-top: 60px;
    }

    .gar-problems__shape--two {
        left: auto;
        right: 10%;
        bottom: 4%;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-problems {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-problems__grid {
        gap: 38px;
    }

    .gar-problems__content {
        text-align: left;
    }

    .gar-problems__eyebrow {
        gap: 9px;
        margin-bottom: 17px;
        padding: 7px 15px;
        font-size: 11px;
    }

    .gar-problems__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-problems__lead {
        margin-top: 16px;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-problems__dynamic {
        margin-top: 25px;
    }

    .gar-problems__dynamic p {
        font-size: 15px;
        line-height: 25px;
    }

    .gar-problems__dynamic ul {
        gap: 12px;
    }

    .gar-problems__dynamic li {
        min-height: auto;
        padding: 15px 15px 15px 73px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .gar-problems__dynamic li::before {
        top: 16px;
        left: 16px;
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .gar-problems__dynamic li::after {
        top: 62px;
        bottom: 16px;
        left: 50px;
    }

    .gar-problems__dynamic li strong,
    .gar-problems__dynamic li b {
        font-size: 14px;
        line-height: 18px;
    }

    /* Collage móvil compacto, no apilado */
    .gar-problems__collage {
        width: 100%;
        max-width: 540px;
        min-height: 352px;
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        grid-template-rows: 155px 185px;
        gap: 13px;
        margin: 0 auto;
    }

    .gar-problems__frame {
        top: -9px;
        left: -9px;
        width: 74%;
        height: calc(100% - 6px);
        display: block;
        border-width: 1px;
        border-radius: 44px 0 44px 44px;
    }

    .gar-problems__photo--vertical {
        grid-column: 1;
        grid-row: 1 / 3;
        height: auto;
        border-radius: 42px 0 42px 42px;
    }

    .gar-problems__photo--top {
        grid-column: 2;
        grid-row: 1;
        height: auto;
        border-radius: 0 42px 0 42px;
    }

    .gar-problems__visual-card {
        grid-column: 2;
        grid-row: 2;
        min-height: auto;
        padding: 16px 15px;
        border-radius: 0 42px 42px 0;
    }

    .gar-problems__visual-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 13px;
    }

    .gar-problems__visual-icon i {
        font-size: 17px;
    }

    .gar-problems__visual-card strong {
        margin-bottom: 7px;
        font-size: 18px;
        line-height: 20px;
    }

    .gar-problems__visual-card p {
        font-size: 12px;
        line-height: 17px;
    }

    .gar-problems__seal {
        top: 47%;
        left: 52%;
        width: 70px;
        height: 70px;
    }

    .gar-problems__seal::before {
        inset: 7px;
        padding-top: 11px;
        font-size: 5px;
    }

    .gar-problems__seal span {
        padding-top: 10px;
        font-size: 18px;
    }

    .gar-problems__media-actions {
        display: none;
        max-width: 540px;
        margin: 22px auto 0;
    }

    .gar-problems__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gar-problems__btn {
        width: 100%;
    }

    .gar-problems__final-cta {
        margin-top: 42px;
        padding: 27px 20px;
    }

    .gar-problems__final-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .gar-problems__final-content h3 {
        font-size: 25px;
        line-height: 31px;
    }

    .gar-problems__final-content p {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-problems__shape {
        opacity: 0.5;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-problems {
        padding: var(--gar-section-padding-small);
    }

    .gar-problems__decor-statue,
    .gar-problems__decor-scale {
        opacity: 0.45;
    }

    .gar-problems__shape {
        display: none;
    }

    .gar-problems__grid {
        gap: 34px;
    }

    .gar-problems__eyebrow {
        padding: 7px 14px;
        font-size: 10px;
        line-height: 14px;
    }

    .gar-problems__eyebrow-dot {
        width: 8px;
        height: 8px;
    }

    .gar-problems__title {
        font-size: 34px;
        line-height: 41px;
    }

    .gar-problems__lead {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-problems__dynamic li {
        padding: 14px 14px 14px 65px;
        font-size: 13px;
        line-height: 19px;
    }

    .gar-problems__dynamic li::before {
        top: 15px;
        left: 14px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .gar-problems__dynamic li::after {
        display: none;
    }

    .gar-problems__dynamic li strong,
    .gar-problems__dynamic li b {
        font-size: 14px;
        line-height: 18px;
    }

    .gar-problems__dynamic li:hover {
        transform: translateY(-2px);
    }

    /* Collage móvil estilo referencia */
    .gar-problems__collage {
        grid-template-columns: 1.05fr 0.95fr;
        grid-template-rows: 132px 162px;
        gap: 10px;
        min-height: 307px;
    }

    .gar-problems__frame {
        top: -7px;
        left: -7px;
        border-radius: 34px 0 34px 34px;
    }

    .gar-problems__photo--vertical {
        border-radius: 34px 0 34px 34px;
    }

    .gar-problems__photo--top {
        border-radius: 0 34px 0 34px;
    }

    .gar-problems__visual-card {
        padding: 14px;
        border-radius: 0 34px 34px 0;
    }

    .gar-problems__visual-card::before {
        top: -58px;
        right: -58px;
        width: 130px;
        height: 130px;
    }

    .gar-problems__visual-card::after {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    .gar-problems__visual-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .gar-problems__visual-icon i {
        font-size: 15px;
    }

    .gar-problems__visual-card strong {
        font-size: 15px;
        line-height: 17px;
    }

    .gar-problems__visual-card p {
        font-size: 11px;
        line-height: 15px;
    }

    .gar-problems__seal {
        top: 47%;
        left: 52%;
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .gar-problems__seal::before {
        inset: 6px;
        padding-top: 9px;
        font-size: 4px;
    }

    .gar-problems__seal span {
        padding-top: 8px;
        font-size: 16px;
    }

    .gar-problems__expert-badge {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px;
        text-align: center;
    }

    .gar-problems__expert-rating {
        justify-content: center;
    }

    .gar-problems__expert-content strong {
        font-size: 16px;
        line-height: 19px;
    }

    .gar-problems__final-cta {
        margin-top: 36px;
        padding: 26px 16px;
        border-radius: var(--gar-radius-md);
    }

    .gar-problems__final-icon {
        width: 54px;
        height: 54px;
    }

    .gar-problems__final-icon i {
        font-size: 22px;
    }

    .gar-problems__final-content h3 {
        font-size: 22px;
        line-height: 29px;
    }

    .gar-problems__final-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-problems__btn {
        min-height: 50px;
        font-size: 14px;
    }
}

/* FIN PROBLEMAS / DIAGNÓSTICO FINANCIERO */

/* ============================================================================
   SERVICIOS HOME — Principal + 4 secundarias interactivas
   ----------------------------------------------------------------------------
   Layout desktop:
   - Fila 1: Servicio 1 activo + intro.
   - Fila 2: Servicio 2 | Servicio 3.
   - Fila 3: Servicio 4 | Servicio 5.
   - Al activar una secundaria, mantiene 50% / 50%.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-services-grid-showcase {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(216, 184, 109, 0.15), transparent 30%),
        radial-gradient(circle at 92% 88%, rgba(27, 113, 152, 0.28), transparent 34%),
        linear-gradient(135deg, var(--gar-primary-deep) 0%, var(--gar-primary-dark) 48%, var(--gar-primary) 100%);
    font-family: var(--gar-font-body);
}

.gar-services-grid-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 30%, rgba(0, 0, 0, 0.10)),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
}

.gar-services-grid-showcase .container {
    position: relative;
    z-index: 3;
    max-width: 1240px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-services-grid-showcase__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-services-grid-showcase__glow {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.42;
}

.gar-services-grid-showcase__glow--1 {
    top: -180px;
    left: -150px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.22), transparent 70%);
}

.gar-services-grid-showcase__glow--2 {
    right: -180px;
    bottom: -160px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(27, 113, 152, 0.42), transparent 70%);
}

.gar-services-grid-showcase__pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle, rgba(216, 184, 109, 0.09) 1px, transparent 2px);
    background-size: 20px 20px, 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.32;
}

.gar-services-grid-showcase__shape {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 247, 240, 0.08);
    border-radius: 28px;
    color: rgba(250, 247, 240, 0.055);
    transform: rotate(-10deg);
}

.gar-services-grid-showcase__shape i {
    font-size: 64px;
    line-height: 1;
}

.gar-services-grid-showcase__shape--one {
    left: 5%;
    bottom: 14%;
    width: 130px;
    height: 130px;
}

.gar-services-grid-showcase__shape--two {
    top: 16%;
    right: 7%;
    width: 100px;
    height: 100px;
    transform: rotate(12deg);
}


/* ============================================================================
   03. ESTADO VACÍO
   ============================================================================ */

.gar-services-grid-showcase__empty {
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--gar-radius-lg);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
}


/* ============================================================================
   04. STAGE / GRID GENERAL
   ============================================================================ */

.gar-services-grid-showcase__stage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 23px;
    align-items: stretch;
}


/* ============================================================================
   05. BLOQUE INTRODUCTORIO
   ============================================================================ */

.gar-services-grid-showcase__intro {
    position: relative;
    z-index: 4;
    grid-column: 7 / span 6;
    grid-row: 1;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0 26px 24px;
}

.gar-services-grid-showcase__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1px solid rgba(216, 184, 109, 0.38);
    border-radius: var(--gar-radius-pill);
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gar-services-grid-showcase__title {
    max-width: 660px;
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-services-grid-showcase__title span {
    color: var(--gar-secondary);
}

.gar-services-grid-showcase__lead {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 28px;
}


/* ============================================================================
   06. POSICIONAMIENTO DE CARDS EN DESKTOP
   ============================================================================ */

/* Card principal */
.gar-service-tile--1 {
    grid-column: 1 / span 6;
    grid-row: 1;
    min-height: 360px;
}

/* Estado normal: principal activa */
.gar-services-grid-showcase__stage.is-main-active .gar-service-tile--2 {
    grid-column: 1 / span 6;
    grid-row: 2;
}

.gar-services-grid-showcase__stage.is-main-active .gar-service-tile--3 {
    grid-column: 7 / span 6;
    grid-row: 2;
}

.gar-services-grid-showcase__stage.is-main-active .gar-service-tile--4 {
    grid-column: 1 / span 6;
    grid-row: 3;
}

.gar-services-grid-showcase__stage.is-main-active .gar-service-tile--5 {
    grid-column: 7 / span 6;
    grid-row: 3;
}

/* Estado secundarias activas: mantiene 50% / 50% */
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2 {
    grid-column: 1 / span 6;
    grid-row: 2;
}

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3 {
    grid-column: 7 / span 6;
    grid-row: 2;
}

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4 {
    grid-column: 1 / span 6;
    grid-row: 3;
}

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5 {
    grid-column: 7 / span 6;
    grid-row: 3;
}


/* ============================================================================
   07. CARD BASE DE SERVICIO
   ============================================================================ */

.gar-service-tile {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(150px, 0.8fr);
    gap: 17px;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    background: transparent;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition:
        background var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        grid-column var(--gar-transition-smooth);
}

.gar-service-tile:hover,
.gar-service-tile:focus {
    outline: none;
    transform: translateY(-5px);
    box-shadow: 0 34px 75px rgba(0, 0, 0, 0.34);
}

.gar-service-tile.is-active {
    grid-template-columns: minmax(0, 1fr) 0fr;
    gap: 0;
    background:
        linear-gradient(145deg, rgba(27, 113, 152, 0.98), rgba(0, 90, 127, 0.96));
}


/* ============================================================================
   08. CONTENIDO DE LA CARD
   ============================================================================ */

.gar-service-tile__content {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 32px 29px;
    border-radius: 30px;
    background: var(--gar-primary-dark);
}

.gar-service-tile.is-active .gar-service-tile__content {
    justify-content: center;
    padding: 38px 35px;
    background: var(--gar-primary);
}

.gar-service-tile__content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(250, 247, 240, 0.055);
    pointer-events: none;
}

.gar-service-tile__number-label {
    position: absolute;
    top: 23px;
    left: 27px;
    color: rgba(216, 184, 109, 0.68);
    font-family: var(--gar-font-display);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    transition: color var(--gar-transition-smooth);
}

.gar-service-tile__number {
    position: absolute;
    top: 29px;
    left: 26px;
    color: rgba(250, 247, 240, 0.16);
    font-family: var(--gar-font-hero);
    font-size: 64px;
    font-weight: 800;
    line-height: 58px;
    pointer-events: none;
    user-select: none;
    transition:
        color var(--gar-transition-smooth),
        font-size var(--gar-transition-smooth);
}

.gar-service-tile.is-active .gar-service-tile__number-label {
    color: var(--gar-secondary);
}

.gar-service-tile.is-active .gar-service-tile__number {
    color: rgba(216, 184, 109, 0.44);
    font-size: 76px;
}


/* ============================================================================
   09. ÍCONO DE LA CARD
   ============================================================================ */

.gar-service-tile__icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 30px;
    background: rgba(27, 113, 152, 0.72);
    color: var(--gar-white);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        width var(--gar-transition-smooth),
        height var(--gar-transition-smooth);
}

.gar-service-tile.is-active .gar-service-tile__icon {
    width: 96px;
    height: 96px;
    background: var(--gar-secondary-dark);
    color: var(--gar-white);
}

.gar-service-tile__icon i {
    font-size: 30px;
    line-height: 1;
}

.gar-service-tile.is-active .gar-service-tile__icon i {
    font-size: 33px;
}


/* ============================================================================
   10. BODY, TÍTULO Y DESCRIPCIÓN
   ============================================================================ */

.gar-service-tile__body {
    position: relative;
    z-index: 3;
    padding-top: 86px;
}

.gar-service-tile.is-active .gar-service-tile__body {
    padding-top: 75px;
}

.gar-service-tile__eyebrow {
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gar-service-tile__eyebrow-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 8px rgba(216, 184, 109, 0.60);
    animation: garShowcaseEyebrowPulse 2000ms ease-in-out infinite;
}

@keyframes garShowcaseEyebrowPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.gar-service-tile__title {
    max-width: 260px;
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 22px;
    font-weight: 800;
    line-height: 25px;
}

.gar-service-tile__desc,
.gar-service-tile__actions {
    display: none;
}

.gar-service-tile.is-active .gar-service-tile__eyebrow {
    display: inline-flex;
}

.gar-service-tile.is-active .gar-service-tile__desc {
    display: block;
}

.gar-service-tile.is-active .gar-service-tile__actions {
    display: flex;
}

.gar-service-tile.is-active .gar-service-tile__title {
    max-width: 520px;
    margin-top: -5px;
    font-size: 26px;
    font-weight: 700;
    line-height: 37px;
}

.gar-service-tile.is-active .gar-service-tile__desc {
    max-width: 580px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    animation: garServiceTextIn 350ms ease both;
}

.gar-service-tile.is-active .gar-service-tile__actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    animation: garServiceTextIn 420ms ease both;
}

@keyframes garServiceTextIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================================
   11. IMAGEN DE LA CARD
   ============================================================================ */

.gar-service-tile__image {
    min-width: 0;
    overflow: hidden;
    border-radius: 30px;
    background: var(--gar-primary-deep);
    transition:
        width var(--gar-transition-smooth),
        opacity var(--gar-transition-smooth),
        transform var(--gar-transition-smooth);
}

.gar-service-tile__image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    transition:
        transform 700ms ease,
        filter 700ms ease;
}

.gar-service-tile--1 .gar-service-tile__image img {
    min-height: 360px;
}

.gar-service-tile:hover .gar-service-tile__image img,
.gar-service-tile:focus .gar-service-tile__image img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.gar-service-tile.is-active .gar-service-tile__image {
    opacity: 0;
    transform: scaleX(0);
}


/* ============================================================================
   12. SECUNDARIAS CERRADAS CUANDO OTRA SECUNDARIA ESTÁ ACTIVA
   ============================================================================ */

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active),
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active),
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active),
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) {
    grid-template-columns: minmax(0, 0.9fr) minmax(150px, 0.8fr);
    gap: 17px;
}

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active) .gar-service-tile__image,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active) .gar-service-tile__image,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active) .gar-service-tile__image,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) .gar-service-tile__image {
    opacity: 1;
    transform: none;
}

.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active) .gar-service-tile__title,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active) .gar-service-tile__title,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active) .gar-service-tile__title,
.gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) .gar-service-tile__title {
    max-width: 260px;
    font-size: 22px;
    line-height: 25px;
}


/* ============================================================================
   13. BOTÓN INTERNO DE LA CARD
   ============================================================================ */

.gar-service-tile__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    overflow: hidden;
    padding: 14px 22px 14px 25px;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform var(--gar-transition-fast),
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        border-color var(--gar-transition-fast);
}

.gar-service-tile__btn:hover {
    text-decoration: none;
}

.gar-service-tile__btn--primary {
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: transparent;
    color: var(--gar-white);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.20),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gar-service-tile__btn--primary span:first-child {
    position: relative;
    z-index: 2;
}

.gar-service-tile__btn-icon {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gar-white);
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast);
}

.gar-service-tile__btn-icon i {
    font-size: 15px;
    line-height: 1;
    transition: transform var(--gar-transition-fast);
}

.gar-service-tile__btn--primary:hover {
    border-color: var(--gar-white);
    background: var(--gar-white);
    color: var(--gar-primary-deep);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.gar-service-tile__btn--primary:hover .gar-service-tile__btn-icon {
    background: var(--gar-primary);
    color: var(--gar-secondary);
}

.gar-service-tile__btn--primary:hover .gar-service-tile__btn-icon i {
    transform: translateX(2px);
}


/* ============================================================================
   14. INDICADOR MOBILE
   ============================================================================ */

.gar-service-tile__tap-hint {
    display: none;
}


/* ============================================================================
   15. RESPONSIVE SERVICIOS
   ============================================================================ */

@media (max-width: 1199px) {
    .gar-services-grid-showcase__stage {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .gar-service-tile--1 {
        grid-column: 1 / span 4;
        grid-row: 1;
    }

    .gar-services-grid-showcase__intro {
        grid-column: 5 / span 4;
        grid-row: 1;
    }

    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile--2,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2 {
        grid-column: 1 / span 4;
        grid-row: 2;
    }

    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile--3,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3 {
        grid-column: 5 / span 4;
        grid-row: 2;
    }

    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile--4,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4 {
        grid-column: 1 / span 4;
        grid-row: 3;
    }

    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile--5,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5 {
        grid-column: 5 / span 4;
        grid-row: 3;
    }

    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) {
        grid-template-columns: minmax(0, 0.9fr) minmax(150px, 0.8fr);
        gap: 17px;
    }

    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active) .gar-service-tile__image,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active) .gar-service-tile__image,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active) .gar-service-tile__image,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) .gar-service-tile__image {
        opacity: 1;
        transform: none;
    }

    .gar-services-grid-showcase__title {
        font-size: 44px;
        line-height: 50px;
    }

    .gar-services-grid-showcase__lead {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 991px) {
    .gar-services-grid-showcase {
        padding: 77px 0;
    }

    .gar-services-grid-showcase__stage {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .gar-services-grid-showcase__intro {
        order: 1;
        min-height: auto;
        padding: 0;
        margin-bottom: 21px;
    }

    .gar-service-tile--1 {
        order: 2;
    }

    .gar-service-tile--2 {
        order: 3;
    }

    .gar-service-tile--3 {
        order: 4;
    }

    .gar-service-tile--4 {
        order: 5;
    }

    .gar-service-tile--5 {
        order: 6;
    }

    .gar-service-tile,
    .gar-service-tile--1,
    .gar-service-tile.is-active,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) {
        width: 100%;
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 12px;
        align-items: stretch;
        border-radius: 22px;
        transform: none;
    }

    .gar-service-tile:hover,
    .gar-service-tile:focus {
        transform: none;
    }

    .gar-service-tile.is-active {
        grid-template-columns: minmax(0, 1fr) 0fr;
        gap: 0;
    }

    .gar-service-tile__content {
        min-height: 118px;
        justify-content: center;
        padding: 16px 77px 16px 17px;
        border-radius: 22px;
    }

    .gar-service-tile.is-active .gar-service-tile__content {
        min-height: 285px;
        justify-content: center;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .gar-service-tile__content::before {
        top: -84px;
        right: -78px;
        width: 160px;
        height: 160px;
    }

    .gar-service-tile__number-label {
        display: none;
    }

    .gar-service-tile__number {
        position: relative;
        top: auto;
        left: auto;
        width: fit-content;
        display: inline-flex;
        margin-bottom: 7px;
        color: rgba(216, 184, 109, 0.78);
        font-size: 17px;
        line-height: 17px;
    }

    .gar-service-tile.is-active .gar-service-tile__number {
        position: absolute;
        top: 25px;
        left: 22px;
        color: rgba(216, 184, 109, 0.34);
        font-size: 55px;
        line-height: 55px;
    }

    .gar-service-tile__icon {
        width: 58px;
        height: 58px;
        border-radius: 0 0 0 18px;
    }

    .gar-service-tile.is-active .gar-service-tile__icon {
        width: 74px;
        height: 74px;
        border-radius: 0 0 0 22px;
    }

    .gar-service-tile__icon i {
        font-size: 20px;
    }

    .gar-service-tile.is-active .gar-service-tile__icon i {
        font-size: 26px;
    }

    .gar-service-tile__body {
        padding-top: 0;
    }

    .gar-service-tile.is-active .gar-service-tile__body {
        padding-top: 78px;
    }

    .gar-service-tile__eyebrow {
        margin-bottom: 9px;
        font-size: 10px;
    }

    .gar-service-tile__title {
        max-width: 100%;
        font-size: 17px;
        line-height: 20px;
    }

    .gar-service-tile.is-active .gar-service-tile__title {
        max-width: 92%;
        margin-top: 0;
        font-size: 26px;
        line-height: 31px;
    }

    .gar-service-tile.is-active .gar-service-tile__desc {
        margin-top: 14px;
        font-size: 15px;
        line-height: 24px;
    }

    .gar-service-tile.is-active .gar-service-tile__actions {
        flex-direction: column;
        margin-top: 19px;
    }

    .gar-service-tile__image {
        min-height: 100%;
        height: auto;
        display: flex;
        align-self: stretch;
        border-radius: 22px;
        opacity: 1;
        transform: none;
    }

    .gar-service-tile__image img,
    .gar-service-tile--1 .gar-service-tile__image img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .gar-service-tile.is-active .gar-service-tile__image {
        height: 0;
        min-height: 0;
        opacity: 0;
        transform: scaleY(0);
    }

    .gar-service-tile.is-active .gar-service-tile__image img {
        min-height: 0;
    }

    .gar-service-tile__btn {
        width: 100%;
        justify-content: space-between;
    }

    .gar-service-tile__tap-hint {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        padding: 6px 10px;
        border: 1px solid rgba(250, 247, 240, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(250, 247, 240, 0.86);
        font-family: var(--gar-font-display);
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        pointer-events: auto;
        backdrop-filter: blur(8px);
        transition:
            background var(--gar-transition-fast),
            color var(--gar-transition-fast),
            border-color var(--gar-transition-fast),
            transform var(--gar-transition-fast);
    }

    .gar-service-tile__tap-hint i {
        font-size: 12px;
        line-height: 1;
        transition: transform var(--gar-transition-fast);
    }

    .gar-service-tile.is-active .gar-service-tile__tap-hint {
        display: none;
    }

    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile:not(.is-active) .gar-service-tile__title,
    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile:not(.is-active) .gar-service-tile__title {
        max-width: 100%;
        font-size: 17px;
        line-height: 20px;
    }

    .gar-services-grid-showcase__stage .gar-service-tile.is-active .gar-service-tile__title {
        max-width: 92%;
        font-size: 26px;
        line-height: 31px;
    }
}

@media (max-width: 767px) {
    .gar-services-grid-showcase {
        padding: 64px 0;
    }

    .gar-services-grid-showcase__shape {
        display: none;
    }

    .gar-services-grid-showcase__eyebrow {
        font-size: 11px;
    }

    .gar-services-grid-showcase__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-services-grid-showcase__lead {
        font-size: 15px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    .gar-services-grid-showcase {
        padding: 58px 0;
    }

    .gar-services-grid-showcase__title {
        font-size: 32px;
        line-height: 38px;
    }

    .gar-services-grid-showcase__lead {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-service-tile,
    .gar-service-tile--1,
    .gar-service-tile.is-active,
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--2:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--3:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--4:not(.is-active),
    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile--5:not(.is-active) {
        grid-template-columns: minmax(0, 1fr) 92px;
        gap: 10px;
    }

    .gar-service-tile.is-active {
        grid-template-columns: minmax(0, 1fr) 0fr;
        gap: 0;
    }

    .gar-service-tile__content {
        min-height: 106px;
        padding: 15px 70px 15px 16px;
    }

    .gar-service-tile.is-active .gar-service-tile__content {
        min-height: 265px;
        padding: 23px 18px;
    }

    .gar-service-tile__image {
        height: auto;
        min-height: 100%;
    }

    .gar-service-tile__image img,
    .gar-service-tile--1 .gar-service-tile__image img {
        height: 100%;
        min-height: 100%;
    }

    .gar-service-tile.is-active .gar-service-tile__image,
    .gar-service-tile.is-active .gar-service-tile__image img {
        height: 0;
        min-height: 0;
    }

    .gar-service-tile__number {
        font-size: 24px;
        line-height: 24px;
    }

    .gar-service-tile.is-active .gar-service-tile__number {
        top: 22px;
        left: 18px;
        font-size: 50px;
        line-height: 50px;
    }

    .gar-service-tile__title {
        font-size: 16px;
        line-height: 19px;
    }

    .gar-service-tile.is-active .gar-service-tile__title {
        font-size: 23px;
        line-height: 27px;
    }

    .gar-service-tile.is-active .gar-service-tile__desc {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-service-tile__btn {
        font-size: 13px;
        font-weight: 700;
    }

    .gar-service-tile__tap-hint {
        padding: 6px 9px;
        font-size: 10px;
    }

    .gar-services-grid-showcase__stage.is-secondary-active .gar-service-tile:not(.is-active) .gar-service-tile__title,
    .gar-services-grid-showcase__stage.is-main-active .gar-service-tile:not(.is-active) .gar-service-tile__title {
        max-width: 100%;
        font-size: 16px;
        line-height: 19px;
    }

    .gar-services-grid-showcase__stage .gar-service-tile.is-active .gar-service-tile__title {
        max-width: 92%;
        font-size: 23px;
        line-height: 27px;
    }
}

/* FIN SERVICIOS HOME — Principal + secundarias interactivas */

/* ============================================================================
   COMO LO HACEMOS HOME
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Explicar el proceso de asesoría legal financiera de forma clara.
   - Mostrar las etapas de trabajo en cards profesionales.
   - Generar confianza mostrando que hay una ruta ordenada.
   - Mantener el diseño tipo grid en desktop.
   - Convertir el diseño en timeline vertical en mobile.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-process-home {
    position: relative;
    overflow: hidden;
    padding: var(--gar-section-padding);
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 184, 109, 0.12), transparent 26%),
        radial-gradient(circle at 88% 90%, rgba(0, 90, 127, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--gar-cream) 48%, #ffffff 100%);
    font-family: var(--gar-font-body);
}

.gar-process-home .container {
    position: relative;
    z-index: 2;
    max-width: 1220px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-process-home__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-process-home__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: 26px 26px, 26px 26px;
    background-position: 0 0, 13px 13px;
    opacity: 0.24;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.gar-process-home__shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gar-process-home__shape--one {
    top: 8%;
    right: -135px;
    width: 310px;
    height: 310px;
    border-radius: 62px;
    background:
        linear-gradient(135deg, rgba(0, 90, 127, 0.07), rgba(216, 184, 109, 0.13));
    transform: rotate(22deg);
}

.gar-process-home__shape--two {
    left: -170px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.11);
    filter: blur(8px);
}

.gar-process-home__shape--three {
    right: 12%;
    bottom: 12%;
    width: 115px;
    height: 115px;
    border: 1px solid rgba(216, 184, 109, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 24px 60px rgba(0, 90, 127, 0.08);
    transform: rotate(-14deg);
}


/* ============================================================================
   03. HEADER DE LA SECCIÓN
   ============================================================================ */

.gar-process-home__header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.gar-process-home__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-process-home__eyebrow i {
    color: var(--gar-secondary-dark);
    font-size: 16px;
    line-height: 1;
}

.gar-process-home__title {
    margin: 0 0 17px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-process-home__title span {
    color: var(--gar-secondary-dark);
}

.gar-process-home__lead {
    max-width: 770px;
    margin: 0 auto;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 16px;
    line-height: 27px;
}


/* ============================================================================
   04. GRID DEL PROCESO
   ============================================================================ */

.gar-process-home__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/* Línea horizontal decorativa en desktop */
.gar-process-home__grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 184, 109, 0.32), transparent);
    pointer-events: none;
}


/* ============================================================================
   05. CARD DEL PROCESO
   ============================================================================ */

.gar-process-home__card {
    position: relative;
    min-height: 318px;
    padding: 24px 24px 26px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 240, 0.72));
    box-shadow:
        0 18px 44px rgba(0, 90, 127, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    cursor: default;
    transition:
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-process-home__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 90, 127, 0.10), transparent 32%),
        radial-gradient(circle at 10% 92%, rgba(216, 184, 109, 0.14), transparent 34%);
    opacity: 0;
    transition: opacity var(--gar-transition-smooth);
}

/* Línea inferior de cada card */
.gar-process-home__card::after {
    content: "";
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--gar-secondary), var(--gar-secondary-dark));
    transition:
        height var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        left var(--gar-transition-smooth),
        right var(--gar-transition-smooth);
}

.gar-process-home__card:hover,
.gar-process-home__card:focus,
.gar-process-home__card.is-active {
    outline: none;
    border-color: rgba(216, 184, 109, 0.38);
    background: var(--gar-white);
    box-shadow:
        0 28px 70px rgba(0, 90, 127, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transform: translateY(-8px);
}

.gar-process-home__card:hover::before,
.gar-process-home__card:focus::before,
.gar-process-home__card.is-active::before {
    opacity: 1;
}

.gar-process-home__card:hover::after,
.gar-process-home__card:focus::after,
.gar-process-home__card.is-active::after {
    left: 19px;
    right: 19px;
    height: 5px;
    background: linear-gradient(90deg, var(--gar-primary), var(--gar-primary-light));
}


/* ============================================================================
   06. PARTE SUPERIOR DE LA CARD
   ============================================================================ */

.gar-process-home__card-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

/* Etiqueta del paso */
.gar-process-home__step {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    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: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-process-home__step::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.14);
}


/* ============================================================================
   07. ÍCONO DE LA CARD
   ============================================================================ */

.gar-process-home__card-icon {
    position: relative;
    z-index: 3;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.34);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.86));
    color: var(--gar-secondary-dark);
    box-shadow:
        0 14px 30px rgba(0, 90, 127, 0.08),
        0 0 0 8px rgba(250, 247, 240, 0.58);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth);
}

.gar-process-home__card-icon i {
    font-size: 25px;
    line-height: 1;
}

.gar-process-home__card:hover .gar-process-home__card-icon,
.gar-process-home__card:focus .gar-process-home__card-icon,
.gar-process-home__card.is-active .gar-process-home__card-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);
    box-shadow:
        0 18px 38px rgba(0, 90, 127, 0.18),
        0 0 0 8px rgba(0, 90, 127, 0.08);
    transform: translateY(-4px) rotate(-4deg);
}


/* ============================================================================
   08. MARCA DE AGUA NUMÉRICA
   ============================================================================ */

.gar-process-home__card-watermark {
    position: absolute;
    right: 18px;
    bottom: 10px;
    z-index: 0;
    color: rgba(0, 90, 127, 0.045);
    font-family: var(--gar-font-hero);
    font-size: 138px;
    font-weight: 900;
    line-height: 110px;
    pointer-events: none;
    user-select: none;
    transition:
        color var(--gar-transition-smooth),
        transform var(--gar-transition-smooth);
}

.gar-process-home__card:hover .gar-process-home__card-watermark,
.gar-process-home__card:focus .gar-process-home__card-watermark,
.gar-process-home__card.is-active .gar-process-home__card-watermark {
    color: rgba(216, 184, 109, 0.11);
    transform: translateY(-4px) scale(1.04);
}


/* ============================================================================
   09. CONTENIDO DE LA CARD
   ============================================================================ */

.gar-process-home__card-content {
    position: relative;
    z-index: 2;
}

.gar-process-home__card-title {
    margin: 0 0 14px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 23px;
    font-weight: 800;
    line-height: 27px;
}

.gar-process-home__card-text {
    margin: 0;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 25px;
}

/* Línea conectora entre cards en desktop */
.gar-process-home__card-line {
    position: absolute;
    top: 50%;
    right: -26px;
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 184, 109, 0.45), transparent);
    pointer-events: none;
}

.gar-process-home__card:nth-child(3n) .gar-process-home__card-line {
    display: none;
}


/* ============================================================================
   10. CTA FINAL DE LA SECCIÓN
   ============================================================================ */

.gar-process-home__cta {
    position: relative;
    max-width: 1020px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin: 67px auto 0;
    padding: 25px 26px;
    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-process-home__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-process-home__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-process-home__cta-icon,
.gar-process-home__cta-content,
.gar-process-home__cta-btn {
    position: relative;
    z-index: 2;
}

.gar-process-home__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-process-home__cta-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-process-home__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-process-home__cta-content h3 {
    margin: 0 0 6px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 25px;
    font-weight: 800;
    line-height: 30px;
}

.gar-process-home__cta-content p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 24px;
}

.gar-process-home__cta-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 25px;
    border-radius: var(--gar-radius-pill);
    background: var(--gar-primary);
    color: var(--gar-white);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 90, 127, 0.28);
    transition:
        background var(--gar-transition-fast),
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-process-home__cta-btn:hover {
    background: var(--gar-primary-dark);
    color: var(--gar-white);
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(0, 90, 127, 0.32);
    transform: translateY(-2px);
}


/* ============================================================================
   11. RESPONSIVE COMO LO HACEMOS
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-process-home__grid {
        gap: 21px;
    }

    .gar-process-home__card {
        min-height: 330px;
    }

    .gar-process-home__card-title {
        font-size: 21px;
        line-height: 26px;
    }

    .gar-process-home__title {
        font-size: 46px;
        line-height: 51px;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-process-home {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-process-home__header {
        margin-bottom: 53px;
    }

    .gar-process-home__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-process-home__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gar-process-home__grid::before,
    .gar-process-home__card-line {
        display: none;
    }

    .gar-process-home__card {
        min-height: 300px;
    }

    .gar-process-home__card-title {
        font-size: 20px;
        line-height: 25px;
    }

    .gar-process-home__cta {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 28px;
        text-align: center;
    }

    .gar-process-home__cta-icon {
        margin: 0 auto;
    }

    .gar-process-home__cta-btn {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .gar-process-home__cta-content span {
        justify-content: center;
    }

    .gar-process-home__cta-content p {
        margin: 0 auto;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-process-home {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-process-home__header {
        margin-bottom: 48px;
        text-align: left;
    }

    .gar-process-home__eyebrow {
        justify-content: flex-start;
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-process-home__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-process-home__lead {
        margin: 0;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-process-home__grid {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding-left: 25px;
    }

    /* Línea vertical del proceso en mobile */
    .gar-process-home__grid::before {
        content: "";
        position: absolute;
        top: 11px;
        bottom: 11px;
        left: 7px;
        width: 2px;
        height: auto;
        display: block;
        border-radius: 999px;
        background:
            linear-gradient(
                180deg,
                rgba(216, 184, 109, 0.10),
                rgba(216, 184, 109, 0.72),
                rgba(0, 90, 127, 0.38),
                rgba(216, 184, 109, 0.10)
            );
        pointer-events: none;
    }

    .gar-process-home__card {
        position: relative;
        min-height: auto;
        display: grid;
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 16px;
        align-items: flex-start;
        padding: 18px 18px 20px;
        overflow: visible;
        border: 1px solid rgba(0, 90, 127, 0.09);
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.90));
        box-shadow:
            0 16px 38px rgba(0, 90, 127, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.78);
        transform: none;
    }

    /* Punto del timeline */
    .gar-process-home__card::before {
        content: "";
        position: absolute;
        top: 28px;
        left: -25px;
        z-index: 4;
        width: 13px;
        height: 13px;
        border: 3px solid #ffffff;
        border-radius: 50%;
        background: var(--gar-secondary);
        box-shadow:
            0 0 0 5px rgba(216, 184, 109, 0.18),
            0 10px 24px rgba(0, 90, 127, 0.12);
        opacity: 1;
    }

    /* Línea lateral de la card en mobile */
    .gar-process-home__card::after {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: 4px;
        height: auto;
        border-radius: 24px 0 0 24px;
        background: linear-gradient(180deg, var(--gar-secondary), var(--gar-primary));
    }

    .gar-process-home__card:hover,
    .gar-process-home__card:focus,
    .gar-process-home__card.is-active {
        border-color: rgba(216, 184, 109, 0.32);
        box-shadow:
            0 22px 48px rgba(0, 90, 127, 0.13),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
        transform: translateY(-4px);
    }

    .gar-process-home__card-top {
        grid-column: 1;
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 11px;
        margin: 0;
    }

    .gar-process-home__step {
        min-height: auto;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: var(--gar-secondary-dark);
        font-size: 11px;
        line-height: 12px;
        letter-spacing: 1px;
        text-align: center;
        box-shadow: none;
    }

    .gar-process-home__step::before {
        display: none;
    }

    .gar-process-home__card-icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        border: 1px solid rgba(216, 184, 109, 0.38);
        border-radius: 18px;
        background:
            linear-gradient(145deg, #ffffff, #fbf7ef);
        box-shadow:
            0 12px 28px rgba(0, 90, 127, 0.10),
            0 0 0 7px rgba(250, 247, 240, 0.75);
    }

    .gar-process-home__card-icon i {
        font-size: 21px;
    }

    .gar-process-home__card:hover .gar-process-home__card-icon,
    .gar-process-home__card:focus .gar-process-home__card-icon,
    .gar-process-home__card.is-active .gar-process-home__card-icon {
        border-radius: 50%;
        transform: translateY(-2px) rotate(-4deg);
    }

    .gar-process-home__card-content {
        grid-column: 2;
        position: relative;
        z-index: 2;
        padding-top: 2px;
    }

    .gar-process-home__card-title {
        margin-bottom: 9px;
        font-size: 20px;
        line-height: 24px;
    }

    .gar-process-home__card-text {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-process-home__card-watermark {
        right: 14px;
        bottom: 7px;
        font-size: 83px;
        line-height: 70px;
        opacity: 0.8;
    }

    .gar-process-home__card-line {
        display: none;
    }

    .gar-process-home__cta {
        margin-top: 48px;
        border-radius: 24px;
    }

    .gar-process-home__cta-content h3 {
        font-size: 23px;
        line-height: 29px;
    }

    .gar-process-home__cta-content p {
        font-size: 14px;
        line-height: 23px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-process-home {
        padding: var(--gar-section-padding-small);
    }

    .gar-process-home__header {
        margin-bottom: 42px;
    }

    .gar-process-home__eyebrow {
        padding: 7px 14px;
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1px;
    }

    .gar-process-home__title {
        font-size: 34px;
        line-height: 40px;
    }

    .gar-process-home__lead {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-process-home__grid {
        gap: 16px;
        padding-left: 22px;
    }

    .gar-process-home__grid::before {
        left: 6px;
    }

    .gar-process-home__card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 16px 15px 18px;
        border-radius: 22px;
    }

    .gar-process-home__card::before {
        top: 25px;
        left: -22px;
        width: 12px;
        height: 12px;
    }

    .gar-process-home__card::after {
        width: 3px;
        border-radius: 22px 0 0 22px;
    }

    .gar-process-home__step {
        font-size: 10px;
        line-height: 11px;
    }

    .gar-process-home__card-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 16px;
    }

    .gar-process-home__card-icon i {
        font-size: 18px;
    }

    .gar-process-home__card-title {
        font-size: 18px;
        line-height: 23px;
    }

    .gar-process-home__card-text {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-process-home__card-watermark {
        right: 10px;
        bottom: 6px;
        font-size: 72px;
        line-height: 60px;
    }

    .gar-process-home__cta {
        padding: 26px 16px;
        border-radius: 22px;
    }

    .gar-process-home__cta-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .gar-process-home__cta-icon i {
        font-size: 24px;
    }

    .gar-process-home__cta-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .gar-process-home__cta-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-process-home__cta-btn {
        min-height: 50px;
        width: 100%;
        font-size: 14px;
    }
}

/* FIN COMO LO HACEMOS HOME */

/* ============================================================================
   BENEFICIOS LEY DE INSOLVENCIA — Premium
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Explicar los beneficios principales de la Ley de Insolvencia.
   - Convertir el contenido dinámico del administrador en una lista premium.
   - Mantener bloque visual con imagen/video y botón play.
   - Mantener badges flotantes y card de confianza.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-bnv {
    position: relative;
    overflow: hidden;
    padding: 109px 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(216, 184, 109, 0.14), transparent 30%),
        radial-gradient(circle at 8% 90%, rgba(0, 90, 127, 0.10), transparent 34%),
        linear-gradient(180deg, #edf4f6 0%, #f7f4ec 100%);
    font-family: var(--gar-font-body);
}

.gar-bnv .container {
    position: relative;
    z-index: 2;
    max-width: 1220px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-bnv__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-bnv__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 90, 127, 0.10) 1px, transparent 1px),
        radial-gradient(circle, rgba(216, 184, 109, 0.10) 1px, transparent 1px);
    background-size: 22px 22px, 22px 22px;
    background-position: 0 0, 11px 11px;
    opacity: 0.34;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.gar-bnv__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.58;
}

.gar-bnv__glow--one {
    top: -220px;
    right: -170px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.20), transparent 70%);
}

.gar-bnv__glow--two {
    left: -210px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.16), transparent 70%);
}

.gar-bnv__shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gar-bnv__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-bnv__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. GRID GENERAL
   ============================================================================ */

.gar-bnv__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.9fr);
    align-items: start;
    gap: 74px;
}


/* ============================================================================
   04. CONTENIDO PRINCIPAL
   ============================================================================ */

.gar-bnv__content {
    max-width: 650px;
}

.gar-bnv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 17px;
    border: 1px solid rgba(216, 184, 109, 0.35);
    border-radius: var(--gar-radius-pill);
    background: rgba(255, 255, 255, 0.78);
    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.08);
    backdrop-filter: blur(10px);
}

.gar-bnv__eyebrow i {
    color: var(--gar-secondary-dark);
    font-size: 15px;
    line-height: 1;
}

.gar-bnv__title {
    margin: 0 0 17px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-bnv__title span,
.gar-bnv__title b,
.gar-bnv__title strong {
    color: var(--gar-secondary-dark);
}

.gar-bnv__lead {
    max-width: 610px;
    margin: 16px 0 0;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 27px;
}


/* ============================================================================
   05. MARCADOR / MINI BADGE DE LISTA
   ============================================================================ */

.gar-bnv__marker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 18px;
    padding: 9px 14px;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 90, 127, 0.06);
}

.gar-bnv__marker-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gar-primary);
    color: var(--gar-secondary);
    font-size: 14px;
    line-height: 1;
}

.gar-bnv__marker-text {
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ============================================================================
   06. LISTA DINÁMICA
   ============================================================================ */

.gar-bnv__list {
    margin-top: 16px;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 27px;
}

.gar-bnv__list p {
    margin: 0 0 16px;
}

.gar-bnv__list ul,
.gar-bnv__list #liplus {
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-reset: garBenefitItem;
    list-style: none !important;
    margin: 0 0 29px !important;
    padding: 0 !important;
}

.gar-bnv__list ul li,
.gar-bnv__list #liplus li {
    position: relative;
    min-height: 64px;
    counter-increment: garBenefitItem;
    overflow: hidden;
    margin: 0 !important;
    padding: 16px 18px 16px 74px !important;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.90));
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 23px;
    list-style: none !important;
    box-shadow:
        0 13px 32px rgba(0, 90, 127, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth);
}

/* Número decorativo del beneficio */
.gar-bnv__list ul li::before,
.gar-bnv__list #liplus li::before {
    content: counter(garBenefitItem, decimal-leading-zero);
    position: absolute;
    top: 50%;
    left: 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 10px 22px rgba(216, 184, 109, 0.22),
        0 0 0 6px rgba(216, 184, 109, 0.12);
    transform: translateY(-50%);
    transition:
        transform var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

/* Decoración adicional para hover */
.gar-bnv__list ul li::after,
.gar-bnv__list #liplus li::after {
    content: "\F26E";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    font-family: "bootstrap-icons";
    font-size: 15px;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
    transition:
        opacity var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth);
}

.gar-bnv__list ul li:hover,
.gar-bnv__list #liplus li:hover {
    border-color: rgba(216, 184, 109, 0.38);
    background: var(--gar-white);
    color: var(--gar-primary);
    box-shadow:
        0 20px 46px rgba(0, 90, 127, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: translateX(8px);
}

.gar-bnv__list ul li:hover::before,
.gar-bnv__list #liplus li:hover::before {
    border-radius: 50%;
    box-shadow:
        0 14px 28px rgba(216, 184, 109, 0.30),
        0 0 0 7px rgba(216, 184, 109, 0.16);
    transform: translateY(-50%) rotate(-6deg) scale(1.04);
}

.gar-bnv__list ul li:hover::after,
.gar-bnv__list #liplus li:hover::after {
    opacity: 1;
    background: var(--gar-primary);
    color: var(--gar-secondary);
    transform: translateY(-50%) scale(1);
}

.gar-bnv__list b,
.gar-bnv__list strong {
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-weight: 700;
}


/* ============================================================================
   07. BOTONES DE ACCIÓN
   ============================================================================ */

.gar-bnv__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 90, 127, 0.12);
}

.gar-bnv__btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 23px;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition:
        transform var(--gar-transition-fast),
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        border-color var(--gar-transition-fast);
}

.gar-bnv__btn:hover {
    text-decoration: none;
}

/* Botón azul */
.gar-bnv__btn--primary {
    background: var(--gar-primary);
    color: var(--gar-white);
    box-shadow: 0 15px 32px rgba(0, 90, 127, 0.22);
}

.gar-bnv__btn--primary .gar-bnv__btn-icon {
    color: var(--gar-secondary);
}

.gar-bnv__btn--primary i:last-child {
    font-size: 18px;
    transition: transform var(--gar-transition-fast);
}

.gar-bnv__btn--primary:hover {
    background: var(--gar-primary-dark);
    color: var(--gar-white);
    box-shadow: 0 20px 40px rgba(0, 90, 127, 0.30);
    transform: translateY(-2px);
}

.gar-bnv__btn--primary:hover i:last-child {
    transform: translateX(4px);
}

/* Botón de contacto principal integrado a marca */
.gar-bnv__btn--whatsapp {
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    box-shadow: 0 15px 32px rgba(0, 90, 127, 0.25);
}

.gar-bnv__btn--whatsapp i {
    font-size: 18px;
    line-height: 1;
}

.gar-bnv__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. COLUMNA VISUAL / MEDIA
   ============================================================================ */

.gar-bnv__media {
    position: relative;
}

.gar-bnv__media-shell {
    position: relative;
    max-width: 570px;
    margin-left: auto;
}

.gar-bnv__media-card {
    position: relative;
}

.gar-bnv__media-card::before {
    content: "";
    position: absolute;
    inset: 30px -22px -22px 36px;
    z-index: 0;
    border: 1px solid var(--gar-secondary);
    border-radius: 36px;
}

.gar-bnv__image-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 4 / 4.25;
    border: 8px solid rgba(255, 255, 255, 0.90);
    border-radius: 36px;
    background: var(--gar-primary);
    box-shadow:
        0 32px 75px rgba(0, 90, 127, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.gar-bnv__image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition:
        transform 800ms ease,
        filter 800ms ease;
}

.gar-bnv__image-wrap:hover img {
    filter: saturate(1.08);
    transform: scale(1.075);
}

.gar-bnv__image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 127, 0.32) 0%,
            rgba(0, 90, 127, 0.10) 36%,
            rgba(0, 90, 127, 0.56) 72%,
            rgba(0, 50, 71, 0.96) 100%
        );
    pointer-events: none;
}


/* ============================================================================
   09. BOTÓN PLAY
   ============================================================================ */

.gar-bnv__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transform: translate(-50%, -50%);
}

.gar-bnv__play:hover {
    text-decoration: none;
}

.gar-bnv__play-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.34);
    pointer-events: none;
    animation: garBnvPulse 2300ms infinite;
}

.gar-bnv__play-pulse--two {
    animation-delay: 1150ms;
}

@keyframes garBnvPulse {
    0% {
        opacity: 0.85;
        transform: scale(0.85);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

.gar-bnv__play-circle {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.23),
        0 0 0 5px rgba(255, 255, 255, 0.24);
    transition:
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-bnv__play:hover .gar-bnv__play-circle {
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.30),
        0 0 0 7px rgba(255, 255, 255, 0.30);
    transform: scale(1.08);
}

.gar-bnv__play-circle i {
    margin-left: 4px;
    font-size: 35px;
    line-height: 1;
}


/* ============================================================================
   10. CAPTION SOBRE LA IMAGEN
   ============================================================================ */

.gar-bnv__caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    pointer-events: none;
}

.gar-bnv__caption-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 11px;
    padding: 6px 12px;
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 0, 0, 0.46);
    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;
    backdrop-filter: blur(10px);
}

.gar-bnv__caption-title {
    max-width: 92%;
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}


/* ============================================================================
   11. BADGES FLOTANTES
   ============================================================================ */

.gar-bnv__floating {
    position: absolute;
    z-index: 6;
    max-width: 265px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 16px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(0, 90, 127, 0.18);
    backdrop-filter: blur(10px);
    transition:
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

.gar-bnv__floating:hover {
    box-shadow: 0 25px 58px rgba(0, 90, 127, 0.24);
    transform: translateY(-4px);
}

.gar-bnv__floating--top {
    top: 19px;
    left: 19px;
    border-left: 4px solid var(--gar-secondary);
}

.gar-bnv__floating--bottom {
    right: -16px;
    bottom: 32px;
    border-left: 4px solid var(--gar-primary);
}

.gar-bnv__floating-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-light));
    color: var(--gar-secondary);
    font-size: 19px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 90, 127, 0.22);
}

.gar-bnv__floating-content {
    min-width: 0;
}

.gar-bnv__floating strong {
    display: block;
    margin-bottom: 3px;
    color: var(--gar-primary);
    font-family: var(--gar-font-hero);
    font-size: 16px;
    font-weight: 900;
    line-height: 18px;
}

.gar-bnv__floating span {
    display: block;
    color: var(--gar-text-soft);
    font-size: 12px;
    line-height: 16px;
}


/* ============================================================================
   12. TRUST CARD BAJO EL VIDEO
   ============================================================================ */

.gar-bnv__trust-card {
    position: relative;
    z-index: 3;
    width: calc(100% - 34px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin: 50px 0 0 auto;
    padding: 22px 23px;
    overflow: hidden;
    border: 1px solid rgba(216, 184, 109, 0.28);
    border-top: 4px solid var(--gar-secondary);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 50%, rgba(216, 184, 109, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.86));
    box-shadow:
        0 24px 58px rgba(0, 90, 127, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.gar-bnv__trust-card::before {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -72px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.10);
    pointer-events: none;
}

.gar-bnv__trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 90, 127, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.18;
    pointer-events: none;
}

.gar-bnv__trust-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.34);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.88));
    color: var(--gar-primary);
    box-shadow:
        0 14px 30px rgba(0, 90, 127, 0.10),
        0 0 0 8px rgba(216, 184, 109, 0.10);
}

.gar-bnv__trust-icon i {
    font-size: 25px;
    line-height: 1;
}

.gar-bnv__trust-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.gar-bnv__trust-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-bnv__trust-content h3 {
    margin: 0 0 11px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
}

.gar-bnv__trust-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    color: var(--gar-secondary-dark);
    font-size: 15px;
    line-height: 1;
}

.gar-bnv__trust-rating strong {
    margin-left: 6px;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
}


/* ============================================================================
   13. IFRAME FALLBACK
   ============================================================================ */

.gar-bnv__iframe {
    position: absolute;
    inset: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ============================================================================
   14. RESPONSIVE BENEFICIOS
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-bnv__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
        gap: 51px;
    }

    .gar-bnv__title {
        font-size: 46px;
        line-height: 51px;
    }

    .gar-bnv__floating--bottom {
        right: 0;
    }

    .gar-bnv__trust-card {
        width: 100%;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-bnv {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-bnv__grid {
        grid-template-columns: 1fr;
        gap: 61px;
    }

    .gar-bnv__content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .gar-bnv__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-bnv__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .gar-bnv__marker {
        margin-left: auto;
        margin-right: auto;
    }

    .gar-bnv__list ul,
    .gar-bnv__list #liplus {
        text-align: left;
    }

    .gar-bnv__actions {
        justify-content: center;
    }

    .gar-bnv__media-shell {
        margin: 0 auto;
    }

    .gar-bnv__trust-card {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-bnv {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-bnv__content {
        text-align: left;
    }

    .gar-bnv__eyebrow {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-bnv__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-bnv__lead {
        margin-left: 0;
        margin-right: 0;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-bnv__marker {
        margin-left: 0;
        margin-right: 0;
    }

    .gar-bnv__marker-text {
        font-size: 11px;
        line-height: 14px;
    }

    .gar-bnv__list ul,
    .gar-bnv__list #liplus {
        gap: 12px;
    }

    .gar-bnv__list ul li,
    .gar-bnv__list #liplus li {
        min-height: auto;
        padding: 15px 15px 15px 64px !important;
        border-radius: 18px;
        font-size: 14px;
        line-height: 22px;
    }

    .gar-bnv__list ul li::before,
    .gar-bnv__list #liplus li::before {
        left: 12px;
        width: 36px;
        height: 36px;
        border-radius: 14px;
        font-size: 14px;
    }

    .gar-bnv__list ul li::after,
    .gar-bnv__list #liplus li::after {
        display: none;
    }

    .gar-bnv__list ul li:hover,
    .gar-bnv__list #liplus li:hover {
        transform: translateX(0);
    }

    .gar-bnv__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gar-bnv__btn {
        width: 100%;
    }

    .gar-bnv__media-card::before {
        inset: 20px -8px -14px 18px;
        border-radius: 28px;
    }

    .gar-bnv__image-wrap {
        aspect-ratio: 4 / 4.35;
        border-width: 6px;
        border-radius: 30px;
    }

    .gar-bnv__play {
        width: 76px;
        height: 76px;
    }

    .gar-bnv__play-circle {
        width: 64px;
        height: 64px;
    }

    .gar-bnv__play-circle i {
        font-size: 30px;
    }

    .gar-bnv__caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .gar-bnv__caption-tag {
        font-size: 10px;
    }

    .gar-bnv__caption-title {
        max-width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .gar-bnv__floating {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        max-width: none;
        margin-top: 16px;
    }

    .gar-bnv__floating--bottom {
        display: none;
    }

    .gar-bnv__trust-card {
        grid-template-columns: auto minmax(0, 1fr);
        margin-top: 22px;
        padding: 18px;
        border-radius: 22px;
    }

    .gar-bnv__trust-icon {
        width: 56px;
        height: 56px;
    }

    .gar-bnv__trust-icon i {
        font-size: 22px;
    }

    .gar-bnv__trust-content h3 {
        font-size: 18px;
        line-height: 22px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-bnv {
        padding: var(--gar-section-padding-small);
    }

    .gar-bnv__eyebrow {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1px;
    }

    .gar-bnv__title {
        font-size: 34px;
        line-height: 40px;
    }

    .gar-bnv__lead {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-bnv__marker {
        align-items: flex-start;
        border-radius: 18px;
    }

    .gar-bnv__marker-text {
        font-size: 10px;
        line-height: 14px;
    }

    .gar-bnv__list ul li,
    .gar-bnv__list #liplus li {
        padding: 14px 14px 14px 60px !important;
        font-size: 14px;
        line-height: 21px;
    }

    .gar-bnv__list ul li::before,
    .gar-bnv__list #liplus li::before {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .gar-bnv__image-wrap {
        aspect-ratio: 4 / 4.1;
    }

    .gar-bnv__floating {
        padding: 14px;
    }

    .gar-bnv__floating-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }

    .gar-bnv__floating strong {
        font-size: 15px;
        line-height: 17px;
    }

    .gar-bnv__floating span {
        font-size: 12px;
        line-height: 16px;
    }

    .gar-bnv__trust-card {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        text-align: center;
    }

    .gar-bnv__trust-content h3 {
        font-size: 17px;
        line-height: 21px;
    }

    .gar-bnv__trust-rating {
        justify-content: center;
    }

    .gar-bnv__trust-rating strong {
        width: 100%;
        margin: 6px 0 0;
    }
}

/* FIN BENEFICIOS LEY DE INSOLVENCIA */

/* ============================================================================
   COUNTER HOME — Métricas de autoridad
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Mostrar cifras, resultados o indicadores de confianza.
   - Reforzar autoridad visual de la firma.
   - Mantener animaciones de contador, partículas, glow y barra decorativa.
   - Mantener estado .is-counted para cuando termina la animación del contador.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-counter-home {
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(135deg, var(--gar-primary-deep) 0%, var(--gar-primary-dark) 48%, var(--gar-primary) 100%);
    font-family: var(--gar-font-body);
}

.gar-counter-home .container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-counter-home__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-counter-home__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(216, 184, 109, 0.10) 1px, transparent 2px);
    background-size: 24px 24px, 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.30;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 84%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 84%, transparent);
}

.gar-counter-home__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    animation: garCounterGlowFloat 8000ms ease-in-out infinite;
}

.gar-counter-home__glow--one {
    top: -180px;
    left: -180px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.28), transparent 70%);
}

.gar-counter-home__glow--two {
    right: -240px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
    animation-delay: 4000ms;
}

@keyframes garCounterGlowFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

/* Líneas verticales decorativas */
.gar-counter-home__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent calc(33.333% - 1px),
            rgba(216, 184, 109, 0.08) 33.333%,
            transparent calc(33.333% + 1px)
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            transparent calc(66.666% - 1px),
            rgba(216, 184, 109, 0.08) 66.666%,
            transparent calc(66.666% + 1px)
        );
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* Tipografía gigante de fondo */
.gar-counter-home__bigtype {
    position: absolute;
    bottom: -48px;
    left: 50%;
    color: transparent;
    font-family: var(--gar-font-hero);
    font-size: 220px;
    font-weight: 800;
    font-style: italic;
    line-height: 187px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px rgba(216, 184, 109, 0.07);
}


/* ============================================================================
   03. PARTÍCULAS FLOTANTES
   ============================================================================ */

.gar-counter-home__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gar-counter-home__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 12px rgba(216, 184, 109, 0.60);
    opacity: 0;
    animation: garCounterParticleFloat 8000ms ease-in-out infinite;
}

.gar-counter-home__particle--1 {
    top: 15%;
    left: 8%;
    animation-delay: 0ms;
    animation-duration: 9000ms;
}

.gar-counter-home__particle--2 {
    top: 30%;
    left: 92%;
    animation-delay: 1200ms;
    animation-duration: 7000ms;
}

.gar-counter-home__particle--3 {
    top: 65%;
    left: 12%;
    animation-delay: 2400ms;
    animation-duration: 10000ms;
}

.gar-counter-home__particle--4 {
    top: 75%;
    left: 88%;
    animation-delay: 3600ms;
    animation-duration: 8000ms;
}

.gar-counter-home__particle--5 {
    top: 20%;
    left: 50%;
    width: 3px;
    height: 3px;
    animation-delay: 4800ms;
    animation-duration: 11000ms;
}

.gar-counter-home__particle--6 {
    top: 80%;
    left: 45%;
    width: 5px;
    height: 5px;
    animation-delay: 600ms;
    animation-duration: 9000ms;
}

.gar-counter-home__particle--7 {
    top: 45%;
    left: 22%;
    width: 3px;
    height: 3px;
    animation-delay: 2800ms;
    animation-duration: 12000ms;
}

.gar-counter-home__particle--8 {
    top: 50%;
    left: 75%;
    animation-delay: 5500ms;
    animation-duration: 8000ms;
}

@keyframes garCounterParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1);
    }

    80% {
        opacity: 0.8;
        transform: translateY(-100px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-130px) scale(0.5);
    }
}


/* ============================================================================
   04. HEADER
   ============================================================================ */

.gar-counter-home__header {
    margin-bottom: 48px;
    text-align: center;
}

.gar-counter-home__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 19px;
    color: var(--gar-secondary);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gar-counter-home__eyebrow-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gar-secondary));
}

.gar-counter-home__eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
}

.gar-counter-home__eyebrow i {
    font-size: 16px;
    line-height: 1;
}

.gar-counter-home__title {
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.gar-counter-home__title em {
    color: var(--gar-secondary);
    font-style: italic;
    font-weight: 700;
}


/* ============================================================================
   05. PANEL PRINCIPAL
   ============================================================================ */

.gar-counter-home__panel {
    position: relative;
    padding: 15px 0;
    border-radius: 32px;
}

@keyframes garCounterOrbPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Esquinas doradas decorativas */
.gar-counter-home__corner {
    position: absolute;
    z-index: 4;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.gar-counter-home__corner--tl {
    top: 18px;
    left: 18px;
    border-top: 2px solid var(--gar-secondary);
    border-left: 2px solid var(--gar-secondary);
    border-top-left-radius: 4px;
}

.gar-counter-home__corner--tr {
    top: 18px;
    right: 18px;
    border-top: 2px solid var(--gar-secondary);
    border-right: 2px solid var(--gar-secondary);
    border-top-right-radius: 4px;
}

.gar-counter-home__corner--bl {
    bottom: 18px;
    left: 18px;
    border-bottom: 2px solid var(--gar-secondary);
    border-left: 2px solid var(--gar-secondary);
    border-bottom-left-radius: 4px;
}

.gar-counter-home__corner--br {
    right: 18px;
    bottom: 18px;
    border-right: 2px solid var(--gar-secondary);
    border-bottom: 2px solid var(--gar-secondary);
    border-bottom-right-radius: 4px;
}


/* ============================================================================
   06. GRID DE CONTADORES
   ============================================================================ */

.gar-counter-home__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}


/* ============================================================================
   07. ITEM DEL CONTADOR
   ============================================================================ */

.gar-counter-home__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
    padding: 29px 24px;
    border-radius: 22px;
    text-align: center;
    transition:
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

/* Divider vertical entre items */
.gar-counter-home__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: 0;
    bottom: 22%;
    z-index: 1;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(216, 184, 109, 0.40) 30%,
            rgba(216, 184, 109, 0.40) 70%,
            transparent
        );
}

.gar-counter-home__item:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 109, 0.12);
    transform: translateY(-4px);
}


/* ============================================================================
   08. TAG SUPERIOR
   ============================================================================ */

.gar-counter-home__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 5px 11px;
    border: 1px solid rgba(216, 184, 109, 0.25);
    border-radius: var(--gar-radius-pill);
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gar-counter-home__tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 8px rgba(216, 184, 109, 0.70);
    animation: garCounterDotPulse 2000ms ease-in-out infinite;
}

@keyframes garCounterDotPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}


/* ============================================================================
   09. ÍCONO DEL CONTADOR
   ============================================================================ */

.gar-counter-home__icon-wrap {
    position: relative;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gar-counter-home__icon-halo {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--gar-transition-smooth);
}

.gar-counter-home__icon-ring {
    position: absolute;
    inset: -2px;
    border: 2px dashed rgba(216, 184, 109, 0.35);
    border-radius: 25px;
    transition:
        transform 8000ms linear,
        border-color var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth);
}

.gar-counter-home__item:hover .gar-counter-home__icon-halo {
    opacity: 1;
}

.gar-counter-home__item:hover .gar-counter-home__icon-ring {
    border-color: rgba(216, 184, 109, 0.60);
    border-radius: 50%;
    transform: rotate(360deg);
}

.gar-counter-home__icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.28);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    color: var(--gar-secondary);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth);
}

.gar-counter-home__icon i,
.gar-counter-home__icon svg {
    font-size: 32px;
    line-height: 1;
}

.gar-counter-home__icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.gar-counter-home__item:hover .gar-counter-home__icon {
    border-color: rgba(216, 184, 109, 0.70);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow:
        0 22px 44px rgba(216, 184, 109, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    transform: rotate(-6deg) scale(1.05);
}


/* ============================================================================
   10. CONTENIDO DEL CONTADOR
   ============================================================================ */

.gar-counter-home__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Número editorial */
.gar-counter-home__number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    margin-bottom: 8px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-weight: 800;
    line-height: 1;
}

.gar-counter-home__number .counter {
    display: inline-block;
    color: var(--gar-white);
    font-size: 55px;
    line-height: 55px;
    background:
        linear-gradient(
            180deg,
            var(--gar-white) 0%,
            var(--gar-white) 60%,
            rgba(255, 255, 255, 0.70) 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
    transform: translateY(0);
    transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gar-counter-home__plus {
    margin-left: 2px;
    color: var(--gar-secondary);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: scale(0.5);
    transition:
        opacity 400ms ease,
        transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Cuando el contador termina, aparece el + */
.gar-counter-home__item.is-counted .gar-counter-home__plus {
    opacity: 1;
    transform: scale(1);
}

.gar-counter-home__item.is-counted .gar-counter-home__number .counter {
    animation: garCounterFinishBounce 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes garCounterFinishBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* ============================================================================
   11. BARRA DECORATIVA
   ============================================================================ */

.gar-counter-home__bar {
    position: relative;
    display: block;
    width: 60px;
    height: 3px;
    overflow: hidden;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.gar-counter-home__bar-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--gar-secondary),
            var(--gar-secondary-dark),
            var(--gar-secondary)
        );
    box-shadow: 0 0 12px rgba(216, 184, 109, 0.60);
    transition: width 1800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gar-counter-home__item.is-counted .gar-counter-home__bar-fill {
    width: 100%;
}


/* ============================================================================
   12. TEXTOS DEL CONTADOR
   ============================================================================ */

.gar-counter-home__label {
    margin: 0 0 6px;
    color: var(--gar-white);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-counter-home__sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--gar-font-body);
    font-size: 13px;
    line-height: 19px;
}

/* Numeración editorial de fondo */
.gar-counter-home__index {
    position: absolute;
    right: 16px;
    bottom: 8px;
    z-index: 1;
    color: transparent;
    font-family: var(--gar-font-hero);
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
    opacity: 0.60;
    pointer-events: none;
    user-select: none;
    -webkit-text-stroke: 1px rgba(216, 184, 109, 0.15);
    transition:
        color var(--gar-transition-smooth),
        opacity var(--gar-transition-smooth);
}

.gar-counter-home__item:hover .gar-counter-home__index {
    color: rgba(216, 184, 109, 0.50);
    opacity: 1;
    -webkit-text-stroke: 1px transparent;
}


/* ============================================================================
   13. FOOTER / BADGE DE GARANTÍA
   ============================================================================ */

.gar-counter-home__footer {
    margin-top: 32px;
    text-align: center;
}

.gar-counter-home__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--gar-radius-pill);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.gar-counter-home__guarantee-icon {
    display: inline-flex;
    color: var(--gar-secondary);
    font-size: 19px;
    line-height: 1;
    animation: garCounterShieldPulse 2500ms ease-in-out infinite;
}

@keyframes garCounterShieldPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

.gar-counter-home__guarantee-text {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
}

.gar-counter-home__guarantee-text strong {
    color: var(--gar-white);
    font-weight: 700;
}


/* ============================================================================
   14. RESPONSIVE COUNTER
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-counter-home__panel {
        padding: 32px 24px;
    }

    .gar-counter-home__item {
        padding: 22px 16px;
    }

    .gar-counter-home__icon-wrap {
        width: 76px;
        height: 76px;
    }

    .gar-counter-home__icon {
        width: 70px;
        height: 70px;
    }

    .gar-counter-home__icon i,
    .gar-counter-home__icon svg {
        width: 35px;
        height: 35px;
        font-size: 32px;
    }

    .gar-counter-home__index {
        font-size: 51px;
        line-height: 51px;
    }

    .gar-counter-home__bigtype {
        font-size: 180px;
        line-height: 153px;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-counter-home {
        padding: 72px 0;
    }

    .gar-counter-home__header {
        margin-bottom: 38px;
    }

    .gar-counter-home__title {
        font-size: 29px;
        line-height: 36px;
    }

    .gar-counter-home__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gar-counter-home__item {
        flex-direction: row;
        align-items: center;
        gap: 22px;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.04);
        text-align: left;
    }

    .gar-counter-home__item:not(:last-child)::after {
        display: none;
    }

    .gar-counter-home__icon-wrap {
        flex-shrink: 0;
    }

    .gar-counter-home__content {
        text-align: left;
    }

    .gar-counter-home__number {
        justify-content: flex-start;
    }

    .gar-counter-home__bar {
        margin: 6px 0 11px;
    }

    .gar-counter-home__tag {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .gar-counter-home__index {
        right: 8px;
        bottom: 5px;
        font-size: 48px;
        line-height: 48px;
        opacity: 0.40;
    }

    .gar-counter-home__bigtype {
        font-size: 140px;
        line-height: 119px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-counter-home {
        padding: 64px 0;
    }

    .gar-counter-home__panel {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .gar-counter-home__corner {
        width: 18px;
        height: 18px;
    }

    .gar-counter-home__corner--tl,
    .gar-counter-home__corner--tr {
        top: 14px;
    }

    .gar-counter-home__corner--bl,
    .gar-counter-home__corner--br {
        bottom: 14px;
    }

    .gar-counter-home__corner--tl,
    .gar-counter-home__corner--bl {
        left: 14px;
    }

    .gar-counter-home__corner--tr,
    .gar-counter-home__corner--br {
        right: 14px;
    }

    .gar-counter-home__item {
        flex-wrap: wrap;
        padding: 19px;
        border-radius: 20px;
    }

    .gar-counter-home__tag {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .gar-counter-home__number .counter {
        font-size: 48px;
        line-height: 48px;
    }

    .gar-counter-home__plus {
        font-size: 28px;
    }

    .gar-counter-home__guarantee {
        padding: 10px 16px;
    }

    .gar-counter-home__guarantee-text {
        font-size: 13px;
        line-height: 18px;
    }

    .gar-counter-home__bigtype {
        display: none;
    }

    .gar-counter-home__particles {
        opacity: 0.65;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-counter-home {
        padding: 56px 0;
    }

    .gar-counter-home__header {
        margin-bottom: 32px;
    }

    .gar-counter-home__title {
        font-size: 26px;
        line-height: 33px;
    }

    .gar-counter-home__eyebrow {
        gap: 8px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .gar-counter-home__eyebrow-line {
        width: 24px;
    }

    .gar-counter-home__item {
        gap: 16px;
        padding: 18px;
    }

    .gar-counter-home__icon-wrap {
        width: 64px;
        height: 64px;
    }

    .gar-counter-home__icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .gar-counter-home__icon i,
    .gar-counter-home__icon svg {
        width: 30px;
        height: 30px;
        font-size: 27px;
    }

    .gar-counter-home__number .counter {
        font-size: 42px;
        line-height: 42px;
    }

    .gar-counter-home__plus {
        font-size: 22px;
    }

    .gar-counter-home__label {
        font-size: 13px;
        line-height: 18px;
    }

    .gar-counter-home__sub {
        font-size: 12px;
        line-height: 17px;
    }

    .gar-counter-home__index {
        font-size: 42px;
        line-height: 42px;
    }

    .gar-counter-home__guarantee {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* FIN COUNTER HOME */

/* ============================================================================
   CON ABOGADOS HOME — Tipos de deudas y obligaciones
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Mostrar los tipos de deudas u obligaciones que la firma puede ayudar
     a negociar, resolver o tratar legalmente.
   - Facilitar que el usuario identifique rápidamente su caso.
   - Reforzar SEO con términos relacionados a deudas, hipotecas, tarjetas,
     multas, libranzas, prendas, títulos valores, etc.
   - Mantener cards limpias, visuales y fáciles de escanear.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-debts-clean {
    position: relative;
    overflow: hidden;
    padding: 102px 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(216, 184, 109, 0.11), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(0, 90, 127, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--gar-cream) 52%, #ffffff 100%);
    font-family: var(--gar-font-body);
}

.gar-debts-clean .container {
    position: relative;
    z-index: 2;
    max-width: 1220px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-debts-clean__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-debts-clean__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.26;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.gar-debts-clean__shape,
.gar-debts-clean__glow {
    position: absolute;
    pointer-events: none;
}

.gar-debts-clean__shape--one {
    top: 8%;
    right: -115px;
    width: 285px;
    height: 285px;
    border: 1px solid rgba(216, 184, 109, 0.12);
    border-radius: 56px;
    background:
        linear-gradient(135deg, rgba(0, 90, 127, 0.07), rgba(216, 184, 109, 0.13));
    transform: rotate(22deg);
}

.gar-debts-clean__shape--two {
    left: -140px;
    bottom: -150px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.10);
    filter: blur(4px);
}

.gar-debts-clean__glow {
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.48;
}

.gar-debts-clean__glow--one {
    top: -220px;
    left: -190px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.13), transparent 70%);
}

.gar-debts-clean__glow--two {
    right: -210px;
    bottom: -240px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.12), transparent 70%);
}


/* ============================================================================
   03. HEADER DE LA SECCIÓN
   ============================================================================ */

.gar-debts-clean__header {
    max-width: 860px;
    margin: 0 auto 61px;
    text-align: center;
}

.gar-debts-clean__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 17px;
    border: 1px solid rgba(0, 90, 127, 0.09);
    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-debts-clean__eyebrow i {
    color: var(--gar-secondary-dark);
    font-size: 15px;
    line-height: 1;
}

.gar-debts-clean__title {
    margin: 0 0 17px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-debts-clean__title span,
.gar-debts-clean__title strong,
.gar-debts-clean__title b,
.gar-debts-clean__title em {
    color: var(--gar-secondary-dark);
    font-style: italic;
}

.gar-debts-clean__lead {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 16px;
    line-height: 27px;
}


/* ============================================================================
   04. GRID DE DEUDAS
   ============================================================================ */

.gar-debts-clean__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}


/* ============================================================================
   05. CARD / ITEM DE DEUDA
   ============================================================================ */

.gar-debts-clean__item {
    position: relative;
    min-height: 112px;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    isolation: isolate;
    overflow: hidden;
    padding: 18px 66px 18px 18px;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.82));
    box-shadow:
        0 16px 38px rgba(0, 90, 127, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
    transition:
        transform var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-debts-clean__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 95% 10%, rgba(0, 90, 127, 0.10), transparent 34%),
        radial-gradient(circle at 8% 92%, rgba(216, 184, 109, 0.16), transparent 34%);
    opacity: 0;
    transition: opacity var(--gar-transition-smooth);
}

/* Línea inferior dorada */
.gar-debts-clean__item::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
    transition:
        left var(--gar-transition-smooth),
        right var(--gar-transition-smooth),
        height var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-debts-clean__item:hover {
    border-color: rgba(216, 184, 109, 0.38);
    background: var(--gar-white);
    box-shadow:
        0 26px 58px rgba(0, 90, 127, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transform: translateY(-7px);
}

.gar-debts-clean__item:hover::before {
    opacity: 1;
}

.gar-debts-clean__item:hover::after {
    left: 15px;
    right: 15px;
    height: 4px;
    background: linear-gradient(90deg, var(--gar-primary), var(--gar-secondary));
}


/* ============================================================================
   06. NÚMERO EDITORIAL
   ============================================================================ */

.gar-debts-clean__number {
    position: relative;
    z-index: 2;
    min-width: 34px;
    color: rgba(216, 184, 109, 0.88);
    font-family: var(--gar-font-hero);
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}


/* ============================================================================
   07. ÍCONO DEL ITEM
   ============================================================================ */

.gar-debts-clean__icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.34);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.88));
    color: var(--gar-secondary-dark);
    box-shadow:
        0 12px 26px rgba(0, 90, 127, 0.08),
        0 0 0 8px rgba(216, 184, 109, 0.08);
    transition:
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        border-radius var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

.gar-debts-clean__icon i {
    font-size: 25px;
    line-height: 1;
}

.gar-debts-clean__item:hover .gar-debts-clean__icon {
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-dark));
    color: var(--gar-secondary-light);
    box-shadow:
        0 16px 32px rgba(0, 90, 127, 0.18),
        0 0 0 8px rgba(0, 90, 127, 0.08);
    transform: rotate(-5deg) scale(1.04);
}


/* ============================================================================
   08. CONTENIDO DEL ITEM
   ============================================================================ */

.gar-debts-clean__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.gar-debts-clean__content h3 {
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}


/* ============================================================================
   09. FLECHA DECORATIVA
   ============================================================================ */

.gar-debts-clean__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 90, 127, 0.06);
    color: var(--gar-primary);
    opacity: 0;
    transform: translateY(-50%) translateX(-6px);
    transition:
        opacity var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth);
}

.gar-debts-clean__arrow i {
    font-size: 15px;
    line-height: 1;
}

.gar-debts-clean__item:hover .gar-debts-clean__arrow {
    opacity: 1;
    background: var(--gar-primary);
    color: var(--gar-secondary);
    transform: translateY(-50%) translateX(0);
}


/* ============================================================================
   10. CTA FINAL
   ============================================================================ */

.gar-debts-clean__cta {
    position: relative;
    max-width: 1040px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin: 67px auto 0;
    padding: 25px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 5px solid var(--gar-secondary);
    border-radius: 30px;
    background:
        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-debts-clean__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-debts-clean__cta-icon,
.gar-debts-clean__cta-content,
.gar-debts-clean__cta-btn {
    position: relative;
    z-index: 2;
}

.gar-debts-clean__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-debts-clean__cta-icon i {
    font-size: 26px;
    line-height: 1;
}

.gar-debts-clean__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-debts-clean__cta-content h3 {
    margin: 0 0 6px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 25px;
    font-weight: 800;
    line-height: 30px;
}

.gar-debts-clean__cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 24px;
}

.gar-debts-clean__cta-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 25px;
    border-radius: var(--gar-radius-pill);
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 90, 127, 0.28);
    transition:
        background var(--gar-transition-fast),
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-debts-clean__cta-btn:hover {
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(0, 90, 127, 0.32);
    transform: translateY(-2px);
}


/* ============================================================================
   11. RESPONSIVE CON ABOGADOS
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-debts-clean__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gar-debts-clean__item {
        min-height: 106px;
    }

    .gar-debts-clean__title {
        font-size: 46px;
        line-height: 51px;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-debts-clean {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-debts-clean__header {
        margin-bottom: 48px;
    }

    .gar-debts-clean__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-debts-clean__cta {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 28px;
        text-align: center;
    }

    .gar-debts-clean__cta-icon {
        margin: 0 auto;
    }

    .gar-debts-clean__cta-content p {
        margin: 0 auto;
    }

    .gar-debts-clean__cta-btn {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-debts-clean {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-debts-clean__header {
        margin-bottom: 38px;
        text-align: left;
    }

    .gar-debts-clean__eyebrow {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-debts-clean__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-debts-clean__lead {
        margin-left: 0;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-debts-clean__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gar-debts-clean__item {
        min-height: auto;
        grid-template-columns: auto auto minmax(0, 1fr);
        gap: 12px;
        padding: 16px 60px 16px 16px;
        border-radius: 20px;
    }

    .gar-debts-clean__number {
        min-width: 28px;
        font-size: 16px;
    }

    .gar-debts-clean__icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 17px;
    }

    .gar-debts-clean__icon i {
        font-size: 21px;
    }

    .gar-debts-clean__content h3 {
        font-size: 15px;
        line-height: 19px;
    }

    .gar-debts-clean__arrow {
        right: 14px;
        width: 30px;
        height: 30px;
        background: rgba(0, 90, 127, 0.07);
        opacity: 1;
        transform: translateY(-50%);
    }

    .gar-debts-clean__item:hover {
        transform: translateY(-3px);
    }

    .gar-debts-clean__cta {
        margin-top: 43px;
        border-radius: 24px;
    }

    .gar-debts-clean__cta-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .gar-debts-clean__cta-content p {
        font-size: 14px;
        line-height: 23px;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-debts-clean {
        padding: var(--gar-section-padding-small);
    }

    .gar-debts-clean__title {
        font-size: 32px;
        line-height: 38px;
    }

    .gar-debts-clean__lead {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-debts-clean__item {
        gap: 11px;
        padding: 15px 54px 15px 14px;
    }

    .gar-debts-clean__number {
        min-width: 24px;
        font-size: 15px;
    }

    .gar-debts-clean__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 16px;
    }

    .gar-debts-clean__icon i {
        font-size: 19px;
    }

    .gar-debts-clean__content h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .gar-debts-clean__arrow {
        right: 12px;
        width: 28px;
        height: 28px;
    }

    .gar-debts-clean__arrow i {
        font-size: 14px;
    }

    .gar-debts-clean__cta {
        padding: 26px 16px;
        border-radius: 22px;
    }

    .gar-debts-clean__cta-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .gar-debts-clean__cta-icon i {
        font-size: 24px;
    }

    .gar-debts-clean__cta-content span {
        font-size: 10px;
        line-height: 14px;
    }

    .gar-debts-clean__cta-content h3 {
        font-size: 21px;
        line-height: 27px;
    }

    .gar-debts-clean__cta-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-debts-clean__cta-btn {
        min-height: 50px;
        width: 100%;
        font-size: 14px;
    }
}

/* FIN CON ABOGADOS HOME — Tipos de deudas y obligaciones */

/* ============================================================================
   TESTIMONIOS HOME — Playlist tipo YouTube fondo claro premium
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Mostrar testimonios reales en formato video.
   - Mantener un video principal grande con overlay y botón play.
   - Mantener playlist lateral tipo YouTube con testimonios relacionados.
   - Al reproducir, ocultar play/info/overlay para liberar controles de YouTube.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-testimonials-watch {
    position: relative;
    overflow: hidden;
    padding: 102px 0;
    background: #eef3f5;
    font-family: var(--gar-font-body);
}

.gar-testimonials-watch .container {
    position: relative;
    z-index: 2;
    max-width: 1220px;
}


/* ============================================================================
   02. FONDO DECORATIVO
   ============================================================================ */

.gar-testimonials-watch__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-testimonials-watch__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 90, 127, 0.07) 1px, transparent 2px),
        radial-gradient(circle, rgba(216, 184, 109, 0.07) 1px, transparent 2px);
    background-size: 24px 24px, 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.34;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.gar-testimonials-watch__glow,
.gar-testimonials-watch__shape {
    position: absolute;
    pointer-events: none;
}

.gar-testimonials-watch__glow {
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.48;
}

.gar-testimonials-watch__glow--one {
    top: -250px;
    left: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.18), transparent 70%);
}

.gar-testimonials-watch__glow--two {
    right: -260px;
    bottom: -260px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.12), transparent 72%);
}

.gar-testimonials-watch__shape--one {
    top: 9%;
    right: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(216, 184, 109, 0.12);
    border-radius: 58px;
    background:
        linear-gradient(135deg, rgba(0, 90, 127, 0.06), rgba(216, 184, 109, 0.12));
    transform: rotate(18deg);
}

.gar-testimonials-watch__shape--two {
    left: -120px;
    bottom: -130px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.10);
    filter: blur(4px);
}


/* ============================================================================
   03. HEADER DE LA SECCIÓN
   ============================================================================ */

.gar-testimonials-watch__header {
    max-width: 850px;
    margin: 0 auto 61px;
    text-align: center;
}

.gar-testimonials-watch__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 17px;
    border: 1px solid rgba(0, 90, 127, 0.09);
    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-testimonials-watch__eyebrow i {
    color: var(--gar-secondary-dark);
    font-size: 15px;
    line-height: 1;
}

.gar-testimonials-watch__title {
    margin: 0 0 17px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-testimonials-watch__title span,
.gar-testimonials-watch__title strong,
.gar-testimonials-watch__title b,
.gar-testimonials-watch__title em {
    color: var(--gar-secondary-dark);
}

.gar-testimonials-watch__lead {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--gar-text-soft);
    font-family: var(--gar-font-body);
    font-size: 16px;
    line-height: 27px;
}


/* ============================================================================
   04. LAYOUT PRINCIPAL
   ============================================================================ */

.gar-testimonials-watch__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    align-items: stretch;
    gap: 26px;
}


/* ============================================================================
   05. PANTALLA / VIDEO PRINCIPAL
   ============================================================================ */

.gar-testimonials-watch__screen {
    min-width: 0;
}

.gar-testimonials-watch__screen-inner {
    position: relative;
    padding: 8px;
    border-radius: 36px;
    background: #ffffff;
    border: 0;
}

.gar-testimonials-watch__media {
    position: relative;
    z-index: 2;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(135deg, var(--gar-primary-deep), var(--gar-primary));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gar-testimonials-watch__video-frame,
.gar-testimonials-watch__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 30px;
}

.gar-testimonials-watch__video-frame {
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gar-testimonials-watch__iframe {
    z-index: 8;
}

.gar-testimonials-watch__video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 127, 0.22) 0%,
            rgba(0, 90, 127, 0.10) 35%,
            rgba(0, 50, 71, 0.62) 74%,
            rgba(0, 50, 71, 0.96) 100%
        );
    pointer-events: none;
    opacity: 1;
    transition: opacity 260ms ease;
}

.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__video-frame::before {
    opacity: 0;
}


/* ============================================================================
   06. BADGE, PLAY Y CAPTION DEL VIDEO PRINCIPAL
   ============================================================================ */

.gar-testimonials-watch__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 127, 0.08) 0%,
            rgba(0, 50, 71, 0.18) 48%,
            rgba(0, 50, 71, 0.74) 100%
        );
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 260ms ease,
        visibility 260ms ease;
}

.gar-testimonials-watch__screen-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 0, 0, 0.44);
    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;
    backdrop-filter: blur(10px);
    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 260ms ease;
}

.gar-testimonials-watch__screen-badge i {
    font-size: 13px;
    line-height: 1;
}

.gar-testimonials-watch__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 94px;
    height: 94px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transform: translate(-50%, -50%);
    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 260ms ease;
}

.gar-testimonials-watch__play:hover {
    text-decoration: none;
}

.gar-testimonials-watch__play::before,
.gar-testimonials-watch__play::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.34);
    pointer-events: none;
    animation: garTestimonialsPlayPulse 2300ms infinite;
}

.gar-testimonials-watch__play::after {
    animation-delay: 1150ms;
}

@keyframes garTestimonialsPlayPulse {
    0% {
        opacity: 0.85;
        transform: scale(0.85);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

.gar-testimonials-watch__play-circle {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.24),
        0 0 0 6px rgba(255, 255, 255, 0.22);
    transition:
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-testimonials-watch__play:hover .gar-testimonials-watch__play-circle {
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.32),
        0 0 0 8px rgba(255, 255, 255, 0.28);
    transform: scale(1.08);
}

.gar-testimonials-watch__play-circle i {
    margin-left: 4px;
    font-size: 35px;
    line-height: 1;
}

.gar-testimonials-watch__screen-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    pointer-events: none;
    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 260ms ease;
}

.gar-testimonials-watch__screen-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    padding: 6px 12px;
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 0, 0, 0.42);
    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;
    backdrop-filter: blur(10px);
}

.gar-testimonials-watch__screen-title {
    max-width: 660px;
    margin: 0 0 9px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 26px;
    font-weight: 800;
    line-height: 32px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.gar-testimonials-watch__screen-text {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 23px;
}

/* Al reproducir: ocultar UI propia y liberar controles reales de YouTube */
.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__overlay,
.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__screen-badge,
.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__play,
.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__screen-caption {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__screen-badge {
    transform: translateY(-8px);
}

.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__play {
    transform: translate(-50%, -50%) scale(0.86);
}

.gar-testimonials-watch__media.is-playing .gar-testimonials-watch__screen-caption {
    transform: translateY(12px);
}


/* ============================================================================
   07. PLAYLIST
   ============================================================================ */

.gar-testimonials-watch__playlist {
    min-width: 0;
    padding: 17px;
    border: 1px solid rgba(216, 184, 109, 0.24);
    border-radius: 34px;
    background: #ffffff;
}

.gar-testimonials-watch__playlist-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 11px;
    padding: 6px 6px 16px;
    border-bottom: 1px solid rgba(0, 90, 127, 0.10);
}

.gar-testimonials-watch__playlist-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-testimonials-watch__playlist-head h3 {
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 22px;
    font-weight: 800;
    line-height: 25px;
}

.gar-testimonials-watch__playlist-head strong {
    padding: 6px 10px;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 90, 127, 0.08);
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}


/* ============================================================================
   08. LISTA DE TESTIMONIOS
   ============================================================================ */

.gar-testimonials-watch__list {
    max-height: 468px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    overflow-y: auto;
    padding-right: 4px;
}

.gar-testimonials-watch__list::-webkit-scrollbar {
    width: 6px;
}

.gar-testimonials-watch__list::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(0, 90, 127, 0.07);
}

.gar-testimonials-watch__list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(216, 184, 109, 0.68);
}


/* ============================================================================
   09. ITEM DE PLAYLIST
   ============================================================================ */

.gar-testimonials-watch__item {
    position: relative;
    width: 100%;
    min-height: 102px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    overflow: hidden;
    padding: 11px;
    border: 1px solid #d8dedf;
    border-radius: 22px;
    background: var(--gar-white);
    cursor: pointer;
    text-align: left;
    transition:
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

.gar-testimonials-watch__item::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--gar-transition-smooth);
}

.gar-testimonials-watch__item:hover {
    border-color: rgba(216, 184, 109, 0.42);
    background:
        linear-gradient(135deg, #ffffff 0%, var(--gar-secondary-soft) 100%);
    box-shadow: 0 18px 42px rgba(0, 90, 127, 0.10);
    transform: translateX(-4px);
}

.gar-testimonials-watch__item:hover::before {
    opacity: 1;
}

.gar-testimonials-watch__item.is-active {
    border-color: rgba(0, 90, 127, 0.16);
    background: var(--gar-primary-soft);
}


/* ============================================================================
   10. MINIATURA DEL ITEM
   ============================================================================ */

.gar-testimonials-watch__thumb {
    position: relative;
    z-index: 2;
    width: 96px;
    height: 74px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 22px rgba(0, 90, 127, 0.12);
}

.gar-testimonials-watch__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 90, 127, 0.26);
}

.gar-testimonials-watch__thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
}

.gar-testimonials-watch__thumb-play i {
    margin-left: 2px;
    font-size: 18px;
    line-height: 1;
}


/* ============================================================================
   11. CONTENIDO DEL ITEM
   ============================================================================ */

.gar-testimonials-watch__item-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding-right: 4px;
}

.gar-testimonials-watch__item-content small {
    display: block;
    margin-bottom: 4px;
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-testimonials-watch__item-content strong {
    display: block;
    margin-bottom: 3px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 16px;
    font-weight: 800;
    line-height: 19px;
}

.gar-testimonials-watch__item-content em {
    display: block;
    color: rgba(20, 43, 54, 0.66);
    font-family: var(--gar-font-body);
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
}


/* ============================================================================
   12. RESPONSIVE TESTIMONIOS
   ============================================================================ */

@media (max-width: 1199px) {
    .gar-testimonials-watch__layout {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    }

    .gar-testimonials-watch__media {
        min-height: 480px;
    }

    .gar-testimonials-watch__list {
        max-height: 428px;
    }

    .gar-testimonials-watch__title {
        font-size: 46px;
        line-height: 51px;
    }
}

@media (max-width: 991px) {
    .gar-testimonials-watch {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-testimonials-watch__header {
        margin-bottom: 45px;
    }

    .gar-testimonials-watch__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-testimonials-watch__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gar-testimonials-watch__media {
        min-height: 420px;
    }

    .gar-testimonials-watch__playlist {
        border-radius: 28px;
    }

    .gar-testimonials-watch__list {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .gar-testimonials-watch__item {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .gar-testimonials-watch__thumb {
        width: 86px;
        height: 68px;
    }
}

@media (max-width: 767px) {
    .gar-testimonials-watch {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-testimonials-watch__header {
        margin-bottom: 38px;
        text-align: left;
    }

    .gar-testimonials-watch__eyebrow {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-testimonials-watch__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-testimonials-watch__lead {
        margin-left: 0;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-testimonials-watch__screen-inner {
        padding: 7px;
        border-radius: 26px;
    }

    .gar-testimonials-watch__screen-inner::before {
        inset: 22px -9px -9px 22px;
        border-radius: 26px;
    }

    .gar-testimonials-watch__media {
        min-height: 330px;
        border-radius: 22px;
    }

    .gar-testimonials-watch__video-frame,
    .gar-testimonials-watch__iframe {
        border-radius: 22px;
    }

    .gar-testimonials-watch__screen-badge {
        top: 14px;
        left: 14px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .gar-testimonials-watch__play {
        width: 78px;
        height: 78px;
    }

    .gar-testimonials-watch__play-circle {
        width: 66px;
        height: 66px;
    }

    .gar-testimonials-watch__play-circle i {
        font-size: 31px;
    }

    .gar-testimonials-watch__screen-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .gar-testimonials-watch__screen-number {
        font-size: 10px;
    }

    .gar-testimonials-watch__screen-title {
        font-size: 20px;
        line-height: 25px;
    }

    .gar-testimonials-watch__screen-text {
        font-size: 13px;
        line-height: 19px;
    }

    .gar-testimonials-watch__playlist {
        padding: 14px;
        border-radius: 24px;
    }

    .gar-testimonials-watch__playlist-head {
        align-items: center;
    }

    .gar-testimonials-watch__playlist-head h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .gar-testimonials-watch__list {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 3px 7px;
        scroll-snap-type: x mandatory;
    }

    .gar-testimonials-watch__list::-webkit-scrollbar {
        height: 5px;
    }

    .gar-testimonials-watch__item {
        min-height: 96px;
        flex: 0 0 230px;
        grid-template-columns: 78px minmax(0, 1fr);
        padding: 10px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .gar-testimonials-watch__item:hover {
        transform: translateY(-2px);
    }

    .gar-testimonials-watch__thumb {
        width: 78px;
        height: 64px;
        border-radius: 14px;
    }

    .gar-testimonials-watch__thumb-play {
        width: 30px;
        height: 30px;
    }

    .gar-testimonials-watch__thumb-play i {
        font-size: 16px;
    }

    .gar-testimonials-watch__item-content small {
        font-size: 9px;
    }

    .gar-testimonials-watch__item-content strong {
        font-size: 14px;
        line-height: 17px;
    }

    .gar-testimonials-watch__item-content em {
        font-size: 11px;
        line-height: 15px;
    }
}

@media (max-width: 575px) {
    .gar-testimonials-watch {
        padding: var(--gar-section-padding-small);
    }

    .gar-testimonials-watch__title {
        font-size: 32px;
        line-height: 38px;
    }

    .gar-testimonials-watch__lead {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-testimonials-watch__media {
        min-height: 285px;
    }

    .gar-testimonials-watch__screen-text {
        display: none;
    }

    .gar-testimonials-watch__playlist-head strong {
        display: none;
    }

    .gar-testimonials-watch__playlist {
        padding: 13px;
    }

    .gar-testimonials-watch__screen-title {
        font-size: 18px;
        line-height: 23px;
    }

    .gar-testimonials-watch__screen-number {
        font-size: 9px;
    }

    .gar-testimonials-watch__item {
        flex-basis: 220px;
    }
}

/* FIN TESTIMONIOS HOME — Playlist tipo YouTube fondo claro premium */

/* ============================================================================
   LOS MÁS RÁPIDOS — Collage premium tipo problemas-home
   ----------------------------------------------------------------------------
   Objetivo de esta sección:
   - Comunicar rapidez, orden y acompañamiento legal.
   - Reforzar diferenciador comercial sin perder seriedad jurídica.
   - Mantener collage visual tipo sección de problemas.
   - Mantener contenido dinámico del administrador.
   - Convertir listas internas en cards premium.
   - Usar la nueva paleta:
     Principal: #005a7f
     Secundario: #d8b86d
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - Responsive organizado al final de la sección.
   ============================================================================ */


/* ============================================================================
   01. CONTENEDOR GENERAL
   ============================================================================ */

.gar-fast-track {
    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, #f7f8f6 0%, var(--gar-cream) 100%);
    color: var(--gar-text);
    font-family: var(--gar-font-body);
}

.gar-fast-track i {
    color: var(--gar-secondary);
}

.gar-fast-track .container {
    position: relative;
    z-index: 3;
}


/* ============================================================================
   02. DECORACIONES DE FONDO
   ============================================================================ */

.gar-fast-track__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-fast-track__shape {
    position: absolute;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(0, 90, 127, 0.13);
    box-shadow: 0 20px 50px rgba(0, 90, 127, 0.06);
    transform: rotate(-8deg);
}

.gar-fast-track__shape i {
    font-size: 32px;
    line-height: 1;
}

.gar-fast-track__shape--one {
    top: 10%;
    left: 7%;
}

.gar-fast-track__shape--two {
    right: 7%;
    bottom: 12%;
    color: rgba(216, 184, 109, 0.17);
    transform: rotate(12deg);
}

.gar-fast-track__shape--three {
    top: 17%;
    right: 18%;
    width: 58px;
    height: 58px;
    color: rgba(216, 184, 109, 0.16);
    transform: rotate(-14deg);
}

.gar-fast-track__shape--four {
    left: 42%;
    bottom: 9%;
    width: 88px;
    height: 88px;
    color: rgba(0, 90, 127, 0.10);
    transform: rotate(10deg);
}

.gar-fast-track__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.46;
    pointer-events: none;
}

.gar-fast-track__glow--one {
    top: -220px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.16), transparent 70%);
}

.gar-fast-track__glow--two {
    left: -220px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.12), transparent 70%);
}


/* ============================================================================
   03. GRID PRINCIPAL
   ============================================================================ */

.gar-fast-track__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 72px;
    align-items: center;
}

.gar-fast-track__media,
.gar-fast-track__content {
    position: relative;
    z-index: 2;
}


/* ============================================================================
   04. COLLAGE VISUAL
   ============================================================================ */

.gar-fast-track__collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    grid-template-rows: 255px 255px;
    gap: 20px;
    min-height: 540px;
}

.gar-fast-track__frame {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: 1;
    width: 74%;
    height: calc(100% - 16px);
    border: 2px solid rgba(0, 90, 127, 0.46);
    border-radius: 78px 0 78px 78px;
}

.gar-fast-track__photo,
.gar-fast-track__visual-card {
    position: relative;
    z-index: 2;
}

.gar-fast-track__photo {
    margin: 0;
    overflow: hidden;
    background: var(--gar-white);
    box-shadow: 0 22px 58px rgba(0, 90, 127, 0.13);
    border-radius: 0 72px 72px 0;
}

.gar-fast-track__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform var(--gar-transition-smooth),
        filter var(--gar-transition-smooth);
}

.gar-fast-track__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 127, 0.02),
            rgba(0, 90, 127, 0.18)
        );
    opacity: 0.72;
    pointer-events: none;
}

.gar-fast-track__photo--vertical {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 72px 0 72px 72px;
}

.gar-fast-track__photo--vertical img {
    object-position: center;
}

.gar-fast-track__photo--top {
    grid-column: 2;
    grid-row: 1;
    border-radius: 0 72px 0 72px;
}

/* Card visual del collage */
.gar-fast-track__visual-card {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
    border-radius: 0 72px 72px 0;
    background:
        linear-gradient(145deg, var(--gar-primary-light), var(--gar-primary));
    color: var(--gar-white);
    box-shadow: 0 22px 58px rgba(0, 90, 127, 0.17);
}

.gar-fast-track__visual-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.gar-fast-track__visual-card::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
}

.gar-fast-track__visual-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 50%;
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.gar-fast-track__visual-icon i {
    font-size: 23px;
    line-height: 1;
}

.gar-fast-track__visual-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 9px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
}

.gar-fast-track__visual-card p {
    position: relative;
    z-index: 2;
    max-width: 230px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 23px;
}

/* Sello central */
.gar-fast-track__seal {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gar-cream);
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--gar-primary-light) 0%, var(--gar-primary-deep) 72%);
    box-shadow: 0 16px 36px rgba(0, 90, 127, 0.24);
    transform: translate(-50%, -50%);
}

.gar-fast-track__seal::before {
    content: 'RÁPIDO';
    position: absolute;
    inset: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--gar-font-display);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}

.gar-fast-track__seal span {
    padding-top: 12px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.gar-fast-track__collage:hover .gar-fast-track__photo img {
    filter: saturate(1.05);
    transform: scale(1.04);
}


/* ============================================================================
   05. BADGE DE APOYO BAJO COLLAGE
   ============================================================================ */

.gar-fast-track__media-actions {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 620px;
    margin-top: 38px;
}

.gar-fast-track__expert-badge {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 23px 25px;
    overflow: hidden;
    border: 1px solid rgba(232, 221, 200, 0.95);
    border-radius: var(--gar-radius-lg);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 48px rgba(0, 90, 127, 0.08);
    backdrop-filter: blur(10px);
}

.gar-fast-track__expert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 130px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
}

.gar-fast-track__expert-badge::after {
    content: '';
    position: absolute;
    right: -48px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.10);
    pointer-events: none;
}

.gar-fast-track__expert-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.36);
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.20);
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(0, 90, 127, 0.08);
}

.gar-fast-track__expert-icon i {
    font-size: 27px;
    line-height: 1;
}

.gar-fast-track__expert-content {
    position: relative;
    z-index: 2;
}

.gar-fast-track__expert-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gar-fast-track__expert-content strong {
    display: block;
    max-width: 430px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
}

.gar-fast-track__expert-content p {
    margin: 8px 0 0;
    color: var(--gar-text-soft);
    font-size: 13px;
    line-height: 19px;
}


/* ============================================================================
   06. CONTENIDO TEXTUAL
   ============================================================================ */

.gar-fast-track__content {
    max-width: 720px;
}

.gar-fast-track__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    padding: 8px 19px;
    border: 1px solid rgba(216, 184, 109, 0.42);
    border-radius: 999px;
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gar-fast-track__eyebrow-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.14);
}

.gar-fast-track__title {
    position: relative;
    max-width: 710px;
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-fast-track__title span,
.gar-fast-track__title em,
.gar-fast-track__title i,
.gar-fast-track__title strong,
.gar-fast-track__title b {
    color: var(--gar-secondary-dark);
}

.gar-fast-track__title em,
.gar-fast-track__title i {
    font-style: italic;
}

.gar-fast-track__lead {
    max-width: 650px;
    margin: 19px 0 0;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 28px;
}


/* ============================================================================
   07. CONTENIDO DINÁMICO DEL ADMINISTRADOR
   ============================================================================ */

.gar-fast-track__dynamic,
.gar-fast-track-home__text,
.gar-fast-track-home__content {
    max-width: 760px;
    margin-top: 16px;
}

.gar-fast-track__dynamic p,
.gar-fast-track-home__text p,
.gar-fast-track-home__content p {
    margin: 0 0 16px;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 27px;
}

.gar-fast-track__dynamic b,
.gar-fast-track__dynamic strong,
.gar-fast-track-home__text b,
.gar-fast-track-home__text strong,
.gar-fast-track-home__content b,
.gar-fast-track-home__content strong {
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-weight: 700;
}


/* ============================================================================
   08. LISTA DE PUNTOS CLAVE
   ============================================================================ */

.gar-fast-track__dynamic ul,
.gar-fast-track-home__text ul,
.gar-fast-track-home__content ul {
    max-width: 620px;
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 23px 0 0;
    padding: 0;
}

.gar-fast-track__dynamic li,
.gar-fast-track-home__text li,
.gar-fast-track-home__content li {
    position: relative;
    min-height: 58px;
    padding: 15px 18px 15px 66px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 18px;
    background: var(--gar-white);
    color: rgba(20, 43, 54, 0.72);
    font-family: var(--gar-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    box-shadow: 0 14px 34px rgba(0, 90, 127, 0.065);
    transition:
        transform var(--gar-transition-fast),
        border-color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        background var(--gar-transition-fast);
}

.gar-fast-track__dynamic li::before,
.gar-fast-track-home__text li::before,
.gar-fast-track-home__content li::before {
    content: "\F26E";
    position: absolute;
    top: 15px;
    left: 16px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    font-family: "bootstrap-icons";
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(216, 184, 109, 0.24);
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-fast-track__dynamic li:hover,
.gar-fast-track-home__text li:hover,
.gar-fast-track-home__content li:hover {
    border-color: rgba(216, 184, 109, 0.38);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 90, 127, 0.09);
    transform: translateY(-2px);
}

.gar-fast-track__dynamic li:hover::before,
.gar-fast-track-home__text li:hover::before,
.gar-fast-track-home__content li:hover::before {
    background: var(--gar-primary);
    color: var(--gar-secondary);
    transform: rotate(-6deg) scale(1.05);
}

.gar-fast-track__dynamic li strong,
.gar-fast-track-home__text li strong,
.gar-fast-track-home__content li strong {
    display: inline;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 700;
}


/* ============================================================================
   09. BOTONES DE LA SECCIÓN
   ============================================================================ */

.gar-fast-track__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 33px;
}

.gar-fast-track__btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border: 1px solid var(--gar-whatsapp);
    border-radius: var(--gar-radius-pill);
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: var(--gar-shadow-cta);
    transition:
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        background var(--gar-transition-fast),
        border-color var(--gar-transition-fast),
        color var(--gar-transition-fast);
}

.gar-fast-track__btn i {
    font-size: 17px;
    line-height: 1;
}

.gar-fast-track__btn:hover {
    background: var(--gar-whatsapp-dark);
    border-color: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    box-shadow: 0 12px 34px rgba(0, 90, 127, 0.34);
    text-decoration: none;
    transform: translateY(-2px);
}

.gar-fast-track__btn--secondary {
    border-color: rgba(0, 90, 127, 0.28);
    background: transparent;
    color: var(--gar-primary);
    box-shadow: none;
}

.gar-fast-track__btn--secondary:hover {
    border-color: var(--gar-primary);
    background: var(--gar-primary);
    color: var(--gar-white);
    box-shadow: var(--gar-shadow-medium);
}


/* ============================================================================
   10. RESPONSIVE LOS MÁS RÁPIDOS
   ============================================================================ */


/* ---------------------------------------------------------------------------
   Laptop pequeña
   --------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .gar-fast-track__grid {
        gap: 54px;
    }

    .gar-fast-track__collage {
        grid-template-rows: 235px 235px;
        min-height: 500px;
    }

    .gar-fast-track__visual-card {
        padding: 26px;
    }

    .gar-fast-track__title {
        font-size: 46px;
        line-height: 51px;
    }
}


/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .gar-fast-track {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-fast-track__grid {
        display: flex;
        flex-direction: column;
        gap: 52px;
    }

    .gar-fast-track__media {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .gar-fast-track__content {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .gar-fast-track__title {
        max-width: 680px;
        font-size: 42px;
        line-height: 47px;
    }

    .gar-fast-track__lead {
        font-size: 16px;
        line-height: 27px;
    }

    .gar-fast-track__shape--four {
        left: auto;
        right: 10%;
        bottom: 4%;
    }
}


/* ---------------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gar-fast-track {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-fast-track__grid {
        gap: 38px;
    }

    .gar-fast-track__content {
        text-align: left;
    }

    .gar-fast-track__eyebrow {
        gap: 9px;
        margin-bottom: 17px;
        padding: 7px 15px;
        font-size: 11px;
    }

    .gar-fast-track__title {
        font-size: 38px;
        line-height: 43px;
    }

    .gar-fast-track__lead {
        margin-top: 16px;
        font-size: 15px;
        line-height: 25px;
    }

    .gar-fast-track__dynamic,
    .gar-fast-track-home__text,
    .gar-fast-track-home__content {
        margin-top: 25px;
    }

    .gar-fast-track__dynamic p,
    .gar-fast-track-home__text p,
    .gar-fast-track-home__content p {
        font-size: 15px;
        line-height: 25px;
    }

    .gar-fast-track__dynamic ul,
    .gar-fast-track-home__text ul,
    .gar-fast-track-home__content ul {
        gap: 12px;
        margin-top: 20px;
    }

    .gar-fast-track__dynamic li,
    .gar-fast-track-home__text li,
    .gar-fast-track-home__content li {
        min-height: auto;
        padding: 14px 15px 14px 62px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 20px;
    }

    .gar-fast-track__dynamic li::before,
    .gar-fast-track-home__text li::before,
    .gar-fast-track-home__content li::before {
        top: 14px;
        left: 14px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .gar-fast-track__dynamic li strong,
    .gar-fast-track-home__text li strong,
    .gar-fast-track-home__content li strong {
        font-size: 14px;
    }

    /* Collage móvil compacto */
    .gar-fast-track__collage {
        width: 100%;
        max-width: 540px;
        min-height: 352px;
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        grid-template-rows: 155px 185px;
        gap: 13px;
        margin: 0 auto;
    }

    .gar-fast-track__frame {
        top: -9px;
        left: -9px;
        width: 74%;
        height: calc(100% - 6px);
        border-width: 1px;
        border-radius: 44px 0 44px 44px;
    }

    .gar-fast-track__photo--vertical {
        grid-column: 1;
        grid-row: 1 / 3;
        border-radius: 42px 0 42px 42px;
    }

    .gar-fast-track__photo--top {
        grid-column: 2;
        grid-row: 1;
        border-radius: 0 42px 0 42px;
    }

    .gar-fast-track__visual-card {
        grid-column: 2;
        grid-row: 2;
        padding: 16px 15px;
        border-radius: 0 42px 42px 0;
    }

    .gar-fast-track__visual-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 13px;
    }

    .gar-fast-track__visual-icon i {
        font-size: 17px;
    }

    .gar-fast-track__visual-card strong {
        margin-bottom: 7px;
        font-size: 18px;
        line-height: 20px;
    }

    .gar-fast-track__visual-card p {
        font-size: 12px;
        line-height: 17px;
    }

    .gar-fast-track__seal {
        top: 47%;
        left: 52%;
        width: 70px;
        height: 70px;
    }

    .gar-fast-track__seal::before {
        inset: 7px;
        padding-top: 11px;
        font-size: 5px;
    }

    .gar-fast-track__seal span {
        padding-top: 10px;
        font-size: 18px;
    }

    .gar-fast-track__media-actions {
        display: none;
    }

    .gar-fast-track__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gar-fast-track__btn {
        width: 100%;
    }

    .gar-fast-track__shape {
        opacity: 0.5;
    }
}


/* ---------------------------------------------------------------------------
   Mobile pequeño
   --------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .gar-fast-track {
        padding: var(--gar-section-padding-small);
    }

    .gar-fast-track__shape {
        display: none;
    }

    .gar-fast-track__grid {
        gap: 34px;
    }

    .gar-fast-track__eyebrow {
        padding: 7px 14px;
        font-size: 10px;
        line-height: 14px;
    }

    .gar-fast-track__eyebrow-dot {
        width: 8px;
        height: 8px;
    }

    .gar-fast-track__title {
        font-size: 34px;
        line-height: 40px;
    }

    .gar-fast-track__lead {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-fast-track__dynamic li,
    .gar-fast-track-home__text li,
    .gar-fast-track-home__content li {
        padding: 14px 14px 14px 58px;
        font-size: 13px;
        line-height: 19px;
    }

    .gar-fast-track__dynamic li::before,
    .gar-fast-track-home__text li::before,
    .gar-fast-track-home__content li::before {
        top: 14px;
        left: 13px;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .gar-fast-track__dynamic li:hover,
    .gar-fast-track-home__text li:hover,
    .gar-fast-track-home__content li:hover {
        transform: translateY(-2px);
    }

    /* Collage móvil pequeño */
    .gar-fast-track__collage {
        grid-template-columns: 1.05fr 0.95fr;
        grid-template-rows: 132px 162px;
        gap: 10px;
        min-height: 307px;
    }

    .gar-fast-track__frame {
        top: -7px;
        left: -7px;
        border-radius: 34px 0 34px 34px;
    }

    .gar-fast-track__photo--vertical {
        border-radius: 34px 0 34px 34px;
    }

    .gar-fast-track__photo--top {
        border-radius: 0 34px 0 34px;
    }

    .gar-fast-track__visual-card {
        padding: 14px;
        border-radius: 0 34px 34px 0;
    }

    .gar-fast-track__visual-card::before {
        top: -58px;
        right: -58px;
        width: 130px;
        height: 130px;
    }

    .gar-fast-track__visual-card::after {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    .gar-fast-track__visual-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .gar-fast-track__visual-icon i {
        font-size: 15px;
    }

    .gar-fast-track__visual-card strong {
        font-size: 15px;
        line-height: 17px;
    }

    .gar-fast-track__visual-card p {
        font-size: 11px;
        line-height: 15px;
    }

    .gar-fast-track__seal {
        top: 47%;
        left: 52%;
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .gar-fast-track__seal::before {
        inset: 6px;
        padding-top: 9px;
        font-size: 4px;
    }

    .gar-fast-track__seal span {
        padding-top: 8px;
        font-size: 16px;
    }

    .gar-fast-track__btn {
        min-height: 50px;
        font-size: 14px;
    }
}

/* FIN LOS MÁS RÁPIDOS — Collage premium tipo problemas-home */

/* ============================================================================
   CTA BANNER — "Quieres salir de estas situaciones"
   Banda horizontal con imagen de fondo + checks + doble CTA
   ----------------------------------------------------------------------------
   Ajustes aplicados:
   - Se conservan las clases originales del bloque.
   - Color principal: #005a7f
   - Color secundario: #d8b86d
   - Sin rem.
   - Sin clamp().
   - Todo en px.
   - Responsive organizado al final.
   ============================================================================ */

.gar-cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    font-family: var(--gar-font-body);
    isolation: isolate;
}

.gar-cta-banner .container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}

/* ============================================================================
   FONDO — Imagen + overlay
   ============================================================================ */

.gar-cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.gar-cta-banner__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(0.12) brightness(0.84);
    transform: scale(1.05);
    transition: transform 1200ms ease;
}

.gar-cta-banner:hover .gar-cta-banner__bg-image {
    transform: scale(1.08);
}

.gar-cta-banner__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 50, 71, 0.95) 0%,
            rgba(0, 90, 127, 0.90) 50%,
            rgba(0, 50, 71, 0.96) 100%
        );
}

.gar-cta-banner__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 2px),
        radial-gradient(circle, rgba(216, 184, 109, 0.08) 1px, transparent 2px);
    background-size: 26px 26px, 26px 26px;
    background-position: 0 0, 13px 13px;
    opacity: 0.50;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

/* ============================================================================
   DECORACIONES — Glows + shapes + partículas
   ============================================================================ */

.gar-cta-banner__decor {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gar-cta-banner__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.55;
    animation: garCtaBannerGlowFloat 9000ms ease-in-out infinite;
}

.gar-cta-banner__glow--one {
    top: -180px;
    left: -150px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.28), transparent 70%);
}

.gar-cta-banner__glow--two {
    right: -200px;
    bottom: -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(27, 113, 152, 0.58), transparent 70%);
    animation-delay: 4500ms;
}

@keyframes garCtaBannerGlowFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -15px) scale(1.05);
    }
}

.gar-cta-banner__shape {
    position: absolute;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 109, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(216, 184, 109, 0.32);
    backdrop-filter: blur(8px);
    transform: rotate(-10deg);
    animation: garCtaBannerShapeFloat 6000ms ease-in-out infinite;
}

.gar-cta-banner__shape i {
    font-size: 34px;
    line-height: 1;
}

.gar-cta-banner__shape--one {
    top: 14%;
    left: 4%;
    transform: rotate(-12deg);
}

.gar-cta-banner__shape--two {
    right: 42%;
    bottom: 12%;
    width: 64px;
    height: 64px;
    transform: rotate(15deg);
    animation-delay: 2500ms;
}

.gar-cta-banner__shape--two i {
    font-size: 26px;
}

@keyframes garCtaBannerShapeFloat {
    0%,
    100% {
        transform: rotate(-10deg) translateY(0);
    }

    50% {
        transform: rotate(-6deg) translateY(-10px);
    }
}

.gar-cta-banner__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 12px rgba(216, 184, 109, 0.70);
    opacity: 0;
    animation: garCtaBannerParticleFloat 9000ms ease-in-out infinite;
}

.gar-cta-banner__particle--1 {
    top: 25%;
    left: 18%;
    animation-delay: 0ms;
    animation-duration: 10000ms;
}

.gar-cta-banner__particle--2 {
    top: 60%;
    left: 32%;
    width: 3px;
    height: 3px;
    animation-delay: 1500ms;
    animation-duration: 8000ms;
}

.gar-cta-banner__particle--3 {
    top: 30%;
    left: 55%;
    animation-delay: 3000ms;
    animation-duration: 11000ms;
}

.gar-cta-banner__particle--4 {
    top: 70%;
    left: 12%;
    width: 5px;
    height: 5px;
    animation-delay: 4500ms;
    animation-duration: 9000ms;
}

.gar-cta-banner__particle--5 {
    top: 20%;
    left: 78%;
    animation-delay: 6000ms;
    animation-duration: 10000ms;
}

@keyframes garCtaBannerParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.8;
        transform: translateY(-25px) scale(1);
    }

    80% {
        opacity: 0.8;
        transform: translateY(-90px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-115px) scale(0.5);
    }
}

.gar-cta-banner__watermark {
    position: absolute;
    right: -16px;
    bottom: -32px;
    color: transparent;
    font-family: var(--gar-font-hero);
    font-size: 190px;
    font-weight: 800;
    font-style: italic;
    line-height: 162px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    -webkit-text-stroke: 1px rgba(216, 184, 109, 0.08);
}

/* ============================================================================
   GRID — 2 columnas
   ============================================================================ */

.gar-cta-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
    gap: 56px;
}

/* ============================================================================
   COLUMNA IZQUIERDA — Contenido
   ============================================================================ */

.gar-cta-banner__content {
    color: var(--gar-white);
}

.gar-cta-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 18px;
    border: 1px solid rgba(216, 184, 109, 0.40);
    border-radius: var(--gar-radius-pill);
    background: rgba(216, 184, 109, 0.14);
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.gar-cta-banner__eyebrow-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.16);
    animation: garCtaBannerDotPulse 2000ms ease-in-out infinite;
}

@keyframes garCtaBannerDotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.gar-cta-banner__title {
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-cta-banner__title span,
.gar-cta-banner__title em,
.gar-cta-banner__title b,
.gar-cta-banner__title strong {
    color: var(--gar-secondary);
    font-weight: 800;
}

.gar-cta-banner__title em {
    font-style: italic;
}

/* ============================================================================
   LISTA DINÁMICA — Checks dorados
   ============================================================================ */

.gar-cta-banner__list {
    margin-top: 26px;
}

.gar-cta-banner__list p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 27px;
}

.gar-cta-banner__list ul,
.gar-cta-banner__list #liplus {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gar-cta-banner__list ul li,
.gar-cta-banner__list #liplus li {
    position: relative;
    margin: 0 !important;
    padding: 11px 14px 11px 54px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--gar-font-body);
    font-size: 15px;
    line-height: 24px;
    list-style: none !important;
    backdrop-filter: blur(6px);
    transition:
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth);
}

.gar-cta-banner__list ul li::before,
.gar-cta-banner__list #liplus li::before {
    content: '\F26E';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    font-family: "bootstrap-icons";
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    box-shadow:
        0 10px 22px rgba(216, 184, 109, 0.30),
        0 0 0 5px rgba(216, 184, 109, 0.12);
    transform: translateY(-50%);
    transition:
        transform var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth);
}

.gar-cta-banner__list ul li:hover,
.gar-cta-banner__list #liplus li:hover {
    border-color: rgba(216, 184, 109, 0.34);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
}

.gar-cta-banner__list ul li:hover::before,
.gar-cta-banner__list #liplus li:hover::before {
    box-shadow:
        0 14px 28px rgba(216, 184, 109, 0.38),
        0 0 0 7px rgba(216, 184, 109, 0.18);
    transform: translateY(-50%) rotate(-8deg) scale(1.08);
}

.gar-cta-banner__list b,
.gar-cta-banner__list strong {
    color: var(--gar-white);
    font-weight: 700;
}

/* ============================================================================
   TRUST BAR — 3 garantías
   ============================================================================ */

.gar-cta-banner__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 29px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gar-cta-banner__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--gar-font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
}

.gar-cta-banner__trust-item i {
    color: var(--gar-secondary);
    font-size: 15px;
    line-height: 1;
}

.gar-cta-banner__trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.50);
}

/* ============================================================================
   COLUMNA DERECHA — Card de CTAs
   ============================================================================ */

.gar-cta-banner__actions {
    position: relative;
}

.gar-cta-banner__cta-card {
    position: relative;
    overflow: hidden;
    padding: 32px 30px 30px;
    border-radius: 28px;
}

/* Esquinas doradas decorativas */
.gar-cta-banner__corner {
    position: absolute;
    z-index: 3;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.gar-cta-banner__corner--tl {
    top: 14px;
    left: 14px;
    border-top: 2px solid var(--gar-secondary);
    border-left: 2px solid var(--gar-secondary);
    border-top-left-radius: 4px;
}

.gar-cta-banner__corner--tr {
    top: 14px;
    right: 14px;
    border-top: 2px solid var(--gar-secondary);
    border-right: 2px solid var(--gar-secondary);
    border-top-right-radius: 4px;
}

.gar-cta-banner__corner--bl {
    bottom: 14px;
    left: 14px;
    border-bottom: 2px solid var(--gar-secondary);
    border-left: 2px solid var(--gar-secondary);
    border-bottom-left-radius: 4px;
}

.gar-cta-banner__corner--br {
    right: 14px;
    bottom: 14px;
    border-right: 2px solid var(--gar-secondary);
    border-bottom: 2px solid var(--gar-secondary);
    border-bottom-right-radius: 4px;
}

/* Header card */
.gar-cta-banner__cta-header {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    text-align: center;
}

.gar-cta-banner__cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(216, 184, 109, 0.36);
    border-radius: var(--gar-radius-pill);
    background: rgba(216, 184, 109, 0.18);
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gar-cta-banner__cta-tag i {
    color: var(--gar-secondary);
    font-size: 13px;
    line-height: 1;
}

.gar-cta-banner__cta-title {
    margin: 0 0 10px;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 25px;
    font-weight: 800;
    line-height: 30px;
}

.gar-cta-banner__cta-title em {
    color: var(--gar-secondary);
    font-style: italic;
}

.gar-cta-banner__cta-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--gar-font-body);
    font-size: 14px;
    line-height: 21px;
}

/* ============================================================================
   BOTONES
   ============================================================================ */

.gar-cta-banner__btns {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.gar-cta-banner__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    padding: 14px 16px 14px 14px;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-weight: 700;
    text-decoration: none;
    transition:
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth),
        color var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        border-color var(--gar-transition-smooth);
}

.gar-cta-banner__btn:hover {
    text-decoration: none;
}

.gar-cta-banner__btn-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--gar-transition-smooth);
}

.gar-cta-banner__btn-icon i {
    font-size: 21px;
    line-height: 1;
}

.gar-cta-banner__btn-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    color: inherit;
    font-size: 15px;
    line-height: 17px;
    text-align: left;
}

.gar-cta-banner__btn-text em {
    margin-top: 3px;
    color: inherit;
    font-family: var(--gar-font-body);
    font-size: 11px;
    font-style: italic;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.2px;
    text-transform: lowercase;
    opacity: 0.85;
}

.gar-cta-banner__btn-arrow {
    flex: 0 0 auto;
    font-size: 17px;
    line-height: 1;
    transition: transform var(--gar-transition-smooth);
}

/* Botón principal */
.gar-cta-banner__btn--whatsapp {
    background: var(--gar-whatsapp);
    color: var(--gar-white) !important;
    box-shadow:
        0 18px 38px rgba(0, 90, 127, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.gar-cta-banner__btn--whatsapp .gar-cta-banner__btn-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--gar-white);
}

.gar-cta-banner__btn--whatsapp:hover {
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white) !important;
    box-shadow:
        0 24px 50px rgba(0, 90, 127, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
}

.gar-cta-banner__btn--whatsapp:hover .gar-cta-banner__btn-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.06);
}

.gar-cta-banner__btn--whatsapp:hover .gar-cta-banner__btn-arrow {
    transform: translateX(4px);
}

/* Separador "o" */
.gar-cta-banner__btns-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0;
}

.gar-cta-banner__btns-divider::before,
.gar-cta-banner__btns-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.gar-cta-banner__btns-divider span {
    margin: 0 14px;
    color: rgba(255, 255, 255, 0.50);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Botón secundario */
.gar-cta-banner__btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gar-white) !important;
    backdrop-filter: blur(6px);
}

.gar-cta-banner__btn-icon--ghost {
    border: 1px solid rgba(216, 184, 109, 0.36);
    background: rgb(255 255 255 / 18%);
    color: var(--gar-white);
}

.gar-cta-banner__btn--secondary:hover {
    border-color: var(--gar-white);
    background: var(--gar-white);
    color: var(--gar-primary-deep) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.gar-cta-banner__btn--secondary:hover .gar-cta-banner__btn-icon--ghost {
    border-color: var(--gar-secondary);
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    transform: rotate(-6deg) scale(1.06);
}

.gar-cta-banner__btn--secondary:hover .gar-cta-banner__btn-arrow {
    transform: translate(3px, -3px);
}

/* ============================================================================
   FOOTER DE LA CARD — Rating
   ============================================================================ */

.gar-cta-banner__cta-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.gar-cta-banner__cta-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gar-secondary);
    font-size: 13px;
    line-height: 1;
}

.gar-cta-banner__cta-footer-text {
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--gar-font-body);
    font-size: 12px;
    line-height: 17px;
}

.gar-cta-banner__cta-footer-text strong {
    color: var(--gar-white);
    font-family: var(--gar-font-display);
    font-weight: 700;
}

/* ============================================================================
   RESPONSIVE CTA BANNER
   ============================================================================ */

@media (max-width: 1199px) {
    .gar-cta-banner__grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
        gap: 42px;
    }

    .gar-cta-banner__title {
        font-size: 42px;
        line-height: 48px;
    }

    .gar-cta-banner__watermark {
        font-size: 150px;
        line-height: 130px;
    }
}

@media (max-width: 991px) {
    .gar-cta-banner {
        padding: 72px 0;
    }

    .gar-cta-banner__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gar-cta-banner__content {
        text-align: center;
    }

    .gar-cta-banner__list ul,
    .gar-cta-banner__list #liplus {
        max-width: 540px;
        margin: 0 auto !important;
        text-align: left;
    }

    .gar-cta-banner__trust {
        justify-content: center;
    }

    .gar-cta-banner__cta-card {
        max-width: 540px;
        margin: 0 auto;
    }

    .gar-cta-banner__shape--two {
        right: 6%;
    }
}

@media (max-width: 767px) {
    .gar-cta-banner {
        padding: 64px 0;
    }

    .gar-cta-banner__content {
        text-align: left;
    }

    .gar-cta-banner__shape--one {
        display: none;
    }

    .gar-cta-banner__shape--two {
        right: 4%;
        bottom: 6%;
        opacity: 0.55;
    }

    .gar-cta-banner__watermark {
        display: none;
    }

    .gar-cta-banner__eyebrow {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-cta-banner__title {
        font-size: 36px;
        line-height: 42px;
    }

    .gar-cta-banner__list ul li,
    .gar-cta-banner__list #liplus li {
        padding: 11px 14px 11px 50px !important;
        font-size: 14px;
        line-height: 22px;
    }

    .gar-cta-banner__list ul li::before,
    .gar-cta-banner__list #liplus li::before {
        left: 10px;
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .gar-cta-banner__list ul li:hover,
    .gar-cta-banner__list #liplus li:hover {
        transform: translateX(0);
    }

    .gar-cta-banner__trust {
        justify-content: flex-start;
        gap: 11px;
    }

    .gar-cta-banner__trust-item {
        font-size: 12px;
    }

    .gar-cta-banner__cta-card {
        padding: 26px 22px 22px;
        border-radius: 24px;
    }

    .gar-cta-banner__cta-title {
        font-size: 22px;
        line-height: 28px;
    }

    .gar-cta-banner__btn {
        padding: 12px 14px 12px 12px;
    }

    .gar-cta-banner__btn-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .gar-cta-banner__btn-icon i {
        font-size: 19px;
    }

    .gar-cta-banner__btn-text {
        font-size: 14px;
    }

    .gar-cta-banner__btn-text em {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .gar-cta-banner {
        padding: 56px 0;
    }

    .gar-cta-banner__corner {
        width: 18px;
        height: 18px;
    }

    .gar-cta-banner__corner--tl,
    .gar-cta-banner__corner--tr {
        top: 10px;
    }

    .gar-cta-banner__corner--bl,
    .gar-cta-banner__corner--br {
        bottom: 10px;
    }

    .gar-cta-banner__corner--tl,
    .gar-cta-banner__corner--bl {
        left: 10px;
    }

    .gar-cta-banner__corner--tr,
    .gar-cta-banner__corner--br {
        right: 10px;
    }

    .gar-cta-banner__title {
        font-size: 30px;
        line-height: 36px;
    }

    .gar-cta-banner__trust {
        gap: 8px;
    }

    .gar-cta-banner__trust-divider {
        display: none;
    }

    .gar-cta-banner__trust-item {
        flex-basis: 100%;
        padding: 5px 0;
    }

    .gar-cta-banner__cta-card {
        padding: 24px 18px 20px;
    }

    .gar-cta-banner__cta-title {
        font-size: 20px;
        line-height: 26px;
    }

    .gar-cta-banner__cta-text {
        font-size: 13px;
        line-height: 20px;
    }

    .gar-cta-banner__btns-divider span {
        margin: 0 10px;
        font-size: 10px;
    }

    .gar-cta-banner__cta-footer {
        flex-direction: column;
        gap: 7px;
        text-align: center;
    }

    .gar-cta-banner__cta-footer-text {
        font-size: 12px;
    }
}

/* ============================================================================
   FAQ HOME — Accordion premium centrado con numeración editorial
   ----------------------------------------------------------------------------
   Ajustes aplicados:
   - Se conservan las clases originales .gar-faq-home.
   - Se conserva la lógica con <details open>.
   - Color principal: #005a7f
   - Color secundario: #d8b86d
   - Sin rem.
   - Sin clamp().
   - Todo en px.
   - Responsive organizado al final.
   ============================================================================ */

.gar-faq-home {
    position: relative;
    overflow: hidden;
    padding: var(--gar-section-padding);
    background: #ffffff;
    color: var(--gar-text);
    font-family: var(--gar-font-body);
}

.gar-faq-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 90, 127, 0.045) 1px, transparent 2px),
        radial-gradient(circle, rgba(216, 184, 109, 0.05) 1px, transparent 2px);
    background-size: 24px 24px, 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.50;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.gar-faq-home .container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
}

/* ============================================================================
   DECORACIONES
   ============================================================================ */

.gar-faq-home__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-faq-home__shape {
    position: absolute;
    border-radius: 999px;
}

.gar-faq-home__shape--one {
    top: -160px;
    right: -160px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(0, 90, 127, 0.06);
    background: rgba(0, 90, 127, 0.055);
}

.gar-faq-home__shape--two {
    left: -150px;
    bottom: -170px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(216, 184, 109, 0.12);
    background: rgba(216, 184, 109, 0.10);
}

.gar-faq-home__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.50;
}

.gar-faq-home__glow--one {
    top: 10%;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.16), transparent 70%);
}

.gar-faq-home__glow--two {
    right: -140px;
    bottom: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.10), transparent 70%);
}

.gar-faq-home__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    color: transparent;
    font-family: var(--gar-font-hero);
    font-size: 560px;
    font-weight: 700;
    font-style: italic;
    line-height: 476px;
    pointer-events: none;
    user-select: none;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 1px rgba(216, 184, 109, 0.06);
}

/* ============================================================================
   HEADER
   ============================================================================ */

.gar-faq-home__header {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

.gar-faq-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;
    padding: 8px 18px;
    border: 1px solid rgba(216, 184, 109, 0.40);
    border-radius: 999px;
    background: rgba(216, 184, 109, 0.12);
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-display);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.gar-faq-home__eyebrow i {
    color: var(--gar-secondary);
    font-size: 15px;
    line-height: 1;
}

.gar-faq-home__eyebrow-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gar-secondary);
    box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.16);
    animation: garFaqDotPulse 2000ms ease-in-out infinite;
}

@keyframes garFaqDotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.gar-faq-home__title {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gar-primary-dark);
    font-family: var(--gar-font-hero);
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
}

.gar-faq-home__title em,
.gar-faq-home__title span {
    color: var(--gar-secondary-dark);
    font-style: italic;
    font-weight: 800;
}

.gar-faq-home__description {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--gar-text-soft);
    font-size: 16px;
    line-height: 28px;
}

/* Mini stats inline */
.gar-faq-home__stats {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    padding: 11px 21px;
    border: 1px solid rgba(216, 184, 109, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 10px 24px rgba(0, 90, 127, 0.05);
    backdrop-filter: blur(8px);
}

.gar-faq-home__stats-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--gar-font-body);
}

.gar-faq-home__stats-item strong {
    color: var(--gar-secondary-dark);
    font-family: var(--gar-font-hero);
    font-size: 17px;
    font-weight: 800;
}

.gar-faq-home__stats-item em {
    color: var(--gar-text-soft);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.gar-faq-home__stats-bullet {
    color: rgba(216, 184, 109, 0.55);
    font-weight: 800;
}

/* ============================================================================
   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;
}


/* ============================================================================
   RESPONSIVE FAQ HOME
   ============================================================================ */

@media (max-width: 991px) {

    .gar-faq-home {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-faq-home__header {
        margin-bottom: 42px;
    }

    .gar-faq-home__title {
        font-size: 42px;
        line-height: 47px;
    }

    .gar-faq-home__cta {
        grid-template-columns: 1fr;
        gap: 19px;
        padding: 30px 26px;
        text-align: center;
    }

    .gar-faq-home__cta-icon {
        margin: 0 auto;
    }

    .gar-faq-home__cta-text {
        margin: 0 auto;
    }

    .gar-faq-home__cta-btn {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {

    .gar-faq-home {
        padding: 64px 0;
    }

    .gar-faq-home__header {
        margin-bottom: 38px;
        text-align: left;
    }

    .gar-faq-home__eyebrow {
        margin-bottom: 16px;
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gar-faq-home__title {
        font-size: 36px;
        line-height: 42px;
    }

    .gar-faq-home__description {
        font-size: 15px;
        line-height: 25px;
    }

    .gar-faq-home__stats {
        margin-top: 22px;
        padding: 9px 16px;
        gap: 7px;
    }

    .gar-faq__accordion {
        gap: 13px;
    }

    .gar-faq__item {
        border-radius: 22px;
    }

    .gar-faq__item::before {
        left: 18px;
        width: 96px;
    }

    .gar-faq__item:has(.show)::before,
    .gar-faq__item.is-open::before {
        width: calc(100% - 36px);
    }

    .gar-faq__toggle {
        min-height: auto;
        grid-template-columns: 42px minmax(0, 1fr) 38px;
        gap: 13px;
        padding: 22px 18px 20px;
    }

    .gar-faq__question-icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }

    .gar-faq__question-icon i {
        font-size: 18px;
    }

    .gar-faq__question-text {
        font-size: 15px;
        line-height: 23px;
    }

    .gar-faq__question-action {
        width: 38px;
        height: 38px;
    }

    .gar-faq__question-action i {
        font-size: 15px;
    }

    .gar-faq__answer {
        padding: 0 18px 22px;
    }

    .gar-faq__answer-content {
        padding: 18px;
        border-left-width: 3px;
        border-radius: 0 16px 16px 0;
        font-size: 14px;
        line-height: 24px;
    }

    .gar-faq__answer-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .gar-faq__answer-content li {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 575px) {
    
    .gar-faq-home {
        padding: 54px 0;
    }

    .gar-faq-home__title {
        font-size: 31px;
        line-height: 36px;
    }

    .gar-faq-home__stats {
        flex-direction: column;
        gap: 10px;
    }

    .gar-faq-home__stats-bullet {
        display: none;
    }

    .gar-faq-home__stats-item {
        gap: 8px;
    }

    .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;
    }
}