/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #000000;
    min-height: 100vh;
    color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Logo del restaurante */
.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.main-logo {
    height: 250px;
    width: auto;
    border-radius: 12px;
}

/* Nombre del restaurante */
.restaurant-name {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Contenedor de botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Contenedor de botones de idioma */
.language-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Subtítulo */
.subtitle-container {
    margin-bottom: 50px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #CCCCCC;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.1);
}

/* Botones principales */
.main-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Botones de idioma */
.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 56px;
    animation: fadeInUp 0.8s ease-out;
}

.language-button:nth-child(1) {
    animation-delay: 0.1s;
}

.language-button:nth-child(2) {
    animation-delay: 0.2s;
}

.language-button:nth-child(3) {
    animation-delay: 0.3s;
}

.language-button:nth-child(4) {
    animation-delay: 0.4s;
}

.language-button:nth-child(5) {
    animation-delay: 0.5s;
}

.language-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.language-button:hover::before {
    left: 100%;
}

.language-text {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.main-button:hover::before {
    left: 100%;
}

.main-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.language-button:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.language-button:hover .language-text {
    color: #FFFFFF;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.4);
}

.language-button:active {
    transform: translateY(-4px) scale(1.01);
}


.main-button:active {
    transform: translateY(-2px);
}

/* Texto principal de los botones */
.main-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.2);
}

/* Texto secundario de los botones */
.sub-text {
    font-size: 0.9rem;
    color: #CCCCCC;
    opacity: 0.8;
    font-style: italic;
}

/* Animaciones Avanzadas */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile First - Base styles for mobile (320px+) */
.container {
    padding: 16px;
    min-height: 100vh;
}

.main-logo {
    height: 160px;
    max-width: 100%;
    width: auto;
}

.restaurant-name {
    font-size: 2.2rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.buttons-container,
.language-buttons-container {
    gap: 16px;
    max-width: 100%;
    width: 100%;
}

.main-button,
.language-button {
    padding: 18px 20px;
    font-size: 0.95rem;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-text {
    font-size: 0.95rem;
}

.social-links {
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    padding: 12px 16px;
    font-size: 0.85rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-icon {
    font-size: 1.3rem;
}

.social-text {
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .main-logo {
        height: 250px;
    }
    
    .restaurant-name {
        font-size: 3.5rem;
        margin-bottom: 60px;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .buttons-container,
    .language-buttons-container {
        gap: 25px;
        max-width: 400px;
    }
    
    .main-button,
    .language-button {
        padding: 25px 30px;
        font-size: 1.1rem;
    }
    
    .language-text {
        font-size: 1.1rem;
    }
    
    .social-buttons {
        gap: 20px;
        margin-top: 40px;
    }
    
    .social-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        font-size: 1.5rem;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
    
    .social-card {
        padding: 25px;
        gap: 20px;
    }
    
    .info-title {
        font-size: 1.4rem;
    }
    
    .info-text {
        font-size: 1.1rem;
    }
    
    .info-subtitle {
        font-size: 0.9rem;
    }
}
    
    .main-text {
        font-size: 1.5rem;
    }
    
    .sub-text {
        font-size: 0.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-link {
        padding: 10px 18px;
    }
    
    .info-section {
        margin-top: 30px;
    }
    
    .info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
    
    .info-text {
        font-size: 1rem;
    }
    
    .info-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        height: 140px;
        max-width: 95%;
    }
    
    .restaurant-name {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .buttons-container {
        max-width: 300px;
        gap: 15px;
    }
    
    .language-buttons-container {
        max-width: 300px;
        gap: 15px;
    }
    
    .main-button {
        padding: 18px 20px;
    }
    
    .language-button {
        padding: 18px 20px;
        min-height: 55px;
    }
    
    .language-text {
        font-size: 1.2rem;
    }
    
    .main-text {
        font-size: 1.3rem;
    }
    
    .sub-text {
        font-size: 0.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .info-section {
        margin-top: 25px;
    }
    
    .info-card {
        padding: 18px;
        gap: 12px;
    }
    
    .info-icon {
        font-size: 1.8rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
    
    .info-subtitle {
        font-size: 0.8rem;
    }
}

/* Efectos adicionales para mejorar la experiencia */
.main-button.carta-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-button.redes-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-button.contacto-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Botones de redes sociales */
.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-link {
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.instagram-link {
    background: linear-gradient(145deg, #1877F2, #0A5FCC);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.staff-link {
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.staff-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.social-logo {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.9rem;
}

/* Menú hamburguesa para móvil */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #CCCCCC;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Estilos cuando el menú está abierto */
.container.menu-open {
    transform: translateX(-100px);
    opacity: 0.7;
}

.container.menu-open .language-buttons-container {
    transform: translateX(-50px);
}

.container.menu-open .social-buttons {
    transform: translateX(-30px);
}

/* Efecto de partículas animadas avanzado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 250px 20px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 100px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 150px 200px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 300px 150px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: particleFloat 35s linear infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Popup de Suscripción */
.subscription-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.subscription-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.subscription-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 25px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #CCCCCC;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 1002;
}

.popup-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.popup-body {
    padding: 20px 30px;
}

.popup-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-align: center;
}

.popup-message {
    font-size: 1.1rem;
    color: #CCCCCC;
    line-height: 1.5;
    margin: 0 0 25px 0;
    text-align: center;
}

.popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.3rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 500;
}

.popup-footer {
    display: flex;
    gap: 20px;
    padding: 25px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-skip {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    color: #CCCCCC;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1002;
}

.popup-skip:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.popup-register {
    flex: 2;
    background: linear-gradient(145deg, #6c5ce7, #5f3dc4);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1002;
}

.popup-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    background: linear-gradient(145deg, #7c6cf7, #6f4dd4);
}


/* Responsive para el popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-width: 400px;
    }
    
    .popup-header {
        padding: 20px 25px 15px;
    }
    
    .popup-body {
        padding: 15px 25px;
    }
    
    .popup-footer {
        padding: 15px 25px 20px;
        flex-direction: column;
    }
    
    .popup-skip,
    .popup-register {
        flex: 1;
        width: 100%;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 15px 20px 10px;
    }
    
    .popup-body {
        padding: 10px 20px;
    }
    
    .popup-footer {
        padding: 10px 20px 15px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-message {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 8px 12px;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}

/* Sección de Información - Horarios y Ubicación */
.info-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* En pantallas medianas y pequeñas, cambiar a vertical */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
        margin-top: 32px;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-card {
        padding: 20px;
        gap: 15px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .info-subtitle {
        font-size: 0.8rem;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    min-height: 80px;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
}

.info-icon {
    font-size: 1.6rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.info-card:hover .info-icon {
    opacity: 1;
    transform: scale(1.1);
}

.info-content {
    flex: 1;
    position: relative;
    z-index: 2;
    min-width: 0;
}

.info-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.info-card:hover .info-title {
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.4);
}

.info-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.info-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: #CCCCCC;
    margin-bottom: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.info-subtitle:last-child {
    margin-bottom: 0;
}

/* Estilos para la card de ubicación clickeable */
.location-card {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
}

.location-card:hover .info-icon {
    animation: bounceLocation 1s infinite;
}

.location-card:hover .info-text {
    color: #ffd700;
}

/* Estilos para las tarjetas sociales */
.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-card:hover .info-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.social-card:hover .info-title {
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.4);
}

/* Estilos específicos para Instagram */
.instagram-card:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}

.instagram-card:hover .info-icon {
    color: #E1306C;
    filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.8));
}

.instagram-card:hover .info-text {
    color: #E1306C;
}

/* Estilos específicos para Staff */
.staff-card:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.staff-card:hover .info-icon {
    color: #ffa500;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.8));
}

.staff-card:hover .info-text {
    color: #ffa500;
}

.location-card:hover .info-title {
    color: #ffa500;
}

@keyframes bounceLocation {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Estilos para el formulario de contacto */
.contact-form {
    margin-top: 20px;
}

.welcome-notice {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-icon {
    font-size: 1.2rem;
    color: #ffa500;
}

.notice-text {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.form-group select option {
    background: #1a1a1a;
    color: #FFFFFF;
}

/* Estilos para el contenedor de teléfono */
.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: #ffa500;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.phone-code {
    padding: 12px 15px;
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 60px;
    text-align: center;
}

.phone-input-container input {
    border: none;
    background: transparent;
    padding: 12px 15px;
    color: #FFFFFF;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
}

.phone-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);


/* Responsive para el formulario */
@media (max-width: 768px) {
    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .phone-code {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 55px;
    }
    
    .phone-input-container input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
