/* =========================================================
   ESTILOS GENERALES Y FUENTES
   ========================================================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* =========================================================
   CAMBIO DE COLOR TOTAL: DE AZUL CIELO A TURQUESA (#00B5BD)
   ========================================================= */

/* 1. TEXTOS (Logo, Títulos, Precios, Iconos) */
.text-primary, 
a.text-primary,
.nav-link.active,
.navbar-brand span.text-primary {
    color: #00B5BD !important;
}

/* 2. FONDOS (Banner "Explora el Mundo", Badges, Barra Newsletter) */
.bg-primary,
.badge.bg-primary {
    background-color: #00B5BD !important;
}

/* 3. BOTONES SÓLIDOS (Reservar, Buscar, Suscribirme) */
.btn-primary {
    background-color: #00B5BD !important;
    border-color: #00B5BD !important;
    color: white !important;
}

/* Efecto al pasar el mouse (un poco más oscuro) */
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #008e94 !important;
    border-color: #008e94 !important;
}

/* 4. BOTONES DE BORDE (Ver Catálogo, Ver Detalles) */
.btn-outline-primary {
    color: #00B5BD !important;
    border-color: #00B5BD !important;
}

.btn-outline-primary:hover {
    background-color: #00B5BD !important;
    color: white !important;
}

/* 5. ICONOS DE REDES SOCIALES (Footer) */
.social-icons .btn:hover {
    background-color: #00B5BD !important;
    border-color: #00B5BD !important;
}

/* =========================================================
   SECCIONES ESPECÍFICAS
   ========================================================= */

/* Hero Banner (Imagen de fondo del Inicio) */
.hero-banner {
    background-image: linear-gradient(rgba(5, 16, 54, 0.6), rgba(5, 16, 54, 0.6)), url('img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
}

/* Buscador Flotante */
.search-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-card {
    border-radius: 15px;
}

/* Efecto Hover en Tarjetas */
.hover-effect {
    transition: transform 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

/* Footer - Efecto hover en enlaces */
.hover-white:hover {
    color: #fff !important;
    transition: color 0.3s ease;
}

.social-icons .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}