/* Estilos personalizados */
/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1)),url('/static/uploads/hero_bg.png') center/100% 100% no-repeat;
    /*background-attachment: fixed;*/
}

/* ===== CATEGORÍAS ===== */
.categories-section {
    padding: 3rem 0;
}

.category-card {
    transition: transform 0.3s;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .card-title-cat {
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* ===== PRODUCTOS ===== */
.products-section {
    padding: 3rem 0;
}

.product-card {
    transition: box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.15) !important;
}

.image-cont {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Para que la imagen se vea completa sin recortes */
}

/* ===== PROMO SECTION ===== */
.promo-section {
    padding: 3rem 0;
}
.promo-section h2 {
    font-size: 2.2rem;
}

/* ===== BOTONES ===== */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:hover {
    background-color: #28a745;
    color: white;
}


/* ===== media queries seccion hero ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        background-attachment: scroll; /* Mejor para móviles */
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
}


/* ===== media queries seccion categorias ===== */
@media (max-width: 576px) {
    .category-card .card-body {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .category-card .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    .category-card .card-title-cat {
        font-size: 1.2rem;
        height: auto; /* Permitir altura variable */
        min-height: 50px;
    }
    .category-card .bi-tag {
        font-size: 2rem; /* Icono más grande */
    }
}

/* == media queries seccion productos == */
@media (max-width: 576px) {
    .product-card .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 1.1rem;
    }
    .product-card .card-title {
        font-size: 1.2rem;
    }
    .product-card .card-text {
        font-size: 1rem;
    }
    .image-cont {
        height: 180px;
    }
}

/* ===== media queries seccion promo ===== */

@media (max-width: 768px) {
    .promo-section h2 {
        font-size: 1.8rem;
    }
    .promo-section .lead {
        font-size: 1rem;
    }
}