.envialo-simple-container iframe {
    width: 100% !important;
    border: none !important;
}
/* Estilo sutil para el enlace de WhatsApp para que resalte sin romper la armonía */
.text-success:hover {
    color: #198754 !important;
    text-decoration: underline !important;
}

/* Contenedor principal del menú */
    .mobile-nav {
        background: #fff;
        border-top: 1px solid #eee;
        padding: 5px 0 15px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }

    .nav-pills-container {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        position: relative;
    }

    .nav-item-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        flex: 1;
        transition: all 0.2s;
    }

    .nav-item-link i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .nav-item-link span {
        font-size: 0.65rem;
        font-weight: 500;
        text-transform: capitalize;
    }

    .nav-item-link.active {
        color: #3483fa; /* Azul Mercado Libre */
    }

    /* Botón Central Resaltado */
    .nav-item-link.center-item {
        position: relative;
        z-index: 10;
        margin-top: -25px; /* Lo sube para que sobresalga */
    }

    .center-icon-wrapper {
        background: #E91E63;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        border: 1px solid #eee;
        margin-bottom: 4px;
        color: #ffffff;
    }

    .center-icon-wrapper i {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    /* Ajustes para el Offcanvas */
    .offcanvas-menu .list-group-item {
        border: none;
        padding: 15px 20px;
        font-weight: 500;
        color: #333;
    }
    .menu-divider {
        height: 8px;
        background-color: #f5f5f5;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    /* OFCANVAS MENU */
    #menuvagesell .icono {
    font-size: 1.3rem;
    padding-right: 1rem;
    color: #cd096d;
}

/* Estado activo o hover */
.nav-item-link:hover, .nav-item-link.active {
    color: #E91E63;
} 

/* Animación manual de latido sutil */
@keyframes latido {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.animado-latido {
  animation: latido 1.5s infinite ease-in-out;
  display: inline-block; /* Necesario para que scale funcione */
}

/* Ajuste para que el contenido de la web no quede tapado por el menú */
body {
    padding-bottom: 90px;
}
.colormagenta {color: #E91E63;}
.x-small { font-size: 0.7rem; }
.ubuntu { font-family: "Ubuntu", sans-serif; }
.voyagesell{ font-family: "Ubuntu", sans-serif; }
/* --- Buscador --- */

.search-bar-container { transition: all 0.2s; }
.search-section:hover {
    background-color: #f7f7f7;
    border-radius: 50px 0 0 50px;
    padding: 7px;
}
.search-section2:hover {
    background-color: #f7f7f7;
    padding: 7px;
}

.btn-lupa-search {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
}
#txt-viajeros, #txt-fechas {font-size: 0.8rem;}
.text-nowrap { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Paneles Base --- */
.v-hidden { display: none !important; }
.floating-panel { position: absolute; top: 72px; z-index: 2000; overflow: hidden; }

/* Panel Calendario PC */
#panel-calendario {
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    padding: 15px;
}

/* Panel Viajeros PC */
#panel-viajeros {
    right: 0;
    width: 380px;
}

/* --- ESTILOS CALENDARIO (Optimización de Círculos) --- */
.calendar-wrapper { width: 100%; display: flex; justify-content: center; }

.flatpickr-calendar.inline {
    width: 100% !important;
    max-width: 630px !important;
    border: none !important;
    box-shadow: none !important;
}

/* Forzar Círculos Perfectos y evitar estiramiento */
.flatpickr-day {
    border: none !important;
    border-radius: 50% !important;
    margin: 2px auto; /* Centrado horizontal */
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important; /* Centrado vertical del número */
    flex-basis: 14.28%; /* 7 días exactos */
}

.flatpickr-day.today { border: none !important; color: #ff385c !important; font-weight: bold; }

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: #222 !important;
    color: #fff !important;
    border-radius: 50% !important; 
}

.flatpickr-day.inRange {
    background: #f7f7f7 !important;
    /* Ajuste de sombra para que el rango se vea continuo pero el día sea círculo */
    box-shadow: -15px 0 0 #f7f7f7, 15px 0 0 #f7f7f7 !important;
    border-radius: 0 !important;
    color: #222 !important;
}

.flatpickr-months { display: flex !important; align-items: center; }
.flatpickr-month { flex: 1 !important; height: 50px !important; }
.flatpickr-innerContainer { display: flex !important; }
.dayContainer { 
    min-width: 300px !important; 
    max-width: 300px !important; 
    border: none !important; 
}

/* --- AJUSTES MÓVIL (1 MES Y ANCHO TOTAL) --- */
@media (max-width: 991px) {
    .floating-panel {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-radius: 0 0 24px 24px !important;
        margin: 0 !important;
    }

    #panel-calendario { 
        padding: 10px !important; 
        width: 100% !important;
    }

    .flatpickr-calendar.inline {
        max-width: 100% !important;
    }

    .dayContainer {
        min-width: 100% !important;
        max-width: 100% !important;
    }
}