* {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand {
    font-weight: bold;
}

.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f8f9fa;
}

.product-img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    color: #667eea;
    font-size: 3rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.btn-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-cart:hover {
    transform: scale(1.05);
}

.list-group-item.active {
    background-color: #667eea;
    border-color: #667eea;
}

.nav-tabs .nav-link {
    color: #667eea;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

/* Estilos para la pestaña Inicio */
.hero-inicio {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.hero-inicio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
    /* Esto es clave! */
}

.hero-inicio h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-inicio .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.info-card {
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 2rem;
}

.info-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
}

.horario-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.horario-card h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-dia {
    font-weight: 500;
}

.horario-hora {
    color: #667eea;
    font-weight: 500;
}

.destacados-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.destacados-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.beneficio-item {
    text-align: center;
    padding: 20px;
}

.beneficio-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.beneficio-item h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.beneficio-item p {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: white;
    font-size: 1.8rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

.btn-ver-productos {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    z-index: 100;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-ver-productos:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

@media (max-width: 768px) {
    .hero-inicio {
        padding: 40px 20px;
    }

    .hero-inicio h1 {
        font-size: 2rem;
    }
}

.logo{
    width: 60px;
    height: 30px;
    margin-right: 10px;
}