/* Variables de color */
:root {
    --primary: #f8a145;
    --secondary: #4b3b40;
    --light: #f8f5f2;
    --dark: #1e1e1e;
    --gold: #d4af37;
    --beer-light: #f9c582;
    --beer-dark: #b37a3a;
    --beer-color: #f9c582;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Header */
header {
    background-color: var(--secondary);
    color: var(--light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(248, 161, 69, 0.7));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #f8f5f2;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/1.png');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/3.jpg');
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--light);
    padding: 2rem;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 161, 69, 0.4);
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 161, 69, 0.6);
    background-color: var(--gold);
}

.beer-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sección de ubicaciones */
.locations {
    padding: 5rem 2rem;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--gold));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.card.animated {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) {
    transition-delay: 0.1s;
}

.card:nth-child(2) {
    transition-delay: 0.2s;
}

.card:nth-child(3) {
    transition-delay: 0.3s;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.card-content h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--gold));
    bottom: -5px;
    left: 0;
    border-radius: 3px;
}

.card-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.card-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.card-link:hover {
    color: var(--gold);
}

.card-link:hover::after {
    width: 100%;
}

/* Efecto de cerveza en las cards */
.beer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 161, 69, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover .beer-effect {
    opacity: 1;
}

/* Sección de bienvenida */
.welcome {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--light);
}

.welcome-logo {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.welcome-logo.animated {
    opacity: 1;
    transform: translateY(0);
}

.welcome-logo img {
    max-width: 300px;
    filter: drop-shadow(0 0 20px rgba(248, 161, 69, 0.5));
    animation: floatLogo 4s ease-in-out infinite;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.welcome-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.carta {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #1a1a1a;
    border: 1px solid rgba(248, 161, 69, 0.2);
}

.carta p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.empresas-lista {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.empresas-lista li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.empresas-lista a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.empresas-lista a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.firma-container {
    margin: 2rem 0;
    text-align: left;
}

.firma {
    max-width: 300px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.atentamente {
    margin-top: 2rem;
    font-style: italic;
}

.atentamente p {
    margin-bottom: 0.5rem;
}

.atentamente a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.atentamente a:hover {
    color: var(--gold);
    text-decoration: underline;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 300px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-container {
        flex-direction: column;
    }
    
    .welcome-text, .welcome-logo {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card {
        width: 100%;
    }
    
    .carta {
        padding: 1.5rem;
    }
    
    .empresas-lista {
        padding-left: 1.5rem;
    }
    
    .welcome-logo img {
        max-width: 200px;
    }
}

/* Estilos específicos para la página de ubicaciones */
.location-hero {
    height: 70vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 10px;
}

.hero-beer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    
}

#dominicana .hero-beer {
    background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}

#venezuela .hero-beer {
    background-image: url('https://images.unsplash.com/photo-1471421298428-1513ab720a8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80');
}

#checa .hero-beer {
    background-image: url('https://images.unsplash.com/photo-1600788886242-5c96aabe3757?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80');
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
}

/* Animación de vaso de cerveza */
.beer-glass {
    width: 150px;
    height: 200px;
    position: relative;
    margin: -10px auto;
}

.beer-foam {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0;
    animation: foam 4s infinite;
}

.beer-liquid {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 160px;
    background: var(--beer-color);
    border-radius: 0 0 10px 10px;
}

.beer-bubbles {
    position: absolute;
    width: 100%;
    height: 160px;
    top: 40px;
}

.beer-bubbles::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bubbles 3s infinite;
}

@keyframes foam {
    0%, 100% { height: 40px; }
    50% { height: 50px; }
}

@keyframes bubbles {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-160px); opacity: 0; }
}

/* Selector de ubicaciones */
.location-selector {
    background: var(--secondary);
    padding: 1rem 0;
    position: sticky;

        top: 0;
        z-index: 100; /* para que quede por encima de otros elementos */
        padding: 10px 0; /* ajusta según necesites */
}

.selector-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.location-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.location-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.location-btn:hover {
    color: var(--primary);
}

.location-btn.active {
    color: var(--primary);
}

.location-btn.active::after {
    width: 100%;
}

/* Contenido de ubicación */
.location-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-section {
    display: none;
    animation: fadeIn 0.8s ease-out;
}

.location-section.active {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.location-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(248, 161, 69, 0.1), rgba(212, 175, 55, 0.3));
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.location-text h2 span {
    color: var(--primary);
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Animaciones de cerveza */
.beer-animation {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.beer-bottle {
    width: 80px;
    height: 200px;
    position: relative;
}

.bottle-cap {
    width: 30px;
    height: 10px;
    background: #d4af37;
    border-radius: 2px;
    margin: 0 auto;
}

.bottle-neck {
    width: 20px;
    height: 40px;
    background: #4b3b40;
    margin: 0 auto;
    position: relative;
}

.bottle-body {
    width: 80px;
    height: 150px;
    background: #4b3b40;
    border-radius: 10px 10px 30px 30px;
    position: relative;
    overflow: hidden;
}

.bottle-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--beer-color);
    animation: fillBottle 3s ease-in-out infinite;
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    z-index: 2;
}

.beer-mug {
    width: 120px;
    height: 140px;
    position: relative;
}

.mug-handle {
    width: 30px;
    height: 60px;
    background: transparent;
    border: 15px solid #4b3b40;
    border-left: none;
    border-radius: 0 30px 30px 0;
    position: absolute;
    right: 0;
    top: 40px;
}

.mug-body {
    width: 100px;
    height: 140px;
    background: #4b3b40;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.mug-foam {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    background: white;
    border-radius: 50% 50% 0 0;
    animation: foam 4s infinite;
}

.mug-liquid {
    position: absolute;
    top: 30px;
    width: 100%;
    height: 110px;
    background: var(--beer-color);
}

.mug-bubbles {
    position: absolute;
    width: 100%;
    height: 110px;
    top: 30px;
}

.mug-bubbles::before, .mug-bubbles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bubbles 3s infinite;
}

.mug-bubbles::before {
    left: 20px;
    animation-delay: 0.5s;
}

.mug-bubbles::after {
    left: 60px;
    animation-delay: 1s;
}

.beer-barrel {
    width: 150px;
    height: 120px;
    position: relative;
}

.barrel-top {
    width: 100px;
    height: 20px;
    background: #5d4c3e;
    border-radius: 50%;
    margin: 0 auto;
}

.barrel-body {
    width: 120px;
    height: 80px;
    background: #5d4c3e;
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
}

.barrel-hoop {
    position: absolute;
    width: 100%;
    height: 10px;
    background: #d4af37;
    top: 20px;
}

.barrel-hoop.middle {
    top: 35px;
}

.barrel-tap {
    width: 20px;
    height: 30px;
    background: #d4af37;
    position: absolute;
    right: 10px;
    top: 40px;
    border-radius: 0 5px 5px 0;
}

.hops-animation {
    flex: 1;
    position: relative;
    height: 200px;
}

.hops {
    width: 80px;
    position: absolute;
    animation: floatHops 6s ease-in-out infinite;
}

@keyframes floatHops {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fillBottle {
    0%, 100% { height: 0; }
    50% { height: 100%; }
}

/* Características de ubicación */
.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    flex: 1;
    min-width: 200px;
    background: rgba(248, 161, 69, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0;
}

/* Galería de cerveza */
.beer-gallery {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.beer-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.beer-gallery h2 span {
    color: var(--primary);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .selector-container {
        flex-wrap: wrap;
    }
    
    .location-section {
        flex-direction: column;
    }
    
    .beer-animation {
        flex-direction: column;
    }
    
    .hops-animation {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .location-text h2 {
        font-size: 2rem;
    }
    
    .feature {
        min-width: 100%;
    }
}

  .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    
    .whatsapp-float a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .fa-whatsapp {
        margin-top: 5px;
    }
    
    /* Efecto de pulso */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .whatsapp-float {
        animation: pulse 2s infinite;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 25px;
        }
    }

    /* Estilos mejorados para modales */
.modal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.modal-subtitle {
    color: gold;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    position: relative;
    padding-left: 15px;
}

.modal-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: gold;
}

.highlight-box {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-left: 3px solid gold;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.warning-box {
    background-color: rgba(255, 60, 60, 0.1);
    padding: 1rem;
    border-left: 3px solid #ff3c3c;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.modal-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.modal-list li {
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.5;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 6px;
    margin-top: 2rem;
    border-left: 3px solid #4CAF50;
}

.contact-info h4 {
    color: gold;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-note {
    font-style: italic;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Mejoras de tipografía para el contenido del modal */
.modal-body {
    font-size: 0.95rem;
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body strong {
    color: gold;
    font-weight: 600;
}

.modal-body a {
    color: gold;
    text-decoration: underline;
}

.modal-body a:hover {
    text-decoration: none;
}

.location-images {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Espacio entre imágenes */
    width: 100%;
}

.side-by-side-image {
    width: 48%; /* Para que quepan dos con espacio */
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Opcional: para esquinas redondeadas */
}

.location-images {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Espacio entre imágenes */
    width: 100%;
}

.side-by-side-image {
    width: 48%; /* Para que quepan dos con espacio */
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Opcional: para esquinas redondeadas */
}