/* ============================================================
   GM Home — Estilos de la página de inicio
   ============================================================ */

/* ── Variables del home ─────────────────────────────────────
   Nota: el home usa rojo como primario y azul marino como
   secundario (invertido vs las páginas de circuito/destino)
   ---------------------------------------------------------- */
:root {
    --h-red:        #FF0000;
    --h-navy:       #1A3C6E;
    --h-text:       #2B2B2B;
    --h-muted:      #555555;
    --h-surface:    #F8F8F8;
    --h-border:     #E5E5E5;
    --h-white:      #FFFFFF;
    --h-radius:     12px;
    --h-radius-lg:  16px;
    --h-radius-xl:  24px;
    --h-radius-full:9999px;
    --h-shadow:     0 4px 24px rgba(0,0,0,0.08);
    --h-shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

/* ── Reset base para el home ────────────────────────────────── */
.gm-home * { box-sizing: border-box; }
.gm-home img { display: block; max-width: 100%; }
.gm-home a { text-decoration: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.gm-hero-home {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gm-hero-home__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.gm-hero-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(43,43,43,0.30) 0%,
        rgba(43,43,43,0.10) 40%,
        rgba(43,43,43,0.60) 100%);
}
.gm-hero-home__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}
.gm-hero-home__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.gm-hero-home__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.95);
    font-weight: 300;
    margin: 0 auto 3rem;
    max-width: 560px;
}
.gm-hero-home__cta-link {
    display: inline-block;
    margin-top: 4rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding-bottom: 6px;
    transition: border-color 0.3s;
}
.gm-hero-home__cta-link:hover { border-color: var(--h-red); color: #fff; }

/* ── Barra de búsqueda (glassmorphism) ──────────────────────── */
/* Wrapper: barra + botón lado a lado */
.gm-search-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* La barra glass ocupa el resto del espacio */
.gm-search-bar {
    flex: 1;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--h-radius-full);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.gm-search-bar__field {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 20px;
    border-right: 1px solid rgba(0,0,0,0.08);
    text-align: left;
    min-width: 0;
}
/* Último campo: sin borde derecho */
.gm-search-bar__field--last { border-right: none; }

.gm-search-bar__icon {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: 20px;
    color: var(--h-red);
    flex-shrink: 0;
}
.gm-search-bar__label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(43,43,43,0.5);
    margin-bottom: 3px;
}

/* Inputs sin bordes — override del theme Hello Elementor */
.gm-search-bar .gm-search-bar__input,
.gm-search-bar .gm-search-bar__select {
    display: block;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--h-text);
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.gm-search-bar .gm-search-bar__input::placeholder { color: rgba(43,43,43,0.4); }
.gm-search-bar .gm-search-bar__input:focus,
.gm-search-bar .gm-search-bar__select:focus { outline: none !important; box-shadow: none !important; }

/* Botón — fuera de la barra, independiente */
.gm-search-bar__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--h-red);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(255,0,0,0.3);
    text-decoration: none;
}
.gm-search-bar__btn:hover { background: var(--h-navy); transform: scale(1.05); }
.gm-search-bar__btn-icon {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 24px;
    color: #fff;
}

@media (max-width: 768px) {
    .gm-search-wrapper { flex-direction: column; gap: 12px; }
    .gm-search-bar { flex-direction: column; border-radius: var(--h-radius-lg); padding: 12px 16px; width: 100%; }
    .gm-search-bar__field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); width: 100%; padding: 12px 0; }
    .gm-search-bar__field--last { border-bottom: none; }
    .gm-search-bar__btn { width: 100%; border-radius: var(--h-radius); height: 50px; }
}

/* ── Secciones genéricas del home ───────────────────────────── */
.gm-home-section {
    padding: 100px 80px;
    max-width: 1280px;
    margin: 0 auto;
}
.gm-home-section--bg { background: var(--h-surface); padding-left: 0; padding-right: 0; max-width: none; }
.gm-home-section--bg .gm-home-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.gm-home-section--dark { background: var(--h-navy); color: #fff; padding-left: 0; padding-right: 0; max-width: none; }
.gm-home-section--dark .gm-home-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }

@media (max-width: 768px) {
    .gm-home-section { padding: 60px 20px; }
    .gm-home-section--bg .gm-home-section__inner,
    .gm-home-section--dark .gm-home-section__inner { padding: 0 20px; }
}

/* ── Section headers ────────────────────────────────────────── */
.gm-home-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 20px; }
.gm-home-header--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.gm-home-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--h-text);
    margin: 0 0 12px;
}
.gm-home-heading--white { color: #fff; }
.gm-home-heading-bar { width: 56px; height: 4px; background: var(--h-red); border-radius: 99px; }
.gm-home-subtext { font-size: 15px; color: var(--h-muted); max-width: 520px; margin: 12px auto 0; line-height: 1.65; }
.gm-home-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--h-navy);
    white-space: nowrap;
    transition: color 0.3s;
}
.gm-home-ver-todos:hover { color: var(--h-red); }
.gm-home-ver-todos-icon {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: 18px;
    transition: transform 0.3s;
}
.gm-home-ver-todos:hover .gm-home-ver-todos-icon { transform: translateX(4px); }

/* ── Destinos Destacados ────────────────────────────────────── */
.gm-destinos-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.gm-destinos-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gm-destino-feat { /* big card */
    display: block;
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.14);
    text-decoration: none;
    transition: transform 0.4s, box-shadow 0.4s;
}
.gm-destino-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 32px 64px rgba(0,0,0,0.18);
}
.gm-destino-feat__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 560px;
}
.gm-destino-card-sm {
    display: block;
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.12);
    min-height: 260px;
    text-decoration: none;
    transition: transform 0.4s, box-shadow 0.4s;
}
.gm-destino-card-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12), 0 28px 56px rgba(0,0,0,0.16);
}
.gm-destino-card-md {
    display: block;
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: transform 0.4s, box-shadow 0.4s;
}
.gm-destino-card-md:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12), 0 28px 56px rgba(0,0,0,0.16);
}

/* Imagen cubre todo el card (position absolute) */
.gm-destino-feat img,
.gm-destino-card-sm img,
.gm-destino-card-md img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 1s ease;
}
.gm-destino-feat:hover img,
.gm-destino-card-sm:hover img,
.gm-destino-card-md:hover img { transform: scale(1.05); }

.gm-destino-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
}
.gm-destino-info {
    position: absolute;
    bottom: 0; left: 0;
    padding: 32px;
    color: #fff;
    width: 100%;
}
.gm-destino-badge {
    display: inline-block;
    background: var(--h-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--h-radius-full);
    margin-bottom: 16px;
}
.gm-destino-name-lg {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}
.gm-destino-name-sm {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.gm-destino-meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.gm-destino-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 20px;
    max-width: 380px;
}
.gm-destino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.gm-destino-tag { display: flex; align-items: center; gap: 6px; }
.gm-destino-tag-icon {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: 16px;
    color: var(--h-red);
}

@media (max-width: 1024px) {
    .gm-destinos-grid-top { grid-template-columns: 1fr; }
    .gm-destino-feat { height: 400px; }
    .gm-destino-feat__right { flex-direction: row; }
    .gm-destinos-grid-bottom { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .gm-destino-feat__right { flex-direction: column; }
    .gm-destinos-grid-bottom { grid-template-columns: 1fr; }
}

/* ── Categorías (Diseñado para tu estilo) ───────────────────── */
.gm-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gm-cat-card {
    background: var(--h-white);
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius-xl);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--h-shadow);
    transition: box-shadow 0.4s, transform 0.4s;
    cursor: pointer;
}
.gm-cat-card:hover { box-shadow: var(--h-shadow-lg); transform: translateY(-4px); }
.gm-cat-card__icon-wrap {
    width: 64px; height: 64px;
    background: var(--h-surface);
    border: 1px solid var(--h-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s;
}
.gm-cat-card:hover .gm-cat-card__icon-wrap { background: var(--h-red); border-color: var(--h-red); }
.gm-cat-card__icon {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: 28px;
    color: var(--h-red);
    transition: color 0.3s;
}
.gm-cat-card:hover .gm-cat-card__icon { color: #fff; }
.gm-cat-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--h-text);
    margin: 0 0 10px;
}
.gm-cat-card__desc { font-size: 13px; color: var(--h-muted); line-height: 1.65; margin: 0; }

@media (max-width: 1024px) { .gm-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gm-cats-grid { grid-template-columns: 1fr; } }

/*  Tours carousel */
.gm-tours-carousel-wrap {
    position: relative;
    padding-bottom: 48px;
}
.gm-tours-swiper { overflow: hidden; }

.gm-tours-swiper .swiper-slide .gm-tour-card,
.gm-tour-card {
    display: block !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid var(--h-border) !important;
    box-shadow: none !important;
    transition: border-color 0.3s, transform 0.3s !important;
    color: inherit !important;
    text-decoration: none !important;
}
.gm-tours-swiper .swiper-slide .gm-tour-card:hover,
.gm-tour-card:hover {
    border-color: #d0d0d0 !important;
    box-shadow: none !important;
    transform: translateY(-4px) !important;
}
.gm-tour-card__img { position: relative; height: 240px; overflow: hidden; }
.gm-tour-card__img img {
    width: 100%; height: 100% !important;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.gm-tour-card:hover .gm-tour-card__img img { transform: scale(1.08); }
.gm-tour-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--h-radius-full);
}
.gm-tour-card__badge--red    { background: var(--h-red); }
.gm-tour-card__badge--navy   { background: var(--h-navy); }
.gm-tour-card__badge--black  { background: #222; }
.gm-tour-card__body { padding: 22px; }
.gm-tour-card__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.gm-tour-card__star {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 16px;
    color: var(--h-red);
}
.gm-tour-card__rating-num { font-size: 12px; font-weight: 700; color: var(--h-text); }
.gm-tour-card__rating-count { font-size: 11px; color: var(--h-muted); margin-left: 4px; }
.gm-tour-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--h-text);
    margin: 0 0 6px;
    transition: color 0.3s;
}
.gm-tour-card:hover .gm-tour-card__title { color: var(--h-red); }
.gm-tour-card__meta { font-size: 12px; color: var(--h-muted); margin: 0 0 20px; }
.gm-tour-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--h-border);
}
.gm-tour-card__price {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--h-navy);
}

.gm-tours-swiper .swiper-button-next,
.gm-tours-swiper .swiper-button-prev {
    width: 44px; height: 44px;
    background: var(--h-white);
    border-radius: 50%;
    box-shadow: var(--h-shadow);
    top: 50%;
    transform: translateY(-50%);
}
.gm-tours-swiper .swiper-button-next::after,
.gm-tours-swiper .swiper-button-prev::after {
    font-size: 16px;
    color: var(--h-text);
    font-weight: 700;
}
.gm-tours-swiper .swiper-button-next:hover,
.gm-tours-swiper .swiper-button-prev:hover { background: var(--h-red); }
.gm-tours-swiper .swiper-button-next:hover::after,
.gm-tours-swiper .swiper-button-prev:hover::after { color: #fff; }
.gm-tours-swiper .swiper-pagination-bullet-active { background: var(--h-red); }

/* Stats */
.gm-stats-section .elementor-counter { text-align: center; }
.gm-stats-section .elementor-counter-number-wrapper {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.gm-stats-section .elementor-counter-number,
.gm-stats-section .elementor-counter-number-suffix,
.gm-stats-section .elementor-counter-number-prefix { color: #fff; }
.gm-stats-section .elementor-counter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: block;
}

/* Testimonios */
.gm-testi-section .elementor-testimonial-wrapper {
    background: var(--h-white);
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius-xl);
    padding: 40px;
    position: relative;
    box-shadow: var(--h-shadow);
    transition: box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
}
.gm-testi-section .elementor-testimonial-wrapper:hover { box-shadow: var(--h-shadow-lg); }
.gm-testi-section .elementor-testimonial-wrapper::before {
    content: 'format_quote';
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    font-size: 80px;
    color: rgba(255,0,0,0.08);
    position: absolute;
    top: 10px; right: 20px;
    line-height: 1;
    pointer-events: none;
}
.gm-testi-section .elementor-testimonial-content {
    font-size: 16px !important;
    font-style: italic !important;
    color: var(--h-text) !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
}
.gm-testi-section .elementor-testimonial-meta {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}
.gm-testi-section .elementor-testimonial-image img {
    width: 48px !important; height: 48px !important;
    border-radius: 50% !important; object-fit: cover !important;
    border: 1px solid var(--h-border) !important;
}
.gm-testi-section .elementor-testimonial-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important; font-weight: 700 !important;
    color: var(--h-text) !important; margin: 0 !important;
}
.gm-testi-section .elementor-testimonial-job {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important; font-weight: 700 !important;
    letter-spacing: 0.15em !important; text-transform: uppercase !important;
    color: var(--h-red) !important; margin: 0 !important;
}

.gm-heading-con-barra .elementor-heading-title {
    padding-bottom: 20px;
    position: relative;
    display: block;
}
.gm-heading-con-barra .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 56px; height: 4px;
    background: var(--h-red);
    border-radius: 99px;
}

.gm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}
.gm-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1;
}
.gm-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

@media (max-width: 768px) { .gm-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.gm-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gm-testi-card {
    background: var(--h-white);
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius-xl);
    padding: 40px;
    position: relative;
    box-shadow: var(--h-shadow);
    transition: box-shadow 0.3s;
}
.gm-testi-card:hover { box-shadow: var(--h-shadow-lg); }
.gm-testi-quote {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    font-size: 72px;
    color: rgba(255,0,0,0.08);
    position: absolute;
    top: 16px; right: 24px;
    line-height: 1;
}
.gm-testi-text {
    font-size: 16px;
    font-style: italic;
    color: var(--h-text);
    line-height: 1.7;
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
}
.gm-testi-author { display: flex; align-items: center; gap: 14px; }
.gm-testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--h-border);
    flex-shrink: 0;
}
.gm-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gm-testi-name { font-size: 13px; font-weight: 700; color: var(--h-text); margin: 0 0 2px; }
.gm-testi-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--h-red);
    margin: 0;
}

@media (max-width: 1024px) { .gm-testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .gm-testi-grid { grid-template-columns: 1fr; } }

.gm-aliados-swiper { overflow: hidden; }
.gm-aliado-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    background: var(--h-white);
    height: 80px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.gm-aliado-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.4s;
    object-fit: contain;
}
.gm-aliado-item:hover { border-color: var(--h-red); box-shadow: var(--h-shadow); }
.gm-aliado-item:hover img { filter: grayscale(0%) opacity(1); }

.gm-aliados-swiper .swiper-button-next,
.gm-aliados-swiper .swiper-button-prev {
    width: 36px; height: 36px;
    background: var(--h-white);
    border-radius: 50%;
    box-shadow: var(--h-shadow);
}
.gm-aliados-swiper .swiper-button-next::after,
.gm-aliados-swiper .swiper-button-prev::after { font-size: 14px; color: var(--h-text); }

.gm-banner-cita {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gm-banner-cita__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.gm-banner-cita__overlay {
    position: absolute; inset: 0;
    background: rgba(26,60,110,0.62);
}
.gm-banner-cita__content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 860px;
}
.gm-banner-cita__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--h-red);
    margin: 0 0 24px;
}
.gm-banner-cita__text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gm-banner-cita__line {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
}
