/* PIRAÑACONDA - CSS Limpio desde cero */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #1a1a1a;
    color: #ffffff;
    position: relative;
}

/* Estado inicial del fondo - placeholder con gradiente mientras carga */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 1;
    z-index: -2;
    will-change: opacity;
}

/* Capa de imagen de fondo optimizada */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('afondo.png');
    background-repeat: repeat;
    background-size: 350px;
    background-attachment: fixed;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0); /* Fuerza aceleración por hardware */
    will-change: opacity;
}

/* Cuando la imagen está cargada, se hace visible */
body.imagen-cargada::after {
    opacity: 0.15;
}

/* Fallback cuando la imagen no puede cargar o tarda mucho */
body.imagen-fallback::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 30%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 1;
}

/* Optimizaciones de rendimiento */
body::before,
body::after {
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translate3d(0, 0, 0);
}

/* Preload hint en el HTML via CSS */
body {
    background: #000000; /* Color base mientras carga todo */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Selector de idioma elegante */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-select {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    padding: 8px 35px 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-width: 80px;
    text-align: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.language-select:hover {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.language-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.language-select option {
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 10px;
    border: none;
}

/* INDEX PAGE */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
}

.hero-logo {
    margin-bottom: 60px;
}

.hero-logo h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.action-btn {
    padding: 20px 60px;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.action-btn:hover {
    color: #000000;
}

.action-btn:hover::before {
    left: 0;
}

.location-info {
    text-align: center;
    margin-bottom: 40px;
}

.location-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.location-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    opacity: 0.9;
    flex-shrink: 0;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer a {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    transition: all 0.3s ease;
}

.footer a:hover {
    background-color: rgba(255, 255, 0, 0.3) !important;
    padding: 2px 4px;
    border-radius: 3px;
    color: inherit !important;
    text-decoration: none !important;
}

/* CARTA PAGE */
.carta-main {
    min-height: 100vh;
    padding-top: 80px;
}

.carta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 80px);
}

.carta-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carta-instructions {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

.carta-header-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.header-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.pedido-btn {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.pedido-count {
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-left: 8px;
}

/* Menu opaco */
.menu-compact {
    display: flex;
    flex-direction: column;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-bottom: 20px;
}

.menu-section {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
}

/* Imagen de categoría */
.categoria-imagen {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.categoria-imagen img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.menu-items-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item-compact {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.menu-item-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.menu-item-compact.in-pedido {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
}

.menu-item-compact.in-pedido .menu-item-name,
.menu-item-compact.in-pedido .menu-item-price,
.menu-item-compact.in-pedido .menu-item-description,
.menu-item-compact.in-pedido .menu-item-allergens {
    color: #000000;
}

.menu-item-compact.in-pedido .menu-item-description span {
    color: #000000 !important;
}

.menu-item-compact.selected {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.menu-item-compact.selected .menu-item-name,
.menu-item-compact.selected .menu-item-price,
.menu-item-compact.selected .menu-item-description,
.menu-item-compact.selected .menu-item-allergens {
    color: #000000;
}

.menu-item-compact.selected .menu-item-description span {
    color: #000000 !important;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.3rem;
    flex: 1;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.menu-item-price {
    font-weight: 700;
    font-size: 1.4rem;
    margin-left: 15px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
    margin-top: 8px;
}

.menu-item-allergens {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-footer {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
}

.download-btn-compact {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.download-btn-compact:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Botón flotante */
.floating-pedido-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-pedido-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-pedido-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Modal */
.pedido-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pedido-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    color: white;
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.pedido-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.pedido-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.pedido-item-name {
    flex: 1;
    font-size: 0.9rem;
}

.pedido-item-price {
    font-weight: 500;
    margin-left: 10px;
}

.pedido-remove {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.7rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.pedido-remove:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.pedido-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 600;
    text-align: right;
    font-size: 1.1rem;
}

.pedido-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pedido-clear {
    flex: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pedido-clear:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 20px;
    }
    
    .social-link span {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
    
    .language-selector {
        margin-left: 10px;
    }
    
    .language-select {
        padding: 6px 25px 6px 10px;
        font-size: 0.8rem;
        min-width: 70px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-logo h1 {
        font-size: 3rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 300px;
    }

    .action-btn {
        width: 100%;
        padding: 18px 40px;
    }
    
    .carta-container {
        padding: 0 15px;
    }
    
    .menu-item-compact {
        padding: 16px;
        margin-bottom: 10px;
    }
    
    .menu-section h3 {
        font-size: 1.4rem;
    }
    
    /* Imagen de categoría responsive */
    .categoria-imagen img {
        max-height: 250px;
    }
    
    .menu-item-name {
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .menu-item-price {
        font-size: 1.2rem;
        padding: 3px 10px;
    }
    
    .menu-item-description {
        font-size: 0.95rem;
        margin-top: 8px;
    }
    
    .menu-item-allergens {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    .carta-instructions {
        font-size: 1rem;
        padding: 20px;
    }
    
    .header-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .carta-title {
        font-size: 2.4rem;
        margin-bottom: 18px;
    }
    
    .floating-pedido-btn {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .hero-logo h1 {
        font-size: 2.2rem;
    }

    .action-btn {
        font-size: 1rem;
        padding: 16px 30px;
    }
    
    .carta-container {
        padding: 0 10px;
    }
    
    .carta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .menu-item-compact {
        padding: 14px;
        margin-bottom: 8px;
    }
    
    .menu-section h3 {
        font-size: 1.3rem;
    }
    
    /* Imagen de categoría móviles pequeños */
    .categoria-imagen img {
        max-height: 200px;
    }
    
    .menu-item-name {
        font-size: 1.1rem;
    }
    
    .menu-item-price {
        font-size: 1.15rem;
        padding: 2px 8px;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
    }
    
    .menu-item-allergens {
        font-size: 0.75rem;
    }
    
    .carta-instructions {
        font-size: 0.95rem;
        padding: 18px;
    }
    
    .header-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .floating-pedido-btn {
        width: 55px;
        height: 55px;
        bottom: 12px;
        right: 12px;
        font-size: 1.2rem;
    }
}

/* CONTACTO PAGE */
.contact-main {
    min-height: 100vh;
    padding-top: 80px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #ffffff;
}

.accordion {
    margin-bottom: 40px;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px 20px;
    color: #ffffff;
    line-height: 1.6;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-form {
    margin: 20px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.faq-section {
    margin-bottom: 25px;
}

.faq-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.faq-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info-section {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 30px;
}

.phone-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 10px;
}

.map-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
}

.map-link:hover {
    opacity: 1;
}

/* RESERVAR PAGE */
.reservar-main {
    min-height: 100vh;
    padding-top: 80px;
}

.reservar-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reservar-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #ffffff;
}

.reservar-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.8;
    color: #ffffff;
}

.reservation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.method-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.method-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #ffffff;
}

.method-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.reservation-info {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 30px;
}

.reservation-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    color: #ffffff;
}

.hours-highlight {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.hours-highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.hours-highlight p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: #ffffff;
}


.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-emoji {
    font-size: 1.2rem;
}

.info-item-compact div {
    font-size: 0.9rem;
    color: #ffffff;
}

.info-item-compact strong {
    font-weight: 600;
}

.platforms-compact {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
}

.platforms-compact strong {
    font-weight: 600;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .contact-info-grid,
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-title,
    .reservar-title {
        font-size: 2rem;
    }
    
    /* Justificar texto del footer en móvil */
    .info-item p,
    .info-item-compact div {
        text-align: justify;
        text-justify: inter-word;
    }
}