@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Montserrat:wght@300;400;700&family=Playfair+Display:ital@1&display=swap');

.seccion-cerveceria {
    position: relative;
    background: #000000a0 url('/img/WhatsApp\ Image\ 2026-04-22\ at\ 04.42.19\ \(3\).jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: #D4C9B0;
    min-height: 100vh;
    overflow: hidden;
}

.capa-oscura {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.456), rgba(0,0,0,0.8), rgba(0,0,0,0.95));
}

.contenedor-pro { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header-cerveza { text-align: center; margin-bottom: 60px; }
.mini-tag { font-family: 'Montserrat'; letter-spacing: 5px; font-size: 0.7rem; opacity: 0.7; }
.title-lux { font-family: 'Cormorant Garamond'; font-size: 4rem; margin: 10px 0; color: #fff; }
.italic-green { font-family: 'Playfair Display'; font-style: italic; color: #7A8C34; }
.frase-top { font-family: 'Montserrat'; font-weight: 300; max-width: 600px; margin: 0 auto; opacity: 0.8; }

/* LAYOUT GRID */
.cuerpo-display { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* MODELO 3D */
.img-producto {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); /* Esto crea el relieve visual */
    transition: transform 0.5s ease;
}

.img-producto:hover {
    transform: scale(1.05) translateY(-10px); /* Efecto de flotación al pasar el mouse */
}

/* BOTONES SELECTORES */
.selector-cervezas { display: flex; gap: 10px; margin-bottom: 30px; }
.btn-tipo {
    background: transparent; border: 1px solid rgba(196,164,90,0.4);
    color: #D4C9B0; padding: 8px 25px; border-radius: 25px;
    font-family: 'Montserrat'; font-size: 0.7rem; letter-spacing: 2px;
    cursor: pointer; transition: 0.3s;
}
.btn-tipo.active { background: rgba(196, 164, 90, 0.2); border-color: #C4A45A; color: #fff; }

/* TEXTOS INFO */
.sub-estilo { color: #C4A45A; letter-spacing: 3px; font-family: 'Montserrat'; font-size: 0.8rem; margin-bottom: 5px; }
.nombre-cerveza { font-family: 'Cormorant Garamond'; font-size: 3rem; margin-bottom: 20px; color: #fff; }
.descripcion-larga { font-family: 'Montserrat'; line-height: 1.8; opacity: 0.7; margin-bottom: 30px; }

/* TARJETAS NARANJAS (ANCHAS) */
.fila-cards { display: flex; gap: 15px; margin-bottom: 40px; }
.tarjeta-naranja {
    background: #A6401B; flex: 1; height: 100px; border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.tarjeta-naranja strong { font-family: 'Montserrat'; font-size: 1.5rem; color: #fff; }
.tarjeta-naranja span { font-family: 'Montserrat'; font-size: 0.6rem; letter-spacing: 1px; opacity: 0.8; }

/* LISTA */
.lista-premium { list-style: none; padding: 0; font-family: 'Montserrat'; }
.lista-premium li { margin-bottom: 10px; font-size: 0.9rem; }
.lista-premium i { color: #C4A45A; margin-right: 10px; }

/* FOOTER OLA */
.footer-olas {
    display: flex; justify-content: space-between;
    margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.ola-item { text-align: center; flex: 1; animation: olaMov 4s ease-in-out infinite; }
.ola-item i { font-size: 1.8rem; color: #C4A45A; margin-bottom: 10px; display: block; }
.ola-item b { font-family: 'Cormorant Garamond'; display: block; font-size: 1.2rem; }
.ola-item p { font-family: 'Montserrat'; font-size: 0.7rem; opacity: 0.5; }

@keyframes olaMov {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.d-1 { animation-delay: 0.5s; } .d-2 { animation-delay: 1s; } .d-3 { animation-delay: 1.5s; }

/* MOBILE */
@media (max-width: 768px) {
    .cuerpo-display { grid-template-columns: 1fr; text-align: center; }
    .selector-cervezas, .fila-cards { justify-content: center; flex-wrap: wrap; }
    .footer-olas { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
}