@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Regla global para prevenir imágenes gigantescas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Asegurar tamaños específicos para imágenes del sitio */
.logo-img {
    max-width: 220px !important;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.control-icon {
    max-width: 20px !important;
    max-height: 20px !important;
}

.contact-bar-icon {
    max-width: 24px !important;
    max-height: 24px !important;
}

.logo-footer {
    max-width: 220px !important;
    height: auto !important;
}

.footer-bottom-social-icon img {
    max-width: 35px !important;
    max-height: 35px !important;
}

.contact-bar-v2-agent-icon img {
    max-width: 100px !important;
    max-height: 100px !important;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #4285F4;
    --accent-color: #D4AF37;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --header-height: 140px;
    /* Altura total aproximada del header fijo */
    --header-gap: 30px;
    /* Espacio deseado entre header y contenido */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* HEADER - Three Container Architecture */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Header shrink state cuando se hace scroll */
header.shrink {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

header.shrink .header-top-row {
    padding: 0.3rem 0;
}

header.shrink .logo-container {
    height: 80px !important;
    max-height: 80px !important;
    overflow: hidden;
}

header.shrink .logo-img {
    height: 80px !important;
    max-width: 147px !important;
    /* Proporcional: 220px * (80/120) ≈ 147px */
    width: auto !important;
    max-height: 80px !important;
    object-fit: contain !important;
}

header.shrink .menus-right-container {
    height: 80px;
}

header.shrink .menu-options {
    height: 30px;
    padding: 0.3rem 0;
}

header.shrink .main-nav {
    padding: 0.2rem;
    margin: 0.2rem 0;
}

header.shrink .main-nav-container {
    margin: 0.2rem;
    padding: 0.3rem;
}

header.shrink .nav-links {
    gap: 1.5rem;
}

header.shrink .nav-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.8rem;
}

/* Contenedor Principal Superior: Logo (izquierda) y Menús (derecha) */
.header-top-row {
    width: 100%;
    background: #FFFFFF;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: visible;
}

.header-top-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Contenedor 1: Logo Independiente (Izquierda) */
.logo-container {
    height: 120px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease, max-width 0.3s ease;
}

/* Contenedor de Menús Derechos: Menú 1 y Menú 2 Apilados */
.menus-right-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
}

/* Contenedor 2: Menú 1 - Funcionalidades de Usuario */
.menu-options {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
    padding: 0.4rem 0;
    margin: 0;
    height: 35px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    position: relative;
    text-decoration: none;
    /* Removed underline for anchor links */
    font-size: 1rem;
    /* Ensure consistent base size if needed, though children control size */
}

a.control-item {
    text-decoration: none;
    color: inherit;
}

.control-item:hover {
    background-color: rgba(111, 78, 55, 0.1);
}

.control-icon {
    height: 20px;
    width: auto;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
}

.control-text {
    font-size: 0.9rem;
    color: #2C3E50;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.control-item:hover .control-text {
    color: #6F4E37;
}

.control-item .dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.control-item:hover .dropdown-arrow {
    opacity: 1;
}

/* Dropdowns para Control Items (Currency, Language, Account) */
.control-item.has-dropdown {
    position: relative;
}

.control-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    padding-top: 5px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    margin-top: 0;
    transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out 0.1s;
    pointer-events: none;
}

/* Área de transición invisible en la parte superior del dropdown */
.control-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
}

/* Mostrar dropdown cuando se hace hover en el control-item padre */
.control-item.has-dropdown:hover .control-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

/* Mantener visible cuando el cursor está sobre el dropdown */
.control-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.control-dropdown li {
    margin: 0;
    padding: 0;
}

.control-dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #6F4E37;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.control-dropdown a:hover {
    background-color: rgba(111, 78, 55, 0.1);
    color: #4A3426;
}

.hidden-select {
    display: none;
}

/* Contenedor 3: Menú 2 - Navegación Principal */
.main-nav {
    width: auto;
    background: #ffffff;
    padding: 0.4rem;
    margin: 0.4rem 0;
    position: relative;
    height: auto;
}

.main-nav-container {
    max-width: none;
    margin: 0.4rem;
    padding: 0.4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    padding: 0.4rem 1rem;
    border-radius: 10px;
}

.nav-links a:hover {
    color: #4A3426;
    background-color: rgba(111, 78, 55, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 10px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Estilos para Dropdowns del Menú Principal */
.nav-links li.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    padding-top: 5px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    margin-top: 0;
    transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out 0.1s;
    pointer-events: none;
}

/* Área de transición invisible en la parte superior del dropdown */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
}

/* Mostrar dropdown cuando se hace hover en el li padre */
.nav-links li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

/* Mantener visible cuando el cursor está sobre el dropdown */
.nav-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown li {
    margin: 0;
    padding: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #6F4E37;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background-color: rgba(111, 78, 55, 0.1);
    color: #4A3426;
}

.nav-dropdown .dropdown-arrow {
    display: none;
}

.nav-links a:hover .dropdown-arrow {
    opacity: 1;
}

/* Menú Móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    transition: 0.3s;
    border-radius: 2px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../img/imagen_vip_index.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 2rem;
    margin-top: 135px;
}

/* HERO SECTION - ID específico para evitar colapso visual */
#hero-section {
    position: relative;
    /* Altura automática para que crezca con el formulario */
    height: auto;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* Imagen de fondo con overlay oscuro para legibilidad del texto blanco */
    /* USANDO VARIABLES CSS para permitir personalización limpia desde HTML/PHP */
    --hero-overlay-opacity: 0.5;
    --hero-bg-image: url('../img/imagen_vip_index.png');
    --hero-bg-pos: center;
    --hero-bg-size: cover;

    background: linear-gradient(rgba(0, 0, 0, var(--hero-overlay-opacity)), rgba(0, 0, 0, var(--hero-overlay-opacity))),
        var(--hero-bg-image) var(--hero-bg-pos) / var(--hero-bg-size) no-repeat;
    background-attachment: fixed;

    /* REFACTOR DE ESPACIADO: Aumentamos el padding inferior del CONTENEDOR PRINCIPAL (#hero-section)
       en lugar del contenido interno. 15rem (240px) asegura espacio suficiente para el margin-top: -70px
       de la siguiente sección sin que toque el formulario.
       MODIFICACION: Usuario pide espacio, no overlap. Revertimos padding excesivo. */
    padding: 1rem 1rem 4rem 1rem;

    margin-top: 135px;
    width: 100%;
    overflow: visible;
    /* Z-index eliminado para permitir interleaving de hijos con el contenido siguiente */
}

/* Permitir que el estilo inline sobrescriba el background (Legacy support - se puede eliminar después de la refactorización completa) */
#hero-section[style*="background"] {
    background-attachment: fixed !important;
}

.hero-content {
    position: relative;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    /* Z-index aumentado para estar por encima del hero-section */
    z-index: 20;
    padding-top: 2rem;
    padding-bottom: 4rem;
    /* Restaurado a valor normal */
    min-height: 100%;
    /* Eliminar transformaciones conflictivas */
}

/* Ajuste para hero sin formulario en páginas hijas */
#hero-section .hero-content:not(:has(.hero-form-box)) {
    padding-bottom: 2rem;
    justify-content: center;
}

/* H1 Principal del Hero Section */
#hero-section h1 {
    font-family: inherit;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    /* Z-index alto para estar visible sobre el hero-section y hero-content, pero por debajo del formulario */
    z-index: 30;
    position: relative;
    /* Asegurar que el H1 tenga espacio y empuje el formulario */
    display: block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero sin formulario - Para páginas hijas (MASTER LAYOUT) */
/* Cuando el hero NO contiene formulario, ajustar espaciado */
#hero-section:not(:has(.hero-form-box)) h1 {
    margin-bottom: 2rem;
}

#hero-section:not(:has(.hero-form-box)) .hero-content {
    padding-bottom: 2rem;
    justify-content: center;
}

/* Clase helper para identificar hero sin formulario */
#hero-section.hero-no-form {
    height: 10vh;
    min-height: 150px;
    background-position: center bottom !important;
    background-attachment: scroll !important;
    --hero-bg-pos: center bottom !important;
}

.hero-no-form .hero-content {
    padding-bottom: 2rem !important;
    justify-content: center !important;
    height: 100%;
}

.hero-no-form h1 {
    margin-bottom: 0 !important;
}

.hero h1 {
    font-family: 'Lucida Calligraphy', 'Apple Chancery', 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-form-box {
    max-width: 1400px;
    width: 100%;
    margin: 1rem auto;
    padding: 2rem 2rem 3rem 2rem;
    background-color: rgba(15, 35, 65, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    box-sizing: border-box;
    /* Estilos base - se sobrescriben para #hero-section .hero-form-box */
    position: relative;
    z-index: 100;
}

/* MAIN CONTENT - Altura mínima para evitar colapso visual */
#dynamic-content,
#transfer-rates-app,
.main-content,
.main-content-reservacion {
    position: relative;
    min-height: 500px;
    z-index: 1;
    background: var(--bg-light);

    /* ESPACIADO ESTÁNDAR PARA PÁGINAS SIN HERO */
    /* El margin-top compensa el header fijo */
    margin-top: var(--header-height) !important;
    /* El padding-top da los 30px de aire que pide el usuario */
    padding-top: var(--header-gap) !important;
}

/* Si la página tiene un HERO, anulamos el espaciado superior del dynamic-content 
   porque el Hero ya se encarga de bajar el contenido */
body:has(#hero-section) #dynamic-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fallback para navegadores antiguos: si el hero y el main son hermanos directos */
#hero-section+#dynamic-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* El margen negativo solo debe aplicar en el Home (donde hay Hero) para el efecto de solapamiento */
/* El margen negativo solo debe aplicar en el Home (donde hay Hero) para el efecto de solapamiento */
#hero-section+#dynamic-content .dynamic-content-block-1,
body:has(#hero-section) .dynamic-content-block-1 {
    margin-top: 50px;
    /* Changed from negative to positive to add space */
}

/* FMV Formulario - Posicionamiento RELATIVE (FLOW) dentro del Hero (All Devices) */
/* Esto soluciona los problemas de superposición permitiendo que el contenedor padre crezca */
#hero-section .hero-form-box {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 1001;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
}

/* Sobrescribir estilo para formularios dentro del bloque dinámico si fuera necesario */
.dynamic-content-block-1 .hero-form-box {
    margin-top: 0 !important;
    margin-bottom: 4rem !important;
    z-index: 200 !important;
    position: relative !important;
}

/* Sobrescribir estilo para formularios dentro del bloque dinámico si fuera necesario */
.dynamic-content-block-1 .hero-form-box {
    margin-top: 0 !important;
    margin-bottom: 4rem !important;
    z-index: 200 !important;
    position: relative !important;
}

/* Si existe un #hero-section, el formulario se posiciona dentro del hero-content */
/* Si existe un #hero-section, el formulario YA NO se posiciona dentro del hero-content (Legacy Removed) */
/* La regla anterior de position:absolute ha sido eliminada en favor del flujo normal */

.hero-form-box h2 {
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-size: 1.5em;
}

.quote-form {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
    margin: 0 0 1.1rem 0;
    padding: 0;
    box-sizing: border-box;
}

.form-row-line1 {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 0 0 1.1rem 0;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* Permitir wrap en pantallas pequeñas */
}

.form-row-line2 {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* Permitir wrap en pantallas pequeñas */
}

.form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-group.flex-1 {
    flex: 1 1 0;
    min-width: 140px;
}

.form-group.flex-2 {
    flex: 2 1 0;
    min-width: 180px;
}

.form-group.flex-3 {
    flex: 3 1 0;
    min-width: 200px;
}

.form-group.flex-cta {
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    min-width: 160px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#fechaLlegada-container {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#fechaLlegada-container.hidden {
    display: none;
    opacity: 0;
}

#fechaRegreso-container {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#fechaRegreso-container.visible {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

/* Field inversion wrappers - smooth transitions */
#ubicacionRecogida-wrapper,
#destino-wrapper {
    width: 100%;
    transition: opacity 0.3s ease;
}

#ubicacionRecogida-wrapper select,
#ubicacionRecogida-wrapper input,
#destino-wrapper select,
#destino-wrapper input {
    width: 100%;
    transition: all 0.3s ease;
}

.form-group>label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1rem;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Custom Select Styles - Restored */
.vip-custom-select-container {
    position: relative;
    width: 100%;
}

.vip-custom-select-container.open {
    z-index: 50;
    /* Asegurar que el dropdown abierto esté sobre otros elementos del formulario */
}

.vip-custom-select-trigger {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    height: 48px;
    box-sizing: border-box;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vip-custom-select-trigger:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-dark);
    transition: transform 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.vip-custom-select-container.open .vip-custom-select-trigger:after {
    transform: rotate(180deg);
}

.vip-custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 250px;
    overflow-y: auto;
}

.vip-custom-select-container.open .vip-custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vip-custom-select-option {
    padding: 12px 15px;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.vip-custom-select-option:hover {
    background: #f8fafc;
    color: #1a73e8;
    padding-left: 20px;
}

.vip-custom-select-option.selected {
    background: #1a73e8;
    color: #fff;
}

.vip-custom-select-container.disabled .vip-custom-select-trigger,
.hidden-select:disabled+.vip-custom-select-trigger {
    background: rgba(200, 200, 200, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Estilo específico para el buscador Premium */
.vip-search-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236F4E37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 40px !important;
}

.vip-search-input:focus {
    background-color: #fff !important;
    border-color: #D4AF37 !important;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Radio Group - Segmented Control Style */
.radio-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    /* Match inputs background */
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 48px;
    /* Match inputs height */
    box-sizing: border-box;
}

.radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-group label {
    flex: 1;
    display: flex;
    /* Centering */
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-dark);
    /* Dark text for unselected */
    font-size: 0.9rem;
    /* Slightly larger text */
    font-weight: 500;
    margin: 0;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    height: 100%;
}

.radio-group input[type="radio"]:checked+label {
    background: #6F4E37;
    /* Solid brown */
    color: #FFFFFF;
    /* White text */
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.radio-group label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.radio-group input[type="radio"]:checked+label:hover {
    background: rgba(111, 78, 55, 1);
}

.radio-group input[type="radio"]:focus+label {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #6F4E37;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 78, 55, 0.5);
    background: #8B6F4F;
}

/* CONFIANZA SECTION */
.confianza {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.confianza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.confianza-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.confianza-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.confianza-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confianza-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* FLOTA SECTION */
.flota {
    padding: 4rem 2rem;
    background: white;
}

.flota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.flota-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.flota-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.flota-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.flota-card-content {
    padding: 1.5rem;
}

.flota-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.flota-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* TESTIMONIOS SECTION */
.testimonios {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonio-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonio-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.testimonio-author {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonio-location {
    color: #888;
    font-size: 0.9rem;
}

/* FOOTER - Arquitectura de 3 Filas */
footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #FFFFFF;
}

/* Contact Bar V2 - Barra de Contacto Modular */
.contact-bar-v2 {
    background: #1e375a;
    /* Azul Marino VIP */
    padding: 2.5rem 0;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
}

.contact-bar-v2-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.contact-bar-v2-col {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
}

/* Columna 1: Logo */
.contact-bar-v2-logo-col {
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-bar-v2-logo,
.logo-footer {
    width: 220px;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Blanqueado de logo con CSS */
}

/* Títulos de Sección */
.contact-bar-v2-col h5 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
}

/* Listas de Contacto y Horarios */
.contact-bar-v2-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-bar-v2-col ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.contact-bar-v2-col ul li:last-child {
    margin-bottom: 0;
}

/* Íconos de Imagen Optimizados */
.contact-bar-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.contact-bar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Texto de Contacto */
.contact-bar-v2-col p {
    margin: 0 0 0.5rem 0;
    padding: 0;
    color: #FFFFFF;
    font-size: 0.7rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Agente Virtual - Estilo Marrón/Café */
.contact-bar-v2-agent-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6F4E37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.01rem;
    transition: opacity 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-bar-v2-agent-link:hover {
    opacity: 0.8;
    color: #500202;
}

.contact-bar-v2-agent-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 4px;
    box-sizing: border-box;
}

.contact-bar-v2-agent-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.centrar-agente {
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.centrar-agente h5 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    text-align: left;
}

.centrar-agente .contact-bar-v2-agent-icon {
    margin: 0 auto;
    display: block;
}

/* Responsive Contact Bar V2 */
@media (max-width: 1024px) {
    .contact-bar-v2-container {
        padding: 0 2rem;
    }

    .contact-bar-v2-col {
        flex: 1 1 calc(50% - 1rem);
        margin-bottom: 1.5rem;
    }

    .contact-bar-v2-col:last-child {
        margin-bottom: 0;
    }

    .centrar-agente {
        align-items: flex-start;
    }

    .centrar-agente .contact-bar-v2-agent-icon {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .contact-bar-v2-container {
        padding: 0 1.5rem;
    }

    .contact-bar-v2-col {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }

    .contact-bar-v2-col:last-child {
        margin-bottom: 0;
    }

    .contact-bar-v2-logo,
    .logo-footer {
        width: 180px;
    }

    .centrar-agente {
        align-items: flex-start;
    }

    .centrar-agente .contact-bar-v2-agent-icon {
        margin: 0;
    }
}

.footer-top-col a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-top-col a:hover {
    opacity: 0.8;
}

/* Fila Media - Footer Middle (Alineación Perfecta con Contact Bar V2) */
.footer-middle {
    background: #737373;
    padding: 3rem 0;
}

.footer-middle-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.footer-middle-col {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
}

.footer-middle-col h5 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
}

.footer-middle-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #D0D0D0;
    font-size: 0.9rem;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-middle-col ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-middle-col ul li:last-child {
    margin-bottom: 0;
}

.footer-middle-col a {
    color: #D0D0D0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-middle-col a:hover {
    color: #500202;
}

/* Newsletter - Máxima Conversión */
.footer-middle-newsletter h5 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
}

.footer-middle-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-middle-newsletter-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: #FFFFFF;
    color: #333333;
    font-size: 0.9rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

.footer-middle-newsletter-form input::placeholder {
    color: #999999;
}

.footer-middle-newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #6F4E37;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-middle-newsletter-form button:hover {
    background: #5A3E2A;
}

/* Fila Inferior - Copyright y Redes Sociales */
.footer-bottom {
    background: #500202;
    padding: 1.25rem 0;
    width: 100%;
}

.footer-bottom-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-copyright {
    color: #FFFFFF;
    font-size: 0.85rem;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-bottom-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-social-text {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

.footer-bottom-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-social-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.footer-bottom-social-icon:hover {
    opacity: 0.8;
}

.footer-bottom-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    image-rendering: crisp-edges;
}

/* Responsive Footer Bottom */
@media (max-width: 1024px) {
    .footer-bottom-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom-container {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-copyright {
        order: 2;
    }

    .footer-bottom-social {
        order: 1;
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Responsive Footer Middle */
@media (max-width: 1024px) {
    .footer-middle-container {
        padding: 0 2rem;
    }

    .footer-middle-col {
        flex: 1 1 calc(50% - 1rem);
        margin-bottom: 1.5rem;
    }

    .footer-middle-col:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .footer-middle-container {
        padding: 0 1.5rem;
    }

    .footer-middle-col {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }

    .footer-middle-col:last-child {
        margin-bottom: 0;
    }

    .footer-middle {
        padding: 2rem 0;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .header-top-container,
    .main-nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }

    .menu-options {
        gap: 0.75rem;
    }

    .control-text {
        display: none;
    }

    .control-item {
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 768px) {

    /* Header Container */
    .header-top-row {
        padding: 0.3rem 0;
        position: relative;
    }

    .header-top-container {
        padding: 0 1rem;
        position: relative;
    }

    /* Logo */
    .logo-container {
        height: 60px !important;
        max-height: 60px !important;
        flex-shrink: 0;
        overflow: hidden;
    }

    .logo-img {
        height: 60px !important;
        max-width: 120px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* Menus Right Container */
    .menus-right-container {
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        padding-right: 3rem;
        /* Espacio para el toggle móvil */
        z-index: 1001;
        /* Asegurar que los dropdowns estén por encima del contenido */
    }

    /* Menú 1 - Menu Options (Currency, Language, Account) */
    .menu-options {
        display: flex;
        gap: 0.5rem;
        height: auto;
        padding: 0.25rem 0;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .control-item {
        padding: 0.35rem 0.5rem;
        min-width: auto;
        position: relative;
        z-index: 1002;
        /* Asegurar que los control items y sus dropdowns estén por encima */
    }

    .control-item.has-dropdown {
        position: relative;
        z-index: 1002;
    }

    .control-icon {
        height: 18px;
        width: 18px;
    }

    .control-text {
        display: none;
    }

    .control-item .dropdown-arrow {
        display: none;
    }

    /* Control Dropdowns en Móvil */
    .control-item.has-dropdown {
        position: relative;
    }

    .control-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        bottom: auto;
        transform: none;
        width: auto;
        min-width: 180px;
        max-width: calc(100vw - 2rem);
        margin-top: 0.5rem;
        margin-left: 0;
        margin-right: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(111, 78, 55, 0.2);
        border-radius: 8px;
        background: #FFFFFF;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1002;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateY(-10px);
    }

    /* Ajustar posición si el dropdown se sale por la derecha */
    .control-item.has-dropdown:last-child .control-dropdown,
    .control-item.has-dropdown:nth-last-child(2) .control-dropdown {
        right: 0;
        left: auto;
    }

    /* Ajustar posición si el dropdown se sale por la izquierda */
    .control-item.has-dropdown:first-child .control-dropdown {
        left: 0;
        right: auto;
    }

    .control-item.has-dropdown.active .control-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .control-dropdown li {
        padding: 0;
        border-bottom: 1px solid rgba(111, 78, 55, 0.1);
    }

    .control-dropdown li:last-child {
        border-bottom: none;
    }

    .control-dropdown a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #6F4E37;
        display: block;
    }

    /* Menú 2 - Main Nav */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding: 0;
        margin: 0;
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100%;
        background: #FFFFFF;
        padding: 0;
        margin: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        border: none;
        font-size: 2rem;
        color: #2C3E50;
        cursor: pointer;
        z-index: 1004;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }

    .mobile-menu-close:hover {
        background-color: rgba(111, 78, 55, 0.1);
        color: #6F4E37;
    }

    /* Nav Links */
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links li:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: space-between;
        font-size: 1rem;
        color: #2C3E50;
        border-radius: 0;
    }

    .nav-links a:hover {
        background-color: rgba(111, 78, 55, 0.08);
        color: #6F4E37;
    }

    /* Dropdowns en Móvil - Menú Principal */
    .nav-dropdown {
        position: static;
        display: none;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(111, 78, 55, 0.1);
        padding: 0.5rem 0;
        background: rgba(111, 78, 55, 0.03);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li.has-dropdown.active .nav-dropdown {
        display: block;
    }

    .nav-dropdown li {
        padding: 0;
        border-bottom: 1px solid rgba(111, 78, 55, 0.05);
    }

    .nav-dropdown li:last-child {
        border-bottom: none;
    }

    .nav-dropdown a {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem;
        font-size: 0.9rem;
        color: #6F4E37;
        display: block;
    }

    .nav-dropdown a:hover {
        background-color: rgba(111, 78, 55, 0.1);
        color: #4A3426;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
        background: transparent;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Header shrink en móvil */
    header.shrink .logo-container {
        height: 50px !important;
        max-height: 50px !important;
    }

    header.shrink .logo-img {
        height: 50px !important;
        max-width: 100px !important;
        width: auto !important;
        max-height: 50px !important;
        object-fit: contain !important;
    }

    header.shrink .menus-right-container {
        height: auto;
    }

    .hero {
        background-attachment: scroll;
    }

    #hero-section {
        min-height: 500px;
        height: auto;
        background-attachment: scroll;
        padding: 1.5rem;
    }

    #hero-section h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    /* Hero sin formulario en móvil */
    .hero-no-form h1 {
        margin-bottom: 1rem !important;
    }

    .hero-no-form .hero-content {
        padding-bottom: 1.5rem !important;
        justify-content: center !important;
    }

    .hero-form-box {
        padding: 1.5rem 1.5rem 3rem 1.5rem;
    }

    #hero-section .hero-form-box {
        /* FIX: Changed from absolute to relative to prevent overlap with dynamic content */
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: calc(100% - 3rem);
        max-width: 95%;
        /* Z-INDEX CRÍTICO mantenido - por encima del header */
        z-index: 1001;
        margin: 2rem auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    /* Asegurar que el formulario en hero sea responsive en tablet */
    #hero-section .hero-form-box .form-row-line1 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    #hero-section .hero-form-box .form-row-line1 .form-group {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    #hero-section .hero-form-box .form-row-line2 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    #hero-section .hero-form-box .form-row-line2 .form-group.flex-1 {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    #hero-section .hero-form-box .form-group.flex-cta {
        flex: 1 1 100%;
        width: 100%;
    }

    #hero-section .hero-form-box .btn-primary {
        width: 100%;
    }

    #hero-section .hero-form-box .radio-group {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        /* FORCE single line */
        gap: 0 !important;
        width: 100% !important;
    }

    #hero-section .hero-form-box .radio-group label {
        padding: 0.6rem 0.4rem !important;
        /* Slightly tighter padding */
        font-size: 0.85rem !important;
        flex: 1 1 auto;
        min-width: 0 !important;
        /* Allow shrinking */
        white-space: nowrap !important;
    }

    #dynamic-content,
    #transfer-rates-app,
    .main-content,
    .main-content-reservacion {
        /* Compensación ajustada para móvil (Header móvil suele ser más pequeño) */
        margin-top: 100px !important;
        padding-top: 20px !important;
    }

    #hero-section+#dynamic-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Ajuste de solapamiento en móvil */
    body:has(#hero-section) .dynamic-content-block-1,
    #hero-section+#dynamic-content .dynamic-content-block-1 {
        margin-top: -60px;
    }

    #hero-section h1 {
        /* Margin-bottom aumentado en móvil para empujar el formulario */
        margin-bottom: 2.5rem;
        padding-bottom: 0.5rem;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    #hero-section .hero-form-box {
        /* En móvil pequeño, ajustar el top para que respete el espacio del H1 */
        /* padding-top (2rem) + altura H1 móvil (~3rem) + margin-bottom (2.5rem) + padding-bottom (0.5rem) + espacio (1rem) = ~9rem */
        top: 9rem;
        width: calc(100% - 2rem) !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }

    /* Asegurar que el formulario en hero sea completamente responsive en móvil pequeño */


    .section-title {
        font-size: 2rem;
    }
}

/* RESPONSIVE FORMULARIO - Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 601px) {
    .hero-form-box {
        max-width: 95%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    #hero-section .hero-form-box {
        width: calc(100% - 3rem);
        max-width: 95%;
        /* Ensure it stays relative */
        position: relative;
        top: auto;
        margin: 2rem auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    /* Formulario en hero - tablet */
    #hero-section .hero-form-box .form-row-line1 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    #hero-section .hero-form-box .form-row-line1 .form-group {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    #hero-section .hero-form-box .form-row-line2 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    #hero-section .hero-form-box .form-row-line2 .form-group.flex-1 {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    #hero-section .hero-form-box .form-group.flex-cta {
        flex: 1 1 100%;
        width: 100%;
    }

    #hero-section .hero-form-box .btn-primary {
        width: 100%;
    }

    /* Estilos generales para formularios en contenido dinámico */
    .form-row-line1 {
        flex-wrap: wrap;
    }

    .form-row-line1 .form-group {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    .form-row-line2 {
        flex-wrap: wrap;
    }

    .form-row-line2 .form-group.flex-1 {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    .form-group.flex-cta {
        flex: 1 1 100%;
        width: 100%;
    }

    .dcb1-form-section .hero-form-box {
        max-width: 95%;
    }
}

/* RESPONSIVE FORMULARIO - Móvil (<600px) */
@media (max-width: 600px) {
    .hero-form-box {
        max-width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    #hero-section {
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        padding-bottom: 4rem !important;
        /* Añadir espacio al final del contenedor */
        overflow: visible !important;
    }

    #hero-section .hero-form-box {
        width: calc(100% - 2rem) !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        top: 0 !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .quote-form {
        gap: 1rem;
    }

    .form-row,
    .form-row-line1,
    .form-row-line2 {
        flex-direction: column !important;
        width: 100% !important;
    }

    /* Estilos específicos para formulario en hero - móvil pequeño */


    .form-group {
        width: 100% !important;
        min-width: 100% !important;
    }



    .form-group.flex-1,
    .form-group.flex-2,
    .form-group.flex-3,
    .form-group.flex-cta {
        flex: 1 1 100% !important;
        width: 100% !important;
    }



    .form-group.flex-cta {
        display: flex;
        align-items: stretch;
    }

    .btn-primary {
        width: 100% !important;
        min-width: 100% !important;
    }



    /* FIX: Force single line for radio group on mobile hero */
    #hero-section .hero-form-box .radio-group {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
    }

    #hero-section .hero-form-box .radio-group label {
        padding: 0.6rem 0.2rem !important;
        font-size: 0.8rem !important;
        flex: 1 1 auto;
        min-width: 0 !important;
        white-space: nowrap !important;
    }



    /* Asegurar responsive en páginas hijas también */
    .dcb1-form-section .hero-form-box {
        max-width: 100%;
        padding: 1.5rem;
    }

    .dcb1-form-section .form-row,
    .dcb1-form-section .form-row-line1,
    .dcb1-form-section .form-row-line2 {
        flex-direction: column !important;
        width: 100% !important;
    }

    .dcb1-form-section .form-group {
        width: 100% !important;
        min-width: 100% !important;
    }

    .dcb1-form-section .form-group.flex-1,
    .dcb1-form-section .form-group.flex-2,
    .dcb1-form-section .form-group.flex-3,
    .dcb1-form-section .form-group.flex-cta {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    .dcb1-form-section .btn-primary {
        width: 100% !important;
        min-width: 100% !important;
    }

    .dcb1-form-section .radio-group {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}

/* Asistente IA Flotante y fijo abajo a la derecha */
.float-IA {
    position: fixed;
    bottom: 100px;
    right: 100px;
    display: block;
    width: 200px;
    height: 200px;
    background-color: #4843d2;
    color: white;
    border-radius: 10%;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.float-IA img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.float-IA:hover {
    background-color: #3a36b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================ */
/* BLOQUE DE CONTENIDO DINÁMICO 1 - Estilos Modulares */
/* MASTER LAYOUT para páginas hijas */
/* ============================================ */

/* Contenedor Principal */
.dynamic-content-block-1 {
    width: 100%;
    padding: 0 2rem 2rem 2rem;
    background: var(--bg-light);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin-top: 0;
    /* Por defecto sin margen, el contenedor padre maneja el gap */
}

/* Form Container for Child Pages - Replicates Hero Glass Effect */
.dcb1-form-section {
    position: relative;
    padding: 4rem 1rem;
    margin: 3rem auto;
    width: 100%;
    /* Create a dark backdrop so the transparent form looks glassy, just like in hero */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/imagen_vip_index.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dcb1-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* 1. HEADER - Título y Descripción */
.dcb1-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 0;
    padding-top: 0;
}

.dcb1-title {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.2;
    padding-top: 0;
}

.dcb1-description {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. GRID DE TARJETAS - 4 Columnas - Alineado con formulario (1000px) */
.dcb1-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 0.3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.dcb1-card {
    /* Efecto Crystal/Glassmorphism */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.dcb1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8) 50%,
            transparent);
    z-index: 1;
}

.dcb1-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
}

.dcb1-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8), rgba(230, 230, 230, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dcb1-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%);
    pointer-events: none;
}

.dcb1-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dcb1-card:hover .dcb1-card-image img {
    transform: scale(1.08);
}

.dcb1-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.dcb1-card-title {
    width: 100%;
    padding: 1rem 1.5rem;
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    /* Gradiente exacto de reservacion.css */
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.6));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: block;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
}

.dcb1-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.dcb1-card-specs li {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #444;
    /* Texto más oscuro para mejor legibilidad */
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: flex-start;
    /* Alineación izquierda */
    align-items: center;
    gap: 0.75rem;
    /* Espacio entre icono y texto */
    line-height: 1.4;
    text-align: left;
}

.spec-label {
    font-weight: 500;
    color: #666;
}

.spec-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* Rating de Estrellas - Color Dorado/Amarillo */
.dcb1-card-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
    justify-content: center;
}

.dcb1-card-rating .star {
    font-size: 1.1rem;
    color: #E0E0E0;
    transition: color 0.2s ease, transform 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dcb1-card-rating .star.filled {
    color: var(--accent-color);
}

.dcb1-card:hover .dcb1-card-rating .star.filled {
    transform: scale(1.1);
}

/* Botón Book Now - Color Marrón/Café */
.dcb1-card-button {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.dcb1-card-button:hover {
    background: #6F4E37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.dcb1-card-button:active {
    transform: translateY(0);
}

/* 3. FORMULARIO DE COTIZACIÓN */
/* 3. FORMULARIO DE COTIZACIÓN - ESTÁNDAR GLOBAL */
.dynamic-content-block-1 .hero-form-box {
    max-width: 1400px;
    /* Unificado con Home */
    margin: 1rem auto 1rem auto !important;
    position: relative !important;
    /* Se elimina bg-color local para usar el global Dark Glassmorphism */
    z-index: 200 !important;
}

.dcb1-form-section {
    margin-bottom: 3rem;
    padding: 0;
    position: relative;
    z-index: 10;
}

.dcb1-promociones-section {
    margin-bottom: 1rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Legacy overrides removed to ensure consistency */
.dcb1-form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.dcb1-form-box {
    /* Eliminados estilos conflictivos que oscurecían el formulario innecesariamente */
    position: relative;
}

/* 4. SECCIÓN SEO */
.dcb1-seo-section {
    margin-top: 1rem;
    padding: 3rem 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dcb1-seo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    /* Estirar columnas para igualar altura */
    gap: 3rem;
}

.dcb1-seo-image {
    flex: 1;
    max-width: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dcb1-seo-image img {
    width: 100%;
    height: 100%;
    /* Ocupar toda la altura del contenedor estirado */
    /* max-height previoulsy removed */
    object-fit: cover;
    display: block;
}

.dcb1-seo-text {
    flex: 1;
}

.dcb1-seo-content p {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.dcb1-seo-content p:last-child {
    margin-bottom: 0;
}

/* --- New Styles to Replace Inline CSS in Index --- */
.dcb1-loading-reviews {
    text-align: center;
    padding: 2rem;
    opacity: 0.6;
    font-style: italic;
    color: var(--text-dark);
}

.dcb1-seo-text h3 {
    color: #1e375a;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    /* Reducido para intentar que quede en una línea */
    line-height: 1.2;
}

.dcb1-seo-cta-container {
    margin-top: 2rem;
    text-align: left;
}

.dcb1-seo-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2.5rem;
    background: #6F4E37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.dcb1-seo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 78, 55, 0.5);
    background: #8B6F4F;
    color: white;
}

/* SEO Section Responsive */
@media (max-width: 968px) {
    .dcb1-seo-content {
        flex-direction: column;
        text-align: center;
    }

    .dcb1-seo-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .dcb1-seo-content p {
        text-align: center;
        /* Opcional: mantener justify si se prefiere */
    }
}

/* RESPONSIVE - BLOQUE DE CONTENIDO DINÁMICO 1 */
@media (max-width: 1200px) {
    .dcb1-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .dynamic-content-block-1 {
        padding: 0 1.5rem 3rem 1.5rem;
        margin-top: 2rem;
    }

    .dcb1-header {
        margin-bottom: 3rem;
    }

    .dcb1-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .dcb1-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .dcb1-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .dcb1-card-image {
        height: 160px;
    }

    .dcb1-form-section {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }

    /* Asegurar que el formulario en páginas hijas sea responsive */
    .dcb1-form-section .hero-form-box {
        max-width: 100%;
        padding: 1.5rem;
    }

    .dcb1-form-section .form-row,
    .dcb1-form-section .form-row-line1,
    .dcb1-form-section .form-row-line2 {
        flex-direction: column;
        width: 100%;
    }

    .dcb1-form-section .form-group {
        width: 100%;
        min-width: 100%;
    }

    .dcb1-form-section .form-group.flex-1,
    .dcb1-form-section .form-group.flex-2,
    .dcb1-form-section .form-group.flex-3,
    .dcb1-form-section .form-group.flex-cta {
        flex: 1 1 100%;
        width: 100%;
    }

    .dcb1-form-section .btn-primary {
        width: 100%;
        min-width: 100%;
    }

    .dcb1-form-section .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dcb1-seo-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .dcb1-seo-content p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .dynamic-content-block-1 {
        padding: 2rem 1rem;
    }

    .dcb1-card-content {
        padding: 0.875rem;
    }

    .dcb1-card-title {
        font-size: 1rem;
    }

    .dcb1-card-specs li {
        font-size: 0.8rem;
    }

    .dcb1-card-rating .star {
        font-size: 1rem;
    }

    .dcb1-card-button {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }

    .dcb1-card-image {
        height: 140px;
    }
}

/* Footer Agent Utilities */
.agent-chat-link {
    margin-top: 0.5rem;
    display: block;
}

.agent-message {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* =========================================
   ETAPA 7: ESTILOS CENTRALIZADOS PÁGINAS SERVICIOS (VIP TRANSFER, ETC)
   Restaurados tras la reversión accidental.
   ========================================= */

/* Layout General ZigZag */
.vip-split-section,
.vip-section-alt,
.vip-section-last {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.vip-section-alt {
    background: #f8f9fa;
    /* Gris muy claro para contraste */
}

.vip-section-last {
    padding-bottom: 8rem;
}

.vip-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

/* Modificador para invertir orden (Texto - Imagen vs Imagen - Texto) */
.vip-container-reverse {
    flex-direction: row-reverse;
}

/* Contenido de Texto */
.vip-content {
    flex: 1;
    max-width: 600px;
    padding: 1rem;
    text-align: left;
}

/* Área de Imagen */
.vip-image-area {
    flex: 1;
    height: 450px;
    /* Altura estandarizada */
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.vip-image-area:hover {
    transform: translateY(-5px);
}

.vip-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Clave para reencuadre */
    object-position: center;
    display: block;
}

/* Tipografía y Badges */
.vip-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color, #e53e3e);
    /* Rojo por defecto */
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vip-title {
    font-family: inherit;
    /* Sans-serif moderno */
    font-weight: 500;
    /* Fino/Profesional */
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a365d;
    /* Azul corporativo oscuro */
    margin-bottom: 0.5rem;
}

/* Títulos más grandes para el H1 principal */
.vip-split-section .vip-title {
    font-size: 3rem;
}

.vip-subtitle {
    display: block;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.vip-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* -----------------------------------------
   SECCIÓN INFO CARDS (FINAL)
   4 Tarjetas con iconos SVG y botón final
   ----------------------------------------- */
.vip-info-cards-section {
    padding: 6rem 2rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.vip-cards-grid-info {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vip-info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;

    /* Layout Grid: Header (Icon+Title) arriba, Texto abajo */
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1.25rem;
    row-gap: 1rem;
    /* Espacio entre el header y el texto */
    align-items: center;
}

.vip-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Iconos SVG */
.vip-info-card-icon {
    width: 56px;
    height: 56px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5;
    border-radius: 50%;
    color: #e53e3e;

    /* Grid Pos: Fila 1, Col 1 */
    grid-column: 1;
    grid-row: 1;
}

.vip-info-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.2;

    /* Grid Pos: Fila 1, Col 2 */
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.vip-info-card-text {
    font-size: 0.9rem;
    /* Reducido para SEO sutil */
    line-height: 1.5;
    color: #718096;

    /* Grid Pos: Fila 2, Spanning todo el ancho */
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
}

/* Ajuste específico para la CTA Card que no usa Grid */
.vip-info-card-cta.vip-info-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Tarjeta CTA Diferenciada */
.vip-info-card-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Botón Café Premium */
.vip-cta-btn-brown {
    background: #6F4E37;
    /* Café Cuero */
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.3);
}

.vip-cta-btn-brown:hover {
    background: #5D4037;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 78, 55, 0.4);
}

/* Responsive Styles para Páginas Hijas */
@media (max-width: 1024px) {
    .vip-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .vip-container-reverse {
        flex-direction: column;
        /* Anular reverse en mobile para mantener orden lógico: Imagen arriba o texto arriba según diseño, pero consistente */
    }

    .vip-content,
    .vip-image-area {
        max-width: 100%;
        text-align: center;
    }

    .vip-description {
        text-align: center;
        /* Opcional: o left */
    }

    .vip-cards-grid-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vip-title {
        font-size: 2rem;
    }

    .vip-split-section .vip-title {
        font-size: 2.2rem;
    }

    .vip-image-area {
        height: 300px;
    }

}

/* =========================================
   ETAPA 7: ESTILOS REQUEST TRANSFERS & CONFIRMACIÓN
   Restaurados: Simetría, Reencuadre y Layout
   ========================================= */

/* Simetría de Columnas (Igual altura) */
.reservation-layout {
    display: flex;
    /* Asegura layout flex */
    align-items: stretch !important;
    /* Forza misma altura */
    gap: 2rem;
    margin-top: 2rem;
}

.reservation-summary-column {
    flex: 1;
    /* Ocupa espacio proporcional */
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    /* Deja que stretch decida */
    min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
}

.reservation-forms-column {
    flex: 1.5;
    /* El formulario es un poco más ancho */
}

/* Ajustes de Sección de Resumen */
.reservation-summary-section,
.summary-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    overflow: hidden;
}

.summary-content {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 1.5rem;
}

.summary-group {
    margin-bottom: 1.5rem;
}

.summary-group:last-child {
    margin-bottom: 0 !important;
}

/* Reencuadre Dinámico de Imágenes (Banner Mode) */
.summary-image-container {
    height: 280px !important;
    padding-top: 5.5rem !important;
    /* Espacio para título overlay */
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Modo Foto de Servicio (Vertical reencuadrada a Horizontal) */
.summary-image-container.service-photo-mode {
    padding-top: 0 !important;
    height: 300px !important;
    background: #000 !important;
}

.summary-vehicle-image.is-service-photo {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center 40%;
    /* Punto de foco optimizado */
    transform: scale(1) !important;
    border-radius: 0;
}

/* Titulo del Resumen */
.summary-title {
    background: linear-gradient(to bottom, rgba(30, 55, 90, 0.95), rgba(30, 55, 90, 0.8)) !important;
    padding: 1.25rem 1.5rem !important;
    font-size: 1.2rem !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* =========================================
   ETAPA 7: ESTILOS FLATPICKR (Dark Glass)
   Theme Crystal Dark & Gold
   ========================================= */
.flatpickr-calendar {
    background: rgba(30, 55, 90, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    border-radius: 12px !important;
}

.flatpickr-day {
    color: #e2e8f0 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.today:hover,
.flatpickr-day:hover {
    background: #6F4E37 !important;
    /* Café Premium */
    border-color: #6F4E37 !important;
    color: #fff !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: rgba(0, 0, 0, 0.2) !important;
}

.flatpickr-weekdays {
    background: rgba(0, 0, 0, 0.1) !important;
}

span.flatpickr-weekday {
    color: #a0aec0 !important;
}

/* Responsive Request Transfers */
@media (max-width: 1024px) {
    .reservation-layout {
        flex-direction: column !important;
    }

    .reservation-summary-column {
        height: auto !important;
    }
}

/* =========================================
   ETAPA 7: ESTILOS TARJETAS DCB1 (FLOTA/UNIDADES)
   Restaurados: Cards Grid, Approval Box
   ========================================= */

.dcb1-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.dcb1-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dcb1-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    /* Prevent rendering glitches */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.dcb1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dcb1-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    padding: 1rem;
    background: #1e375a;
    /* Azul oscuro VIP */
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #1a2e4b;
}

.dcb1-card-image {
    height: 180px;
    background: #eee;
    overflow: hidden;
    position: relative;
}

.dcb1-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dcb1-card:hover .dcb1-card-image img {
    transform: scale(1.05);
}

.dcb1-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dcb1-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.dcb1-card-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.dcb1-card-specs li:last-child {
    margin-bottom: 0;
}

.dcb1-card-specs li svg {
    flex-shrink: 0;
}

/* Approval Box - The one the user mentioned */
.unit-approval-box {
    margin-top: auto;
    background: #f7fafc;
    /* Fondo suave solicitado */
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.unit-rating-stars {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.rating-number {
    font-weight: 700;
    color: #4a5568;
    margin-left: 0.5rem;
}

.unit-thumbs-up {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    color: #2c5282;
}

.approval-text {
    font-size: 0.9rem;
}

.verification-text {
    margin: 0;
    font-size: 0.8rem;
    color: #718096;
}

/* Responsive */
@media (max-width: 1200px) {
    .dcb1-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dcb1-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ETAPA 7: ESTILOS BANNER CTA FINAL (DCB1)
   Restaurados: Fondo Café, Texto Fino
   ========================================= */
.dcb1-final-cta-wrapper {
    width: 100%;
    margin-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.dcb1-final-cta-box {
    background-color: #6F4E37;
    /* Café VIP Premium */
    width: 100%;
    max-width: 1400px;
    border-radius: 12px;
    padding: 2.5rem 3rem;
    display: flex;
    /* Flex directo al box */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(111, 78, 55, 0.25);
    color: #ffffff;
}

/* Contenido interno re-alineado */
.dcb1-final-cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 3rem;
}

.dcb1-final-cta-info {
    flex: 1;
    text-align: left;
}

.dcb1-final-cta-info h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    font-family: inherit;
    font-weight: 500;
    /* Fino */
    letter-spacing: 0.5px;
}

.dcb1-final-cta-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 300;
    /* Fino */
    line-height: 1.6;
}

.dcb1-final-cta-info p strong {
    color: #FFD700;
    /* Dorado para resaltar (Combinación de color) */
    font-weight: 600;
}

.dcb1-final-cta-form {
    flex-shrink: 0;
}

.dcb1-final-cta-button {
    background-color: #ffffff;
    color: #6F4E37;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.dcb1-final-cta-button:hover {
    background-color: #fceeb5;
    /* Fondo crema/dorado suave al hover */
    color: #5D4037;
    transform: translateY(-3px) scale(1.02);
    /* Efecto "Over" más pronunciado */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive CTA */
@media (max-width: 968px) {
    .dcb1-final-cta-box {
        padding: 2rem 1.5rem;
    }

    .dcb1-final-cta-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .dcb1-final-cta-info {
        text-align: center;
    }

    .dcb1-final-cta-button {
        width: 100%;
        padding: 1rem;
    }
}

/* =========================================
   ETAPA 7: ESTILOS FAQ (ACORDEÓN) - CORRECCIÓN DEFINITIVA
   ========================================= */
.faq-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
    min-height: 60vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-title {
    font-size: 1.5rem;
    color: #1e375a;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.faq-details {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-details:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.faq-summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #2d3748;
    position: relative;
    list-style: none;
    /* Ocultar triángulo default */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:after {
    content: '+';
    font-size: 1.5rem;
    color: #6F4E37;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary:after {
    transform: rotate(45deg);
}

.faq-details[open] .faq-summary {
    background: #f7fafc;
    color: #1e375a;
    border-bottom: 1px solid #edf2f7;
}

.faq-answer {
    padding: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ETAPA 7: ESTILOS DOCUMENTOS LEGALES (Terms & Privacy)
   ========================================= */
.legal-section {
    padding: 4rem 1rem;
    background: #ffffff;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 2rem;
    font-style: italic;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #1e375a;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.legal-content strong {
    color: #2d3748;
}

.legal-highlight-box {
    background: #ebf8ff;
    border-left: 4px solid #3182ce;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.legal-highlight-box p {
    margin-bottom: 0;
    color: #2c5282;
}

/* =========================================
   ETAPA 7: ESTILOS FLOTA HORIZONTAL (Our Fleet)
   ========================================= */
.fleet-grid-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fleet-card-horizontal {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.fleet-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Imagen a la izquierda (40-45%) */
.fleet-card-image-wrapper {
    width: 45%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.fleet-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.95;
}

.fleet-card-horizontal:hover .fleet-card-image-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

/* Contenido a la derecha */
.fleet-card-content-wrapper {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.fleet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 1rem;
}

.fleet-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e375a;
    font-family: inherit;
    margin: 0;
    line-height: 1.2;
}

.fleet-card-price-badge {
    background: #d4af37;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fleet-card-specs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
}

.fleet-card-specs li svg {
    color: #718096;
}

.fleet-description-text {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.fleet-actions {
    margin-top: auto;
}

/* Responsive móvil: Stackear vertical */
@media (max-width: 900px) {
    .fleet-card-horizontal {
        flex-direction: column;
    }

    .fleet-card-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .fleet-card-content-wrapper {
        width: 100%;
        padding: 1.5rem;
    }

    .fleet-card-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   ETAPA 9: FIX ICONITOS REDES SOCIALES
   Eliminar fondo blanco de contenedores antiguos
   ========================================= */
.footer-bottom-social-icon {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 5px !important;
    /* Separación sutil */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
}

.footer-bottom-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom-social-icon img,
.footer-bottom-social-icon svg {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 35px !important;
    height: 35px !important;
}/* Reviews Modal Styles */
.reviews-sidebar .history-year-item { margin-bottom: 0.5rem; } .reviews-sidebar .year-button { display: flex; justify-content: space-between; width: 100%; background: none; border: none; padding: 8px 10px; font-size: 0.95rem; font-weight: 600; color: #2d3748; text-align: left; cursor: pointer; border-radius: 6px; transition: background 0.2s; } .reviews-sidebar .year-button:hover { background: #edf2f7; } .reviews-sidebar .year-button.active { background: #2c5282; color: white; } .reviews-sidebar .month-list { margin: 5px 0 10px 15px; padding-left: 10px; border-left: 2px solid #edf2f7; } .reviews-sidebar .month-button { display: block; width: 100%; background: none; border: none; padding: 5px 10px; font-size: 0.85rem; color: #4a5568; text-align: left; cursor: pointer; border-radius: 4px; margin-bottom: 2px; } .reviews-sidebar .month-button:hover { background: #f7fafc; color: #2b6cb0; } .reviews-sidebar .month-button.active { font-weight: 700; color: #2b6cb0; background: #ebf8ff; } .reviews-sidebar .count-badge { font-size: 0.7rem; background: #edf2f7; padding: 2px 6px; border-radius: 10px; color: #718096; } .year-button.active .count-badge { background: rgba(255, 255, 255, 0.2); color: white; }
