@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Paleta extraída del logo:
   Celeste claro: #7dd3f7
   Azul medio: #0ea5e9
   Azul profundo: #075985
   Negro: #0f172a
*/

.hero-gradient {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.card-zoom:hover img {
    transform: scale(1.1);
}

.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0ea5e9; /* Celeste del logo */
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.bg-scuba-deep {
    background-color: #075985;
}
.text-scuba-light {
    color: #7dd3f7;
}
.text-scuba-mid {
    color: #0ea5e9;
}
.border-scuba-mid {
    border-color: #0ea5e9;
}
/* Oculta scrollbar pero mantiene el scroll */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }