:root {

    /* ======================================================
     BRAND TOKENS
  ====================================================== */

    --gv-color-primary: #275E37;
    --gv-color-primary-hover: #112817;
    --gv-color-primary-hover-links: #A7E0B4;
    --gv-color-secondary: #ffffff;
    --gv-color-secondary-hover: #f7f7f7;


    --gv-color-light: #F4F7F5;
    --gv-color-dark: #1E2A22;
    --gv-color-accent: #1f8fff;

    /* ======================================================
     NEUTRAL COLORS
  ====================================================== */

    --gv-color-white: #ffffff;
    --gv-color-black: #000000;
    --gv-color-green: #275E37;
    --gv-color-green-dark: #112817;

    /* ======================================================
     FEEDBACK COLORS
  ====================================================== */

    --gv-color-success: #22c55e;
    --gv-color-warning: #f59e0b;
    --gv-color-error: #ef4444;
    --gv-color-info: #0ea5e9;

    /* ======================================================
     BACKGROUNDS
  ====================================================== */

    --gv-bg-body: #f5f7fb;
    --gv-bg-surface: #ffffff;
    --gv-bg-dark: #08102d;
    --gv-bg-body-light: #F4F7F5;
    --gv-bg-body-dark: #36453A;

    /* ======================================================
     TEXT
  ====================================================== */

    --gv-text-primary: #111827;
    --gv-text-secondary: #6b7280;
    --gv-text-muted: #9ca3af;
    --gv-text-white: #ffffff;

    /* ======================================================
     BORDER
  ====================================================== */
    --gv-border: #d4d2cb;
    --gv-border-color-ligth: #E0E7E2;
    --gv-border-color-dark: #4F5D53;

    --gv-radius-sm: 6px;
    --gv-radius-md: 12px;
    --gv-radius-lg: 20px;
    --gv-radius-xl: 30px;

    /* ======================================================
     SHADOWS
  ====================================================== */
    --gv-shadow-hover: 0 8px 32px rgba(39, 94, 55, .12);
    /* --gv-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --gv-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --gv-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12); */

    /* ======================================================
     SPACING SYSTEM (8pt)
  ====================================================== */

    --gv-space-1: 4px;
    --gv-space-2: 8px;
    --gv-space-3: 12px;
    --gv-space-4: 16px;
    --gv-space-5: 20px;
    --gv-space-6: 24px;
    --gv-space-7: 32px;
    --gv-space-8: 40px;
    --gv-space-9: 48px;
    --gv-space-10: 64px;

    /* ======================================================
     TYPOGRAPHY
  ====================================================== */

    --gv-font-family-base: 'Montserrat', sans-serif;

    --gv-font-size-xs: 12px;
    --gv-font-size-sm: 14px;
    --gv-font-size-md: 16px;
    --gv-font-size-lg: 20px;
    --gv-font-size-xl: 32px;
    --gv-font-size-xxl: 36px;
    --gv-font-size-title-section: 32px;
    --gv-font-size-subtitle-section: 14px;

    --gv-font-weight-regular: 400;
    --gv-font-weight-medium: 500;
    --gv-font-weight-semibold: 600;
    --gv-font-weight-bold: 700;

    /* ======================================================
     TRANSITIONS
  ====================================================== */

    --gv-transition-fast: 0.2s ease;
    --gv-transition-normal: 0.3s ease;
    --gv-transition-slow: 0.5s ease;

    /* ======================================================
     LAYOUT
  ====================================================== */

    --gv-container-width: 1280px;
    --gv-navbar-height: 80px;

    /* ======================================================
     Z-INDEX
  ====================================================== */

    --gv-z-navbar: 1000;
    --gv-z-dropdown: 1010;
    --gv-z-modal: 1050;
    --gv-z-toast: 1100;
}


html,
body {
    overflow-x: clip;
}

/* ======================================================
    COMPONENTS
    ====================================================== */

/* SECTION */
.section-badge {
    color: var(--gv-color-green);
    font-size: var(--gv-font-size-subtitle-section);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title {
    font-size: var(--gv-font-size-title-section);
    font-weight: 700;
    color: var(--gv-text-primary);
}

.section-body {
    font-size: .9rem;
    color: var(--gv-text-primary);
    line-height: 1.9;
    margin-bottom: 40px;
}

.section-description {
    max-width: 700px;
    margin: auto;
    color: #64748B;
    font-size: 18px;
}


/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--gv-text-primary);
}

.check-list li i {
    color: var(--gv-color-green);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* BOTONES */
.btn-primary {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
    border: none;
    transition: all .25s ease;
}

.btn-primary:hover {
    background: #2F7142;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 94, 55, 0.25);
}

.btn-primary:active {
    background: #1E4A2B;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(39, 94, 55, 0.15);
}

.btn-primary:focus-visible {
    outline: 3px solid #7DBA8A;
    outline-offset: 3px;
}

.btn-primary:disabled {
    background: #A8B8AE;
    color: #F5F5F5;
    cursor: not-allowed;
    opacity: .8;
}

.btn-primary.loading {
    pointer-events: none;
    opacity: .9;
}

/* BOTON OUTLINE */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--gv-color-green);
    color: #275E37;
    transition: all .25s ease;
}

.btn-outline-primary:hover {
    background: var(--gv-color-green);
    border-color: var(--gv-color-green);
    color: var(--gv-color-white);
}

.btn-outline-primary:active {
    background: #1E4A2B;
    border-color: #1E4A2B;
    color: var(--gv-color-white);
}

.btn-outline-primary:focus-visible {
    outline: 3px solid #7DBA8A;
    outline-offset: 3px;
}

.btn-outline-primary:disabled {
    background: transparent;
    border-color: #A8B8AE;
    color: #A8B8AE;
    cursor: not-allowed;
}


/* ======================================================
   Botones SOBRE FONDO OSCURO/VERDE
  ====================================================== */
.btn-cta-light {
    background: var(--gv-color-white);
    color: var(--gv-color-green);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 42px;
    border-radius: 8px;
    border: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    transition: all .25s ease;
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    color: var(--gv-color-green-dark);
}


/* ======================================================
    NAVBAR 
  ====================================================== */

/* TOPBAR */
.topbar {
    background: var(--gv-color-green);
    padding: 10px 0;
    font-size: .9rem;
}

.topbar a {
    color: var(--gv-color-white);
    text-decoration: none;
    margin-right: 25px;
}

.topbar i {
    margin-right: 6px;
}

/* Topbar: se retrae con transición suave al hacer scroll */
.topbar {
    overflow: hidden;
    max-height: 200px;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
}

.topbar--hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

@media (max-width: 991px) {

    .topbar .d-flex {
        flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 50%;
    }

    .topbar a {
        font-size: 0.72rem;
        margin-right: 0;
    }

    .topbar i {
        margin-right: 4px;
    }


    .topbar-right {
        align-items: flex-start !important;
        padding-left: 8px;
    }

    .topbar-right a {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        line-height: 1.3;
        word-break: break-word;
    }

    .topbar-right i {
        margin-right: 0;
        margin-top: 2px;
        flex-shrink: 0;
    }
}

/* Nav principal: fijo arriba al hacer scroll */
.gv-navbar--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    animation: gvNavbarSlideDown .3s ease;
}

@keyframes gvNavbarSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* NAVBAR */
.gv-navbar {
    background: var(--gv-color-white);
    /* border-radius: 24px; */
    /* margin-top: 15px; */
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .35s ease;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: var(--gv-text-primary);
    font-weight: 600;
    /* padding: .75rem 1rem; */
    transition: color .3s ease;
}

/* Hover */
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #3D8A53;
}

/* Línea base */
.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #275E37;
    border-radius: 50px;
    transform: translateX(-50%);
    transition: width .25s ease-in-out;
}

/* Mostrar línea en hover */
.navbar-dark .navbar-nav .nav-link:hover::before {
    width: 42px;
}

/* Mostrar línea en active */
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 42px;
}

/* Color del link activo */
.navbar-dark .navbar-nav .nav-link.active {
    color: #275E37;
}

/* Ícono hamburguesa: forzar color oscuro (el navbar es blanco pero usa la clase navbar-dark) */
.gv-navbar .navbar-toggler {
    border-color: var(--gv-border-color-ligth, rgba(0, 0, 0, .1));
}

.gv-navbar .navbar-toggler i {
    color: var(--gv-color-green);
}




.btn-ticket {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
    border-radius: 14px;
    padding: 10px 22px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(39, 94, 55, .25);
    transition: .3s;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    color: var(--gv-color-white);
}

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

.hero-section:after {
    /* background-image: -webkit-gradient(linear, left top, left bottom, from(#275E37), to(#112817));
  background-image: linear-gradient(to bottom, #275E37 0%, #275E37 50%, #112817 100%); */
    background-image: none;
}

/* .hero-section {
    padding: 0 !important;
} */

.hero-section {
    padding: 0 !important;
    position: relative;
}

.hero-overlay-title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.hero-overlay-title__box {
    background: rgba(39, 94, 55, .55);
    padding: 40px 60px;
    border-radius: 12px;
    max-width: 90%;
    pointer-events: auto;
}

.hero-overlay-subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    margin-bottom: 8px;
}

.hero-overlay-heading {
    color: var(--gv-color-white);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-overlay-heading {
        font-size: 1.15rem;
    }

    .hero-overlay-title__box {
        padding: 22px 24px;
    }
}





.booking-wrapper {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 10;
    width: 480px;
    max-width: 480px;
}

.booking-card {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

/* HEADER */

.booking-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.booking-header h2 {
    font-size: var(--gv-font-size-xl);
    font-weight: 700;
    margin: 0;
    color: #1b5e3a;
}

/* TABS */

.booking-tabs {
    display: flex;
    background: #f4f7f5;
    border-radius: 14px;
    /* padding: 5px; */
    margin-bottom: 6px;
    font-size: var(--gv-font-size-sm);
}

/* 
.booking-tabs button {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: .3s;
}

.booking-tabs button.active {

  background: #1b5e3a;
  color: white;

  box-shadow: 0 4px 12px rgba(27, 94, 58, .25);
} */

.booking-tabs .nav-link {
    border: 0;
    color: var(--gv-text-secondary);
    font-weight: 600;
    border-radius: 10px;
    padding: 5px;
}

.booking-tabs .nav-link.active {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
    box-shadow: 0 4px 12px rgba(27, 94, 58, .25);
}

/* CAMPOS */
.field-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--gv-font-size-sm);
    font-weight: 600;
    color: #55715d;
}

.form-boletos .form-control,
.form-boletos .form-select,
.form-abiertos .form-control,
.form-abiertos .form-select,
.form-canjear .form-control,
.form-canjear .form-select,
.form-paqueteria .form-control,
.form-paqueteria .form-select,
.form-reimpresion .form-control,
.form-reimpresion .form-select {
    font-size: var(--gv-font-size-md);
    height: 35px;
    border-radius: 14px;
    border: 1px solid #d4d2cb;
}

.form-boletos .form-control:focus,
.form-boletos .form-select:focus,
.form-abiertos .form-control:focus,
.form-abiertos .form-select:focus,
.form-canjear .form-control:focus,
.form-canjear .form-select:focus,
.form-paqueteria .form-control:focus,
.form-paqueteria .form-select:focus,
.form-reimpresion .form-control:focus,
.form-reimpresion .form-select:focus {
    border-color: #1b5e3a;
    box-shadow: 0 0 0 .2rem rgba(27, 94, 58, .15);
}



/* PASAJEROS */

.passenger-selector {
    /* height: 35px;
  border: 1px solid #dbe4dd;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;*/
    background-color: var(--gv-color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dbe4dd;
    border-radius: 12px;
    padding: 2px;
}

.passenger-selector button {
    /* width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf3ef;
  font-weight: bold; */
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf3ef;
    color: var(--gv-text-primary);
    border: 1px solid #dbe4dd;
    /* border: none;
  border-radius: 50%;
  background: #198754;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid #dbe4dd; */
}

.passenger-selector span {
    font-weight: 600;
}

.btn-outline-success:hover {
    color: var(--gv-color-white) !important;
    background-color: #275E37 !important;
    border-color: #275E37 !important;
}

/* SAEARCH BTN */

.search-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 16px;
    margin-top: 22px;
    background:
        linear-gradient(135deg,
            #1b5e3a,
            #2f7d4d);

    color: var(--gv-color-white);
    font-size: 1.05rem;
    font-weight: 700;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(27, 94, 58, .25);
}

.search-btn-outline {
    background: transparent;
    border: 2px solid #1b5e3a;
    color: #1b5e3a;
}

.search-btn-outline:hover {
    background: #1b5e3a;
    color: var(--gv-color-white);
    transform: translateY(-2px);
    box-shadow: none;
}


/* ══════════════════════════════════════
   MÓVIL: hero-section + booking
   ══════════════════════════════════════ */
@media (max-width: 991px) {
    .booking-wrapper {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px;
    }

    .booking-card {
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    }

    .carousel-inner img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
    }

}

/* ── Restaurar desktop ── */
@media (min-width: 992px) {
    .hero-section>div {
        position: relative;
    }

    .hero-section>.hero-overlay-title {
        position: absolute;
    }

    .booking-wrapper {
        position: absolute !important;
        top: 50% !important;
        right: 5% !important;
        transform: translateY(-50%) !important;
        width: 480px !important;
        max-width: 480px !important;
    }
}

/* ── Pantallas grandes: la card crece con la pantalla, no se queda
   siempre en 480px ── */
@media (min-width: 1400px) {
    .booking-wrapper {
        width: 560px !important;
        max-width: 560px !important;
    }

    .booking-card {
        padding: 26px;
    }

    .booking-header h2 {
        font-size: calc(var(--gv-font-size-xl) * 1.15);
    }
}

@media (min-width: 1800px) {
    .booking-wrapper {
        width: 640px !important;
        max-width: 640px !important;
    }

    .booking-card {
        padding: 32px;
    }

    .booking-header h2 {
        font-size: calc(var(--gv-font-size-xl) * 1.3);
    }
}

/* ======================================================
   Utilidad genérica para las secciones de las vistas
  ====================================================== */
.section-white {
    background-color: var(--gv-color-white);
}

.section-light {
    background-color: var(--gv-color-light);
}

.section-green {
    background-color: var(--gv-color-green);
}

.section-green-dark {
    background-color: var(--gv-color-green-dark);
}

/* Tipografía para usar sobre .section-green (o cualquier fondo oscuro) */
.section-badge-light {
    color: var(--gv-color-primary-hover-links);
    font-size: var(--gv-font-size-subtitle-section);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title-light {
    font-size: var(--gv-font-size-title-section);
    font-weight: 700;
    color: var(--gv-color-white);
}

.section-body-light {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* ======================================================
    MODAL ESTÁNDAR (header verde, igual en toda la plataforma)
  ====================================================== */
.modal-vencedor .modal-header {
    background-color: var(--gv-color-green);
}

.modal-vencedor .modal-header .modal-title {
    color: #fff;
}




/* ======================================================
    SECCIÓN INICIO/DESTINOS PRINCIPALES
  ====================================================== */

.destination-card {
    background: var(--gv-color-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.destination-image {
    height: 330px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    transition: .5s;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom,
            rgba(34, 46, 81, 0.7) 0%,
            rgba(34, 46, 81, 0.3) 25%,
            rgba(34, 46, 81, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-content {
    padding: 30px;
    text-align: center;
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #edf8f1;
    border-radius: 30px;
    color: var(--gv-color-green);
    font-weight: 600;
    margin-bottom: 25px;
}

.destination-content h3 {
    font-size: var(--gv-font-size-lg);
    font-weight: 800;
    color: var(--gv-color-green);
}

.card-footer-line {
    margin-top: 25px;
    position: relative;
}

.card-footer-line::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 2px;
    background: #d6e8dc;
    left: 50%;
    top: 50%;
    transform:
        translateX(-50%);
}

.card-footer-line i {
    position: relative;
    background: #fff;
    padding: 0 20px;
    color: var(--gv-color-green);
    ;
    font-size: 26px;
}

@media(max-width:991px) {
    .destinations-section {
        padding: 70px 0;
    }

    .destination-image {
        height: 260px;
    }

    .destination-content h3 {
        min-height: auto;
        font-size: 1.8rem;
    }

}

@media(max-width:576px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .destination-image {
        height: 220px;
    }

}

/* ======================================================
    SECCIÓN APP MOVIL
  ====================================================== */

.section-app {
    position: relative;
    overflow: hidden;
    background: var(--gv-color-white);
    /* padding: 90px 0; */
}

.shape-left {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #006838;
    border-radius: 50%;
    top: -120px;
    left: -220px;
}

.shape-right {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #006838;
    border-radius: 50%;
    right: -220px;
    top: 120px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 45px;
    color: var(--gv-text-primary);
}

.hero-content h1 span {
    color: #0a8c45;
}

.hero-content p {
    max-width: 700px;
    margin: auto;
    font-size: 22px;
    color: var(--gv-text-secondary);
    font-size: var(--gv-font-size-md);
}

.feature-box {
    text-align: center;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: #edf8f1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 15px;
}

.icon-box i {
    font-size: 32px;
    color: #0a8c45;
}

.feat-desc {
    color: var(--gv-text-muted);
    font-size: var(--gv-font-size-sm);
}

.feature-box h5 {
    font-weight: 700;
    color: var(--gv-text-primary);
    font-size: var(--gv-font-size-md);
}

.download-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-buttons img {
    height: 60px;
    transition: .3s;
}

.download-buttons img:hover {
    transform: translateY(-6px);
}

.bus-img {
    max-width: 420px;
    margin-left: -120px;
}

.phone-wrapper {
    position: relative;
}

.phone-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #0a8c45;
    border-radius: 50%;
    right: -50px;
    top: 50px;
}

.phone-img {
    position: relative;
    z-index: 2;
    max-width: 350px;
}

.stats-card {
    margin-top: 70px;
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.stat-item h3 {
    color: #0a8c45;
    font-weight: 800;
}

.stat-item span {
    color: #666;
}

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .stats-card {
        margin-top: 40px;
    }

    .shape-left,
    .shape-right {
        opacity: .2;
    }
}


.store-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.store-btn {
    background: var(--gv-color-green);
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    padding: 10px 15px;
    min-width: 190px;

    display: flex;
    align-items: center;
    gap: 15px;

    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(39, 94, 55, .25);
}

.store-btn:hover {
    background: #1f4c2c;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(39, 94, 55, .35);
}

.store-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .12);
    border-radius: 12px;
}

.store-icon i {
    font-size: 24px;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-text small {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: .85;
}

.store-text span {
    font-size: var(--gv-font-size-md);
    font-weight: 700;
}

@media(max-width:768px) {

    .store-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .store-text span {
        font-size: 20px;
    }

}

/* ── Responsive fix: pantallas grandes ── */
@media (min-width: 992px) {

    .bus-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        overflow: visible;
    }

    .bus-img {
        max-width: 100%;
        width: 420px;
        margin-left: -80px;
        /* ajusta según cuánto quieres que sobresalga */
        object-fit: contain;
    }

    .phone-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
        overflow: visible;
    }

    .phone-img {
        max-width: 100%;
        width: 300px;
        object-fit: contain;
    }


    .section-app {
        position: relative;
        /* ya lo tienes, solo confirmamos */
    }

    /* Columnas laterales */
    .bus-wrapper,
    .phone-wrapper {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: auto;
        overflow: visible;
    }

    .bus-wrapper {
        left: 0;
    }

    .phone-wrapper {
        right: 0;
    }

    .bus-img {
        /* width: 340px; */
        max-width: none;
        margin-left: -60px;
        display: block;
    }

    .phone-img {
        width: 280px;
        max-width: none;
        display: block;
    }
}

@media (min-width: 1400px) {
    .bus-img {
        width: 420px;
        margin-left: -80px;
    }

    .phone-img {
        width: 340px;
    }
}




/* ══════════════════════════════════════
   MÓVIL: section-app
   ══════════════════════════════════════ */
@media (max-width: 991px) {

    .section-app {
        padding: 40px 0 0;
        overflow: hidden;
    }

    /* ── Título y párrafo ── */
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* ── Feature boxes: 3 columnas compactas ── */
    .feature-box {
        padding: 0 4px;
    }

    .icon-box {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 10px;
    }

    .icon-box i {
        font-size: 22px;
    }

    .feature-box h5 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .feat-desc {
        font-size: 10px;
        line-height: 1.3;
    }

    /* ── Botones: uno debajo del otro, full width ── */
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 40px;
    }

    .store-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .store-text span {
        font-size: 18px;
    }

    /* ── Imágenes apiladas ── */
    .mobile-images-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 36px;
        overflow: hidden;
    }

    .mobile-bus {
        width: 85%;
        max-width: 340px;
        display: block;
        /* entra desde la izquierda */
        margin-right: auto;
        margin-left: -20px;
    }

    .mobile-phone {
        width: 55%;
        max-width: 220px;
        display: block;
        margin: -20px auto 0;
        position: relative;
        z-index: 2;
    }

    .bus-wrapper {
        display: none !important;
    }


    /* ── Teléfono: contenido y sin desbordarse ── */
    .phone-wrapper {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        right: auto !important;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        overflow: hidden;
    }

    .phone-img {
        width: 220px !important;
        max-width: 220px !important;
        display: block;
    }
}

/* ── Restaurar diseño a version desktop ── */
@media (min-width: 992px) {
    .store-buttons {
        flex-direction: row;
        align-items: unset;
        gap: 40px;
        padding: 0;
    }

    .store-btn {
        width: auto;
        max-width: none;
        justify-content: flex-start;
    }

    .phone-wrapper {
        position: absolute !important;
        transform: translateY(-50%) !important;
        top: 50% !important;
        right: 0 !important;
        display: block;
        margin-top: 0;
        overflow: visible;
    }

    .phone-img {
        width: 280px !important;
        max-width: none !important;
    }

}

/* ======================================================
    SECCIÓN STATS / ¿PORQUE ELEGIR VENCEDOR?
  ====================================================== */

.section-vencedor {
    background: var(--gv-color-green);
}

.section-badge-vencedor {
    color: #7dd89a !important;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: .3s;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, .05); */
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(168, 212, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 30px;
    /* color: #7dd89a; */
    color: var(--gv-color-white);
}

.benefit-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gv-color-white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--gv-font-size-sm);
}

.stats-wrapper {
    background: linear-gradient(135deg,
            #006633,
            #0A8F4F);
    border-radius: 24px;
    padding: 50px 20px;
}

.stat-item h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
}

.stat-item p {
    color: rgba(255, 255, 255, .85);
    margin-top: 10px;
}

/* ======================================================
  SECCIÓN FAQS
  ====================================================== */
.section-faqs {
    background: var(--gv-color-light);
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
}

.faq-description {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--gv-text-primary);
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.faq-accordion .accordion-button {
    padding: 22px;
    font-size: 18px;
    font-weight: 600;
    background: var(--gv-color-white);
    transition: color 0.3s ease, background-color 0.3s ease
}

.faq-accordion .accordion-button:hover {
    color: #275E37;
    background-color: #f6f9f7;
    /* Un tono muy claro derivado de tu verde */
}

.faq-accordion .accordion-button:hover i {
    color: #275E37;
    transition: color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: var(--gv-color-green);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 25px;
    color: #475569;
    background: #ffffff;
    border-top: 2px solid #edf2f7;
    padding: 28px;
}

.faq-support-card {
    background: linear-gradient(135deg,
            #006633,
            #0a8f4f);
    color: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 100px;
}


.faq-support-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-support-card p {
    opacity: .9;
    margin-bottom: 25px;
}

.faq-accordion-icon {
    font-size: var(--gv-font-size-lg);
}


/* ======================================================
     FOOTER
    ====================================================== */
.main-footer {
    background-color: var(--gv-color-green);
    color: var(--gv-color-white);
    font-family: var(--gv-font-family-base);
    padding-top: 60px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-slogan {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

/* Acordeón del footer — solo actúa en móvil, en escritorio no cambia nada */
.footer-toggle-icon {
    display: none;
}

@media (max-width: 767.98px) {
    .footer-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 12px;
    }

    .footer-toggle-icon {
        display: inline-block;
        font-size: 1.3rem;
        transition: transform .3s ease;
    }

    .footer-toggle.is-open .footer-toggle-icon {
        transform: rotate(180deg);
    }

    .footer-collapse {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .35s ease, opacity .35s ease;
    }

    .footer-collapse.is-open {
        max-height: 600px;
        opacity: 1;
    }
}

/* Enlaces del Footer */
.footer-links list-unstyled {
    padding-left: 0;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--gv-color-primary-hover-links);
    transform: translateX(4px);
    opacity: 1;
}

/* Redes Sociales */
.social-icons .btn-social {
    width: 36px;
    height: 36px;
    background-color: var(--gv-border-color-ligth);
    color: var(--gv-color-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .btn-social:hover {
    background-color: var(--gv-color-primary-hover-links);
    transform: translateY(-3px);
}

.social-icon {
    font-size: 18px;
}

/* Sección de Contacto */
.contact-info p {
    color: var(--gv-color-white);
    font-size: 0.95rem;
}

.contact-info .phone-number {
    color: var(--gv-color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    transition: color 0.3s ease;
}

.contact-info .phone-number:hover {
    color: var(--gv-color-white);
    text-decoration: none;
}

.contact-info .email-link {
    color: var(--gv-color-white);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-info .email-link:hover {
    text-decoration: underline;
}

.contact-phone {
    margin-top: -1rem;
    color: var(--gv-color-white);
    font-size: 1rem;
}

.contact-phone i {
    color: var(--gv-color-white);
}


/* Barra de Copyright inferior */
.footer-bottom {
    background-color: var(--gv-color-green-dark);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gv-color-white);
    margin-bottom: 0;
}


/* ======================================================
      PAGES TURISMO
    ====================================================== */
.service-tourism {
    background: var(--gv-color-white);
}

.service-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #7b7b7b;
    margin-bottom: 40px;

}


.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 16px;
}

.benefit-item span {
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.icon-box-tourism {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gv-border-color-ligth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-color-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}



.image-wrapper {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: .4s;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

@media(max-width:991px) {
    .service-title {
        font-size: 2.3rem;
    }

    .service-text {
        font-size: 1rem;
    }

    .image-wrapper {
        margin-top: 10px;
    }

}

@media(max-width:576px) {
    .tourism-service {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .service-title {
        font-size: 2rem;
    }

    .section-tag {
        padding-left: 45px;
    }

    .section-tag::before {
        width: 30px;
    }

}

/* CONTACTANOS */

.contact-strip {
    background: var(--gv-color-light);
    padding: 56px 40px;
    border-top: 0.5px solid var(--sand);
    border-bottom: 0.5px solid var(--sand);
}

.contact-strip-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid-tourism {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .contact-grid-tourism {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-grid-tourism {
        grid-template-columns: 1fr;
    }
}

.contact-card-tourism {
    background: var(--gv-color-white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 0.5px solid #d4d2cb;
    transition: box-shadow .2s, transform .2s;
}

.contact-card-tourism:hover {
    box-shadow: 0 6px 24px rgba(39, 94, 55, 0.1);
    transform: translateY(-2px);
}

.contact-city-tourism {
    font-size: var(--gv-font-size-sm);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gv-text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.city-dot-tourism {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gv-text-primary);
}

.contact-item-tourism {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 0.5px solid #ede8df;
    text-decoration: none;
    transition: color .15s;
}

.contact-item-tourism:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item-tourism:hover .contact-num-tourism {
    color: var(--gv-color-green);
}

.contact-icon-tourism {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-tourism.phone {
    background: #e8f2eb;
}

.contact-icon-tourism.wa {
    background: #e8f5e9;
}

.contact-icon-tourism svg {
    width: 15px;
    height: 15px;
}

.contact-num-tourism {
    font-size: 14px;
    font-weight: 600;
    color: var(--gv-text-primary);
}

.contact-type-tourism {
    font-size: 11px;
    color: var(--gv-text-primary);
}



/* ======================================================
      PAGES TRANSPORTES 
    ====================================================== */
.section-transport {
    background: var(--gv-color-white);
    padding: 80px 0;
}

/* BENEFICIOS */
.section-benefits {
    background: var(--gv-color-light);
    padding: 80px 0;
}

.benefits-card {
    background: var(--gv-color-white);
    border-radius: 8px;
    padding: 32px 28px;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: border-color .25s, box-shadow .25s, transform .2s;
}

.benefits-card:hover {
    border-bottom-color: var(--gv-color-green);
    box-shadow: 0 8px 32px rgba(39, 94, 55, .12);
    transform: translateY(-4px);
}

.benefits-card__icon {
    width: 52px;
    height: 52px;
    background: var(--gv-border-color-ligth);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefits-card__icon i {
    font-size: 1.4rem;
    color: var(--gv-color-green);
}

.benefits-card__title {
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gv-text-primary);
    margin-bottom: 14px;
}

.benefits-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-card__list li {
    font-size: .85rem;
    color: var(--gv-text-secondary);
    line-height: 1.55;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.benefits-card__list li::before {
    content: '›';
    color: var(--gv-color-green);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    flex-shrink: 0;
}


/* SOCIOS */
.logo-card {
    padding: 24px 16px;
    border-radius: 8px;
    background: var(--gv-color-white);
    border: 0.5px solid #d4d2cb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    min-height: 88px;
}

.logo-card img {
    max-height: 90px;
    width: auto;
    transition: all 0.2s ease;
}

.logo-card:hover {
    border-color:
        color-mix(in srgb, var(--gv-color-green), transparent 50%);
    box-shadow: 0 8px 32px rgba(39, 94, 55, .12);
}

/* UNIDADES */
.section-unidades {
    background: var(--gv-color-green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.unidades-label {
    font-size: var(--gv-font-size-subtitle-section);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gv-color-white);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unidades-title {
    font-size: var(--gv-font-size-title-section);
    font-weight: 700;
    color: var(--gv-color-white);
    margin-bottom: 16px;
}

.unidades-body {
    font-size: .93rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    max-width: 420px;
}


/* CONTACTO */
.section-contacto {
    background: var(--gv-color-light);
    padding: 80px 0;
}

.contacto-card {
    background: var(--gv-color-white);
    border-radius: 10px;
    padding: 48px 44px;
    color: var(--gv-text-primary);
}

.contacto-card__body {
    font-size: .9rem;
    color: var(--gv-text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 340px;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contacto-info__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contacto-info__item i {
    font-size: 1.1rem;
    color: var(--gv-color-green);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contacto-info__item span {
    font-size: .88rem;
    color: var(--gv-text-primary);
}

/* Form */
.form-vencedor .form-control,
.form-vencedor .form-select {
    border-radius: 5px;
}


.form-vencedor .form-control:focus,
.form-vencedor .form-select:focus {
    border: 0.5px solid #d4d2cb;
    color: var(--gv-text-primary);
    box-shadow: none;
}

.form-vencedor .form-label {
    font-size: .72rem;
    text-transform: uppercase;
    color: var(--gv-text-primary);
    margin-bottom: 6px;
}

.btn-send {
    width: 100%;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* ======================================================
      PAGES PAQUETERIA 
    ====================================================== */

/* SERVICIOS */
.section-servicios {
    background: var(--gv-color-light);
    padding: 5rem;
}

.servicio-card {
    background: var(--gv-color-white);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 24px rgba(27, 61, 36, .10);
    transition: border-color .2s, transform .2s, box-shadow .2s;
    height: 100%;
}

.servicio-card:hover {
    border-color: var(--gv-color-green);
    transform: translateY(-4px);
    box-shadow: var(--gv-shadow-hover);
}

.servicio-icon {
    width: 48px;
    height: 48px;
    background: var(--gv-border-color-ligth);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gv-color-green);
    font-size: 1.4rem;
}

.servicio-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--gv-text-primary);
    margin-bottom: .5rem;
}

.servicio-card p {
    font-size: .88rem;
    color: var(--gv-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* COTIZACION */
.section-cotizacion {
    background: var(--gv-color-green);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.section-cotizacion img {
    height: 480px;
    border-radius: 22px;
}

.cotizacion-form-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    backdrop-filter: blur(4px);
}

.cotizacion-form-card .form-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.cotizacion-form-card .form-control,
.cotizacion-form-card .form-select {
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 8px;
    font-size: .92rem;
    padding: .7rem 1rem;
}

.cotizacion-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, .4);
}

.cotizacion-form-card .form-control:focus,
.cotizacion-form-card .form-select:focus {
    background: rgba(255, 255, 255, .15);
    border-color: var(--gv-color-green);
    box-shadow: 0 0 0 3px rgba(91, 175, 120, .2);
    color: var(--gv-color-white);
    outline: none;
}

.cotizacion-form-card .form-select option {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
}

.cotizacion-form-card .form-check-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
}

.cotizacion-form-card .form-check-input:checked {
    background-color: #7FD1A1;
    border-color: #7FD1A1;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.qty-btn {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background .2s;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, .22);
}

.btn-cotizar {
    background: var(--gv-color-white);
    color: var(--gv-color-green);
    border: 2px solid var(--gv-color-white);
    border-radius: 5px;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .9rem 2.5rem;
    transition: background .2s, transform .15s;
    cursor: pointer;
}

.btn-cotizar:hover {
    background: #F5F5F5;
    transform: translateY(-1px);
    color: var(--gv-color-green);
}

/* Responsive imagen cotización */
@media (max-width: 991.98px) {
    .section-cotizacion .object-fit-cover {
        height: 300px !important;
    }
}

@media (max-width: 575.98px) {
    .section-cotizacion .object-fit-cover {
        height: 220px !important;
    }

    .section-cotizacion::before {
        display: none;
    }

    .cotizacion-form-card {
        padding: 1.5rem;
    }
}

/* CONTACTO */
.section-paq-contacto {
    background: var(--gv-color-white);
    padding: 5rem 0;
}

.contact-card {
    border: 1.5px solid var(--gv-border);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color .2s, box-shadow .2s;
}

.contact-card p {
    flex: 1;
}

.contact-card .contact-spacer {
    flex: 1;
}

.contact-card:hover {
    border-color: var(--gv-color-green);
    box-shadow: var(--gv-shadow-hover);
}

.contact-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: .8rem;
    display: block;
    color: var(--gv-color-green);
}

.contact-card h6 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gv-text-primary);
    margin-bottom: .4rem;
}

.contact-card p {
    font-size: .84rem;
    color: var(--gv-text-secondary);
    margin-bottom: 0;
}

.btn-contact {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: .55rem 1.4rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.2rem;
}

.btn-contact:hover {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
}

.btn-contact.disabled-btn {
    border-color: var(--gv-border);
    color: var(--gv-text-secondary);
    pointer-events: none;
}



/* OFICINAS */
.section-oficinas {
    background: var(--gv-color-light);
    padding: 5rem 0;
}

.oficinas-tabs .nav-link {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gv-text-secondary);
    border: none;
    border-bottom: 2px solid transparent;
    padding: .6rem 1.1rem;
    border-radius: 0;
    background: none;
    transition: color .18s, border-color .18s;
}

.oficinas-tabs .nav-link:hover {
    color: var(--gv-color-green);
}

.oficinas-tabs .nav-link.active {
    color: var(--gv-color-green);
    border-bottom: 2px solid var(--gv-color-green);
    background: none;
}

.oficina-card {
    background: var(--gv-color-white);
    border-radius: 8px;
    border: 1.5px solid var(--gv-gray-line);
    padding: 1.5rem;
    height: 100%;
    transition: border-color .2s, box-shadow .2s;
}

.oficina-card:hover {
    border-color: var(--gv-color-green);
    box-shadow: var(--gv-shadow-hover);
}

.oficina-card .office-city {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gv-color-green);
    margin-bottom: .75rem;
}

.oficina-card address {
    font-style: normal;
    font-size: .86rem;
    color: var(--gv-text-primary);
    line-height: 1.65;
    margin-bottom: .75rem;
}

.oficina-card .office-phone {
    font-size: .86rem;
    color: var(--gv-text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .9rem;
}

.oficina-card .office-phone i {
    color: var(--gv-color-green);
}

.btn-ver-mapa {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gv-color-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: color .18s;
}

.btn-ver-mapa:hover {
    color: var(--gv-color-green-dark);
}

/* Botón flotante "Ir arriba" */
.btn-back-to-top {
    position: fixed;
    bottom: 84px;
    right: 24px;
    z-index: 99999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gv-color-green);
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background-color: var(--gv-color-green-dark, #1d4a2b);
}

.btn-back-to-top i,
#feedbackButton i {
    font-size: 1.3rem;
}

/* Botón flotante "Cuéntanos tu experiencia" */
.btn-feedback {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gv-color-green);
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    pointer-events: auto;
}

.btn-feedback:hover {
    background-color: var(--gv-color-green-dark, #1d4a2b);
    color: #fff;
}

@media (max-width: 767.98px) {

    /* Oculta los botones flotantes mientras la barra de copyright está a
       la vista, para que no se amontonen con ella al final de la página.
       Solo en móvil: en escritorio hay espacio de sobra y deben
       permanecer siempre visibles. */
    .fab-near-footer {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}


/* ======================================================
    TARJETA DE UNIDAD EN VENTA
  ====================================================== */
.unit-card {
    background: var(--gv-color-white);
    border: 1px solid var(--gv-border-color-ligth);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}

.unit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.unit-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.unit-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.unit-card__footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gv-border-color-ligth);
    text-align: center;
    color: var(--gv-color-green);
}


/* ======================================================
    FILTROS DE LÍNEA (resultados de búsqueda)
  ====================================================== */
.line-filter-btn {
    border: 2px solid;
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: .85rem;
    background: var(--gv-color-white);
    transition: all .25s ease;
    cursor: pointer;
}

.line-filter-btn.active {
    color: var(--gv-color-white) !important;
}

.line-filter-btn.all-lines {
    color: var(--gv-text-primary);
    border-color: var(--gv-border-color-ligth);
}

.line-filter-btn.all-lines.active {
    background: var(--gv-text-primary);
}

.line-filter-btn.autonaves {
    color: #632771;
    border-color: #F6C206;
}

.line-filter-btn.autonaves.active,
.line-filter-btn.autonaves:hover {
    background: #632771;
    color: #F6C206 !important;
}

.line-filter-btn.vencedor {
    color: var(--gv-color-green);
    border-color: #9a9b9c;
}

.line-filter-btn.vencedor.active,
.line-filter-btn.vencedor:hover {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
}

.line-filter-btn.confort {
    color: #632571;
    border-color: #EAC22E;
}

.line-filter-btn.confort.active,
.line-filter-btn.confort:hover {
    background: #632571;
    color: #EAC22E !important;
}

.line-filter-btn.metropolitano {
    color: #000;
    border-color: #EFD500;
}

.line-filter-btn.metropolitano.active,
.line-filter-btn.metropolitano:hover {
    background: #EFD500;
    color: #000 !important;
}

.line-filter-btn.veracruz {
    color: #07509A;
    border-color: #07509A;
}

.line-filter-btn.veracruz.active,
.line-filter-btn.veracruz:hover {
    background: #07509A;
}

/* ======================================================
    TARJETA DE CORRIDA
  ====================================================== */
.corrida-card {
    background: var(--gv-color-white);
    border: 1px solid var(--gv-border-color-ligth);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all .25s ease;
}

.corrida-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.corrida-card__logo {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

.schedule-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 1px solid var(--gv-border-color-ligth);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    background: var(--gv-color-white);
    font-size: .85rem;
    transition: all .25s ease;
}

.schedule-filter-btn.active {
    background: var(--gv-color-green);
    color: var(--gv-color-white);
    border-color: var(--gv-color-green);
}


.contact-card--sticky {
    position: sticky;
    top: calc(var(--gv-navbar-height) + 20px);
    text-align: left;
    align-items: stretch;
    height: auto;
}

.contact-card--sticky p {
    flex: none;
}

@media (max-width: 991.98px) {
    .contact-card--sticky {
        position: static;
    }
}


/* Sidebar de filtros de horarios/precio (ticket-departure / ticket-arrival) */
.contact-card--filters {
    align-items: stretch !important;
    height: auto !important;
    position: sticky;
    top: calc(var(--gv-navbar-height) + 20px);
}

.contact-card--filters p {
    flex: none !important;
}

@media (max-width: 991.98px) {
    .contact-card--filters {
        position: static;
    }
}

/* Panel de filtros (Salidas/Servicios) — sidebar normal en escritorio,
   panel deslizante desde abajo en móvil/tablet. */
.filters-panel-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1040;
}

@media (min-width: 992px) {

    /* Sin esto, .filters-panel solo mide lo que ocupa su contenido
       (mucho menos que la columna de resultados), y el position:sticky
       de .contact-card--filters se queda sin espacio del padre para
       "pegarse" al hacer scroll. */
    .filters-panel {
        height: 100%;
    }
}

@media (max-width: 991.98px) {
    .filters-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 75vh;
        overflow-y: auto;
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, .15);
        padding: 16px 20px 24px;
        transform: translateY(100%);
        transition: transform .3s ease;
        z-index: 1050;
    }

    .filters-panel.is-open {
        transform: translateY(0);
    }

    .filters-panel-backdrop.is-open {
        display: block;
    }

    .filters-panel__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }
}

/* ======================================================
   PARA LA VISTA DE ASIENTOS DE LA CORRIDA
  ====================================================== */

.seat-btn {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.seat-available {
    background: var(--gv-color-light);
    color: var(--gv-text-primary);
    border: 1.5px solid var(--gv-border-color-ligth);
}

.seat-available:hover {
    border-color: var(--gv-color-green);
}

.seat-selected {
    background: var(--gv-color-green) !important;
    color: var(--gv-color-white) !important;
    border-color: var(--gv-color-green) !important;
}

.seat-occupied {
    background: var(--gv-border);
    color: var(--gv-text-secondary);
    cursor: not-allowed;
    border: 1.5px solid var(--gv-border);
}

/* Íconos de estado dentro de cada asiento */
.seat-icon {
    display: none;
    font-size: 1rem;
    line-height: 1;
}

.seat-number {
    font-size: .6rem;
    line-height: 1;
}

.seat-available .seat-icon--available {
    display: inline-block;
    color: var(--gv-text-secondary);
}

.seat-selected .seat-icon--available {
    display: none !important;
}

.seat-selected .seat-icon--selected {
    display: inline-block !important;
}

.seat-occupied .seat-icon--occupied {
    display: inline-block;
}

/* Contenedor del camión (defensa + operador + asientos) */
.bus-frame {
    display: inline-block;
    width: 232px;
    max-width: 100%;
    text-align: left;
}

.bus-frame .bus-bumper {
    display: block;
    width: 100%;
    height: auto;
}

.bus-frame .bus-driver {
    display: block;
    width: 50px;
    max-width: 40%;
    height: auto;
    margin: 10px 0;
}


/* Timer más grande y visible, con alerta de color según tiempo restante */
.timer-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-icon {
    font-size: 1.4rem;
    color: var(--gv-color-green);
}

.timer-value {
    font-size: 1.5rem;
    margin-left: auto;
    color: var(--gv-color-green);
    transition: color .3s ease;
}

.timer-value--warning {
    color: #d97706;
}

.timer-value--danger {
    color: #dc2626;
}

/* ============================================
   NAV MÓVIL: filas de ancho completo alineadas
   a la izquierda + grupo único "Más información"
   ============================================ */
@media (max-width: 991px) {

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gv-border-color-ligth);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
    }

    /* Botón "Más información" (acordeón único) */
    .mobile-more-toggle {
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
        font-weight: 600;
        color: var(--gv-text-primary);
    }

    .mobile-more-icon {
        transition: transform .25s ease;
        color: var(--gv-color-green);
    }

    .mobile-more-toggle[aria-expanded="true"] .mobile-more-icon {
        transform: rotate(180deg);
    }

    .mobile-more-toggle[aria-expanded="true"] {
        color: var(--gv-color-green);
    }

    /* Submenú desplegado */
    .mobile-more-menu {
        background: var(--gv-color-light);
        border-radius: 8px;
        margin: 4px 0 8px;
        padding: 4px 0;
    }

    .mobile-more-item {
        display: block;
        padding: 0.65rem 1.25rem;
        color: var(--gv-text-secondary);
        text-decoration: none;
        font-size: 0.92rem;
    }

    .mobile-more-item:hover,
    .mobile-more-item:active {
        color: var(--gv-color-green);
        background: rgba(39, 94, 55, 0.06);
    }
}





/* ============================================
   NAV MÓVIL: filas de ancho completo alineadas
   a la izquierda + grupo único "Más información"
   ============================================ */
@media (max-width: 991px) {

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gv-border-color-ligth);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
    }

    /* Botón "Más información" (acordeón único) */
    .mobile-more-toggle {
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
        font-weight: 600;
        color: var(--gv-text-primary);
    }

    .mobile-more-icon {
        transition: transform .25s ease;
        color: var(--gv-color-green);
    }

    .mobile-more-toggle[aria-expanded="true"] .mobile-more-icon {
        transform: rotate(180deg);
    }

    .mobile-more-toggle[aria-expanded="true"] {
        color: var(--gv-color-green);
    }

    /* Submenú desplegado */
    .mobile-more-menu {
        background: var(--gv-color-light);
        border-radius: 8px;
        margin: 4px 0 8px;
        padding: 4px 0;
    }

    .mobile-more-item {
        display: block;
        padding: 0.65rem 1.25rem;
        color: var(--gv-text-secondary);
        text-decoration: none;
        font-size: 0.92rem;
    }

    .mobile-more-item:hover,
    .mobile-more-item:active {
        color: var(--gv-color-green);
        background: rgba(39, 94, 55, 0.06);
    }

    /* Anula el subrayado centrado (pensado para desktop, no aplica a filas completas) */
    .navbar-nav .nav-link::before {
        display: none;
    }

    /* Indicador de "activo" adaptado a filas de ancho completo */
    .navbar-nav .nav-link.active,
    .mobile-more-toggle[aria-expanded="true"] {
        border-left: 3px solid var(--gv-color-green);
        padding-left: calc(0.5rem - 3px);
        background: rgba(39, 94, 55, 0.05);
        color: var(--gv-color-green);
    }


}