/* Estilos generales */
body {
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: #5d946d !important;
}

   .header-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .header-contact a {
            color: #333;
            text-decoration: none;
            margin-left: 15px;
            white-space: nowrap;
        }
        .header-contact a:hover {
            color: #6c757d;
        }
        .header-contact a i {
            margin-right: 5px;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .header-contact {
                align-items: center;
                margin-top: 10px;
            }
            .header-contact a {
                margin: 5px 0;
            }
            .navbar-toggler {
                display: none !important; /* Oculta el botón hamburguesa */
            }
            .navbar-collapse {
                display: block !important; /* Muestra siempre el menú */
            }
        }

        a.nav-link{
             font-weight: 600; /* Semi-bold para títulos */
        }
/* Estilos para el carrusel */
.carousel-item img {
    max-height: 500px;
    object-fit: cover;
}

/* Estilos para las tarjetas de productos */
.card {
    transition: transform 0.3s ease;
    text-align: center; /* Centra el texto dentro de la tarjeta */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Centrar imágenes de productos */
.card-img-top {
    width: auto;
    max-height: 150px;
    margin: 0 auto; /* Centra horizontalmente */
    display: block; /* Necesario para que funcione margin auto */
}





/* Botón flotante de WhatsApp (ahora a la derecha) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    left: auto;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 1.5s infinite;
}

.whatsapp-icon {
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    /* Ajustes para móviles */
    .card-img-top {
        max-height: 120px;
    }
}