* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section - Pantalla completa */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: subtle-zoom 30s infinite alternate ease-in-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    animation: fade-in 1.5s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-container i {
    font-size: 3.5rem;
    margin-right: 1rem;
    color: #ff6b6b;
    filter: drop-shadow(0 0 10px rgba(255,107,107,0.3));
    animation: pulse 2s infinite ease-in-out;
}

.logo-container h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.badge i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Container para el resto de secciones */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Estilos para encabezados de sección */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(139,0,0,0.2);
}

.section-title h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-weight: 300;
}

/* Sección de mesas */
.tables-section {
    margin-bottom: 5rem;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.table-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    opacity: 0; /* Inicialmente ocultas */
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.table-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.table-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #8B0000;
    z-index: 1;
}

.table-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 1rem;
}

.table-icon {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.table-card:hover .table-icon {
    transform: scale(1.1);
    color: #8B0000;
}

.table-link {
    display: inline-block;
    text-decoration: none;
    background: #8B0000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.table-link:hover {
    background: #FF4500;
    transform: scale(1.05);
}

/* Sección de especialidades */
.specialties-section {
    margin-bottom: 5rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0; /* Inicialmente ocultas */
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.specialty-image {
    height: 200px;
    overflow: hidden;
}

.specialty-image img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.05);
}

.specialty-info {
    padding: 1.5rem;
}

.specialty-info h3 {
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.specialty-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Sección de información */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #8B0000;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0; /* Inicialmente ocultas */
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139,0,0,0.3);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    font-weight: 300;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-right: 0.8rem;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-content p {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
}

/* Estilos para la sección de publicidad en home */
.home-publicidad-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.home-publicidad-swiper {
    height: auto;
    margin: 2rem 0;
    padding-bottom: 3rem;
}

.home-publicidad-slide {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto;
}

.home-publicidad-slide:hover {
    transform: translateY(-5px);
}

.publicidad-image-container {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.publicidad-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-publicidad-slide:hover .publicidad-image-container img {
    transform: scale(1.05);
}

.publicidad-details {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.publicidad-tag {
    background: #8B0000;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.publicidad-nombre {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.publicidad-precios {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.precio-antes {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.precio-actual {
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
}

.publicidad-descripcion {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.publicidad-cta {
    background: #8B0000;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.publicidad-cta i {
    font-size: 0.9rem;
}

.publicidad-cta:hover {
    background: #FF4500;
    transform: translateY(-2px);
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #8B0000 !important;
}

/* Animaciones */
@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .logo-container h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 3rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .home-publicidad-slide {
        flex-direction: column;
    }
    
    .publicidad-image-container,
    .publicidad-details {
        width: 100%;
    }
    
    .publicidad-image-container {
        height: 200px;
    }
    
    .publicidad-details {
        padding: 1.5rem;
    }
    
    .publicidad-nombre {
        font-size: 1.5rem;
    }
    
    .publicidad-precios {
        margin-bottom: 1rem;
    }
    
    .precio-actual {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}