/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F9A826;
    --secondary-color: #2E7D32;
    --dark-color: #1A237E;
    --light-color: #FFF3E0;
    --text-color: #333;
    --gray-color: #757575;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #F57C00;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(249, 168, 38, 0.3);
}

.btn-slide {
    background-color: white;
    color: var(--dark-color);
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.btn-slide:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.05);
}

.btn-nav {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-nav:hover {
    background-color: var(--dark-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 25px auto 0;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.beer-glass {
    width: 120px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
}

.beer-foam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.foam-bubble {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: bubbleFloat 2s infinite ease-in-out;
}

.foam-bubble:nth-child(1) {
    width: 25px;
    height: 25px;
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.foam-bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 60px;
    animation-delay: 0.5s;
}

.foam-bubble:nth-child(3) {
    width: 15px;
    height: 15px;
    top: 15px;
    left: 90px;
    animation-delay: 1s;
}

.foam-bubble:nth-child(4) {
    width: 18px;
    height: 18px;
    top: 8px;
    left: 40px;
    animation-delay: 1.5s;
}

.beer-liquid {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 0;
    background-color: var(--primary-color);
    border-radius: 0 0 10px 10px;
    animation: fillBeer 2s forwards ease-in-out;
}

.loader-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulseText 1.5s infinite alternate;
}

@keyframes fillBeer {
    0% { height: 0; }
    100% { height: 160px; }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseText {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Navegación */
.navbar {
    background-color: rgba(26, 35, 126, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(26, 35, 126, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: white;
    z-index: 1001;
}

.logo i {
    font-size: 2.2rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-link {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 20px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding-left: 25px;
}

/* Hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Audio Toggle y WhatsApp Nav */
.nav-extra {
    display: flex;
    align-items: center;
    gap: 15px;
}

.audio-toggle, .whatsapp-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.audio-toggle:hover, .whatsapp-nav:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.audio-toggle.active {
    background-color: var(--primary-color);
}

/* Hero con Swiper */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1629731685624-2f1d41f4c97b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517433456452-f9633a875f6f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-title span {
    color: var(--primary-color);
    display: block;
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 35, 126, 0.9);
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    z-index: 100;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Bebas Neue', cursive;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sección Cervezas */
.beers {
    padding: 100px 20px;
    background-color: white;
}

.beer-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.beers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.beer-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.beer-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.beer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beer-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.beer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.beer-card:hover .beer-img img {
    transform: scale(1.1);
}

.beer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.beer-info {
    padding: 25px;
}

.beer-info h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.beer-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.beer-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.beer-abv, .beer-ibu {
    background-color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.beer-abv {
    color: var(--secondary-color);
}

.beer-ibu {
    color: var(--primary-color);
}

.beer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beer-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.btn-beer {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-beer:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sección Experiencia */
.experience {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.experience-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    margin-bottom: 25px;
}

.experience-content > p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.exp-feature {
    display: flex;
    gap: 20px;
}

.exp-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.exp-text h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
}

.exp-text p {
    color: var(--gray-color);
    line-height: 1.6;
}

.experience-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.experience-image:hover img {
    transform: scale(1.05);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sección Reserva */
.reservation {
    padding: 100px 20px;
    background-color: white;
}

.reservation-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.reservation-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
}

.experience-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.option-label {
    display: block;
    cursor: pointer;
}

.option-label input {
    display: none;
}

.option-content {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.option-label input:checked + .option-content {
    border-color: var(--primary-color);
    background-color: rgba(249, 168, 38, 0.1);
}

.option-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.option-content span {
    font-weight: 600;
    color: var(--dark-color);
}

.form-footer {
    margin-top: 40px;
}

.btn-reservation {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
}

.btn-reservation:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.reservation-info {
    flex: 1;
}

.reservation-info h3 {
    color: var(--dark-color);
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-text p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 5px;
}

.map-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.map-link:hover {
    text-decoration: underline;
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #25D366;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.whatsapp-box i {
    font-size: 3rem;
}

.whatsapp-box h4 {
    margin-bottom: 5px;
}

.btn-whatsapp-small {
    display: inline-block;
    background-color: white;
    color: #25D366;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-whatsapp-small:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-logo h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #F57C00;
}

.newsletter-note {
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.6;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividad */
@media screen and (max-width: 1200px) {
    .experience-container, .reservation-container {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.5s;
        padding-top: 100px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 10px 0 10px 30px;
        display: none;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 0;
    }
    
    .dropdown-menu a:hover {
        background-color: transparent;
        color: var(--primary-color);
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hamburger {
        display: block;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .beers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero {
        height: 80vh;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        position: relative;
        background-color: var(--dark-color);
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 30px);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .experience-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 576px) {
    .beers-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .btn-slide {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .beer-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}