/* Placeholder para todas las imagenes que faltan */
.img-placeholder{
    border: 4px dashed var(--negro);
    background-color: #eef1ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--verde-oscuro);
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
}

/* PUBLICIDAD PRINCIPAL */
.publi-principal{
    text-align: center;
}
.publi-principal img{
    width: 100%;
    display: block;
}

.btn-secundario{
    display: inline-block;
    border: 2px solid var(--verde);
    color: var(--verde);
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-secundario:hover{
    background-color: var(--verde);
    color: white;
}
.cont-btn-centrado{
    text-align: center;
    margin: 30px 0;
}

/* TITULOS DE SECCION */
.contTitulos {
    padding: 20px;
    text-align: center;
}
.titulos_secciones {
    font-family: 'Aldrich', sans-serif;
    font-size: 68px;
    font-weight: 600;
    color: var(--negro);
    text-align: center;
    margin: 0;
}
.subtitulo_secciones{
    font-family: 'Moderustic', sans-serif;
    font-size: 26px;
    color: #666;
    margin-top: 8px;
}

@media (max-width: 768px){
    .titulos_secciones{
        font-size: 36px;
    }
    .subtitulo_secciones{
        font-size: 16px;
    }
}

/* MENU */  
.contProductos {
    width: 100%;
    margin: 0 auto;
}
.products-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
    align-items: stretch;
    margin: 0;
    padding: 0;
}
.product-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .products-list {
        flex-direction: column;
        gap: 15px;
    }

    .product-item {
        width: 100%;
    }

    .product-card {
        width: 100%;
        margin: 0;
    }

    .product-name{
        font-size: 40px;
    }

    .product-description{
        font-size: 16px;
    }
}

/* GALERIA (reutiliza el patron de categorias) */
.contImgsSecciones {
    width: 93%;
    margin: 0 auto;
}
.category-list {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0 0 10px 0;
    scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
    display: none;
}
.category-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
}
.category-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.user-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 12px;
    padding: 0;
    overflow: hidden;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.category-image img,
.category-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--negro);
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .category-item {
        flex: 0 0 160px;
    }
}

/* QUIENES SOMOS */
.cont-nosotros{
    width: 85%;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.nosotros-imagen{
    flex: 1;
    min-width: 280px;
    height: 320px;
}
.nosotros-texto{
    flex: 1;
    min-width: 280px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.cont-valores{
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.valor-card{
    background-color: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}
.valor-card i{
    font-size: 28px;
    color: var(--rojo);
    margin-bottom: 12px;
}
.valor-titulo{
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--negro);
}
.valor-texto{
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* UBICACION */
.cont-ubicacion{
    width: 85%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.mapa-imagen{
    flex: 1.4;
    min-width: 280px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
}
.ubicacion-info{
    flex: 1;
    min-width: 240px;
    font-size: 16px;
    color: #333;
    line-height: 2.2;
}
.ubicacion-info i{
    color: var(--rojo);
    margin-right: 10px;
    width: 20px;
}

@media (max-width: 768px){
    .cont-nosotros, .cont-ubicacion{
        flex-direction: column;
    }
    .mapa-imagen{
        flex: none;
        width: 100%;
        height: 260px;
    }
    .ubicacion-info{
        flex: none;
        width: 100%;
    }
}
