/* --- ESTILOS PARA LA GALERÍA VISUAL DE CARNES (MOSAICO 3x3) --- */

.hero-minimal {
    margin-top: 80px; 
    padding: 4rem 0 2rem;
    text-align: center;
    background: #fdfdfd;
}

.hero-minimal h1 {
    font-size: 3rem;
    color: var(--dark-red);
    margin-bottom: 0.5rem;
}

.hero-minimal .subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    font-weight: 300;
}

.meat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; 
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5; 
    overflow: hidden;
    background: #1a0000;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    color: #c5a059; /* Color dorado */
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.item-overlay .origin {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.item-overlay .info-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.btn-saber-mas {
    padding: 8px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-saber-mas:hover {
    background: white;
    color: black;
}