:root {
    --color-amarillo: #F2EA42;
    --color-verde: #079647;
    --color-negro: #231F20;
}
.container-fluid {
    min-height: calc(100vh - 250px); 
    display: flex; 
    flex-direction: column; 
    
}

.navbar {
    background-color: var(--color-verde) !important;
}

.navbar-brand, .nav-link {
    color:  white !important;
}

.btn-primary {
    background-color: var(--color-amarillo) !important;
    border-color: var(--color-amarillo) !important;
    color: var(--color-verde) !important;
}

.btn-primary:hover {
    background-color: var(--color-amarillo) !important;
    border-color: var(--color-amarillo) !important;
    color: var(--color-negro) !important;
}


body {
    background-color: white ;
    color: var(--color-negro);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-negro);
}

a {
    color: white;
}

a:hover {
    color: var(--color-amarillo);
}
.logo-img {
    max-height: 100px; 
    width: auto;
    object-fit: contain; 
}

.iconos-info {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.iconos-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}
.info-item {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.iconos-info i {
    font-size: 1.5em;
}
/* Redes sociales */
.social-icons {
    display: flex;
    gap: 15px;
    flex: 0 0 auto;
}

.social-btn {
    color: #4c7de1;
    font-size: 1.5em;
    text-decoration: none;
}

.social-btn:hover {
    color: #1745A1;
}

.social-btni {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   
    background-color: #E4405F;
    color: white; 
    font-size: 1.5em; 
    border-radius: 50%; 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

.social-btni:hover {
    background-color: #C13584; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transform: scale(1.05); 
}
.rounded-card {
    border-radius: 19px;
    padding: 10px; 
}
.card-body {
    padding: 15px; 
}

.product-title {
    color: var(--color-verde); 
}

.category-title {
    color: var(--color-negro);
}

.add-to-cart {
    background-color: var(--color-verde); 
    border: none; 
    color: white; 
    padding: 5px 10px; 
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #057d39; 
    color:white;
}

.add-to-cart i { 
    margin-left: 5px;
}
.section-title {

    font-size: 1,5rem; 
    font-weight: bold; 
    color: var(--color-negro); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border-bottom: 3px solid var(--color-verde); 
    padding-bottom: 10px;
    margin-bottom: 20px; 
}


@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }
    select {
        -webkit-appearance: none;
        -moz-appearance: none; 
        appearance: none;
        font-size: 18px;
        height: 50px;
        padding: 10px;
    }
}
.category-card {
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

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

.category-card .card-body {
    padding: 20px;
}

.category-card .card-title {
    font-size: 1.25rem;
}

.category-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
}
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    animation: bounceIn 1s ease;
}

.whatsapp-float {
    background-color: #25D366;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
    background-color: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 220px;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.7s ease both;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

