/* Hero Section */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/photos/banner tono azul.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Navigation Pills */
.nav-hover {
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.nav-hover:hover {
    color: var(--bs-primary);
    transform: translateY(-2px);
}

.nav-hover i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 4px;
    color: var(--bs-primary);
}

/* Sección de Características */
.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Animaciones */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

/* Carrusel mejorado */
.carousel-item img {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* .carousel-item .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--bs-primary) !important;
    font-weight: 600;
    padding: 8px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
} */

.carousel-item .btn {
    color: white !important;
    background: var(--bs-primary);
}

.carousel-item .btn:hover {
    background: var(--bs-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive Ajustes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-hover i {
        font-size: 1rem;
    }
    
    .nav-hover span {
        font-size: 0.9rem;
    }
}
