/* Variables de color Sonic */
:root {
    --sonic-blue: #0066CC;
    --sonic-dark-blue: #004499;
    --sonic-light-blue: #0099FF;
    --ring-gold: #FFD700;
    --ring-yellow: #FFA500;
    --shadow-red: #CC0000;
    --tails-orange: #FF8C00;
    --knuckles-red: #DC143C;
    --amy-pink: #FF69B4;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --gradient-sonic: linear-gradient(135deg, #0066CC 0%, #0099FF 50%, #FFD700 100%);
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --facebook: #3b5998;
    --tiktok: #000000;
    --maps: #4285F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 50%, #0a0a2e 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Animación de anillos - Solo desktop */
.rings-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: none;
}

@media (min-width: 1025px) {
    .rings-container {
        display: block;
    }
    
    .ring {
        position: absolute;
        width: 100px;
        height: 100px;
        border: 8px solid var(--ring-gold);
        border-radius: 50%;
        opacity: 0.3;
        animation: floatRing 15s infinite ease-in-out;
        box-shadow: 0 0 20px var(--ring-gold), inset 0 0 20px var(--ring-gold);
    }
    
    .ring:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; width: 80px; height: 80px; }
    .ring:nth-child(2) { top: 60%; right: 10%; animation-delay: 5s; width: 120px; height: 120px; }
    .ring:nth-child(3) { bottom: 10%; left: 50%; animation-delay: 10s; width: 100px; height: 100px; }
    
    @keyframes floatRing {
        0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
        25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
        50% { transform: translateY(0) rotate(180deg) scale(1); }
        75% { transform: translateY(30px) rotate(270deg) scale(0.9); }
    }
}

.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 215, 0, 0.03) 50px, rgba(255, 215, 0, 0.03) 100px);
    animation: speedMove 2s linear infinite;
    display: none;
}

@media (min-width: 1025px) {
    .speed-lines { display: block; }
}

@keyframes speedMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

/* Header - Optimizado móvil */
.header {
    position: relative;
    background: var(--gradient-sonic);
    padding: 1.5rem 1rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.5);
    width: 100%;
}

@media (min-width: 768px) {
    .header { padding: 2rem 1.5rem; }
}

@media (min-width: 1025px) {
    .header { padding: 3rem 2rem; }
}

.header-content { position: relative; z-index: 1; }

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.ring-logo {
    font-size: 2.5rem;
    animation: spinRing 3s linear infinite;
    display: inline-block;
}

@media (min-width: 768px) {
    .ring-logo { font-size: 3rem; }
}

@media (min-width: 1025px) {
    .ring-logo { font-size: 4rem; }
}

@keyframes spinRing {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.title {
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 0px var(--ring-gold), 4px 4px 0px rgba(0,0,0,0.3);
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .title { font-size: 2.5rem; }
}

@media (min-width: 1025px) {
    .title {
        font-size: 3.5rem;
        text-shadow: 4px 4px 0px var(--ring-gold), 8px 8px 0px rgba(0,0,0,0.3);
        letter-spacing: 2px;
    }
}

.tagline {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
    padding: 0 0.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .tagline { font-size: 1.1rem; margin-bottom: 1.5rem; padding: 0 1rem; }
}

@media (min-width: 1025px) {
    .tagline { font-size: 1.5rem; margin-bottom: 2rem; }
}

.header-buttons {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-location, .btn-menu {
    padding: 0.8rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    flex: 1;
    max-width: 160px;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn-location, .btn-menu {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
        max-width: 200px;
    }
}

@media (min-width: 1025px) {
    .btn-location, .btn-menu {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        max-width: none;
    }
}

.btn-location { background: var(--maps); color: white; }
.btn-location:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5); }

.btn-menu { background: var(--ring-gold); color: var(--text-dark); }
.btn-menu:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); }

/* Info Section */
.info-section {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .info-section { padding: 2.5rem 1.5rem; }
}

@media (min-width: 1025px) {
    .info-section { padding: 3rem 2rem; }
}

.info-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--ring-gold);
}

@media (min-width: 768px) {
    .info-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
}

@media (min-width: 1025px) {
    .info-title { font-size: 2rem; margin-bottom: 2rem; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
    }
}

@media (min-width: 1025px) {
    .info-grid { gap: 2rem; }
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 153, 255, 0.2));
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--ring-gold);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .info-card {
        padding: 1.3rem;
        border-radius: 16px;
        border: 3px solid var(--ring-gold);
    }
}

@media (min-width: 1025px) {
    .info-card { padding: 2rem; border-radius: 20px; }
}

.info-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4); }

.info-card i {
    font-size: 1.8rem;
    color: var(--ring-gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .info-card i { font-size: 2.2rem; margin-bottom: 0.6rem; }
}

@media (min-width: 1025px) {
    .info-card i { font-size: 3rem; margin-bottom: 1rem; }
}

.info-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--ring-gold);
}

@media (min-width: 768px) {
    .info-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
}

@media (min-width: 1025px) {
    .info-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
}

.info-card p { font-size: 0.8rem; }

@media (min-width: 768px) {
    .info-card p { font-size: 0.9rem; }
}

@media (min-width: 1025px) {
    .info-card p { font-size: 1.1rem; }
}

/* Social Section */
.social-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(0,102,204,0.1));
    border-top: 3px solid var(--ring-gold);
    border-bottom: 3px solid var(--ring-gold);
}

@media (min-width: 768px) {
    .social-section { padding: 2.5rem 1.5rem; }
}

@media (min-width: 1025px) {
    .social-section { padding: 3rem 2rem; }
}

.social-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ring-gold);
}

@media (min-width: 768px) {
    .social-title { font-size: 1.5rem; margin-bottom: 1.2rem; }
}

@media (min-width: 1025px) {
    .social-title { font-size: 1.8rem; margin-bottom: 1.5rem; }
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-social {
    padding: 0.7rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    color: white;
    min-width: 110px;
    justify-content: center;
    flex: 1;
    max-width: 150px;
}

@media (min-width: 768px) {
    .btn-social {
        padding: 0.8rem 1.3rem;
        font-size: 0.95rem;
        min-width: 130px;
        max-width: 170px;
    }
}

@media (min-width: 1025px) {
    .btn-social {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
        max-width: none;
    }
}

.btn-social.whatsapp { background: var(--whatsapp); }
.btn-social.instagram { background: var(--instagram); }
.btn-social.facebook { background: var(--facebook); }
.btn-social.tiktok { background: var(--tiktok); border: 2px solid var(--ring-gold); }
.btn-social.maps { background: var(--maps); }

.btn-social:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.btn-social.tiktok:hover { background: linear-gradient(45deg, #ff0050, #00f2ea); }

/* Menu Section */
.menu-section {
    padding: 2rem 0.5rem;
}

@media (min-width: 768px) {
    .menu-section { padding: 2.5rem 1rem; }
}

@media (min-width: 1025px) {
    .menu-section { padding: 3rem 2rem; }
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    text-shadow: 3px 3px 0 var(--ring-gold);
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.3rem; margin-bottom: 2.2rem; }
}

@media (min-width: 1025px) {
    .section-title { font-size: 3rem; margin-bottom: 3rem; }
}

.ring-icon { display: inline-block; animation: spinRing 3s linear infinite; }

.menu-category { margin-bottom: 2.5rem; }

@media (min-width: 768px) {
    .menu-category { margin-bottom: 3rem; }
}

@media (min-width: 1025px) {
    .menu-category { margin-bottom: 4rem; }
}

.category-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 1.2rem;
    background: var(--gradient-sonic);
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
    border: 3px solid var(--ring-gold);
}

@media (min-width: 768px) {
    .category-title { font-size: 1.7rem; margin-bottom: 1.5rem; padding: 0.9rem 1.5rem; }
}

@media (min-width: 1025px) {
    .category-title { font-size: 2.2rem; margin-bottom: 2rem; padding: 1rem 2rem; }
}

.category-icon { margin-right: 0.5rem; }

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem;
}

@media (min-width: 480px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
}

@media (min-width: 1025px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Lista de bebidas */
.menu-grid.bebidas-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 100%;
    margin: 0;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .menu-grid.bebidas-list {
        gap: 0.9rem;
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
    }
}

.bebida-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--sonic-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .bebida-item {
        padding: 1.1rem 1.3rem;
        border-radius: 12px;
        gap: 1rem;
    }
}

.bebida-item:hover {
    border-color: var(--ring-gold);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.bebida-info { flex: 1; min-width: 0; }

.bebida-nombre {
    font-size: 0.95rem;
    color: var(--ring-gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
    .bebida-nombre { font-size: 1.1rem; margin-bottom: 0.3rem; }
}

.bebida-desc { font-size: 0.8rem; opacity: 0.8; }

@media (min-width: 768px) {
    .bebida-desc { font-size: 0.9rem; }
}

.bebida-precio {
    font-size: 1.1rem;
    font-weight: 900;
    color: #25D366;
    white-space: nowrap;
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .bebida-precio {
        font-size: 1.3rem;
        margin-left: 0.8rem;
    }
}

/* Menu Item - OPTIMIZADO PARA MÓVIL */
.menu-item {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--sonic-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 100%;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 768px) {
    .menu-item { border-radius: 18px; }
}

@media (min-width: 1025px) {
    .menu-item { border-radius: 20px; }
}

.menu-item:hover, .menu-item:focus {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.5);
    border-color: var(--ring-gold);
    outline: none;
}

.menu-item:focus-visible {
    outline: 3px solid var(--ring-gold);
    outline-offset: 3px;
}

.item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--sonic-dark-blue), var(--sonic-blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-bottom: 3px solid var(--ring-gold);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .item-image { height: 220px; }
}

@media (min-width: 768px) {
    .item-image { height: 240px; }
}

@media (min-width: 1025px) {
    .item-image { height: 280px; }
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.menu-item:hover .item-image img { transform: scale(1.05); }

.zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--text-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .zoom-icon {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

.menu-item:hover .zoom-icon { opacity: 1; }

.item-image i { font-size: 2.2rem; color: var(--ring-gold); opacity: 0.7; }
.item-image span { font-size: 0.8rem; color: white; font-weight: 600; text-align: center; padding: 0 1rem; }

.item-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .item-content { padding: 1.2rem; }
}

@media (min-width: 1025px) {
    .item-content { padding: 1.5rem; }
}

.item-name {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--ring-gold);
    font-weight: 700;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .item-name { font-size: 1.25rem; margin-bottom: 0.4rem; }
}

@media (min-width: 1025px) {
    .item-name { font-size: 1.4rem; margin-bottom: 0.5rem; }
}

.item-description {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
    line-height: 1.35;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .item-description { font-size: 0.9rem; margin-bottom: 0.9rem; line-height: 1.4; }
}

@media (min-width: 1025px) {
    .item-description { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.5; }
}

.item-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #25D366;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    margin-top: auto;
}

@media (min-width: 768px) {
    .item-price { font-size: 1.6rem; }
}

@media (min-width: 1025px) {
    .item-price { font-size: 1.8rem; }
}

/* Birthday Section */
.birthday-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 182, 193, 0.2));
    border-top: 5px solid var(--amy-pink);
    border-bottom: 5px solid var(--amy-pink);
}

@media (min-width: 768px) {
    .birthday-section { padding: 3rem 1.5rem; }
}

@media (min-width: 1025px) {
    .birthday-section { padding: 4rem 2rem; }
}

.birthday-content { text-align: center; max-width: 800px; margin: 0 auto; }

.birthday-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--amy-pink);
    text-shadow: 3px 3px 0 var(--ring-gold);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .birthday-content h2 { font-size: 2rem; margin-bottom: 1.2rem; }
}

@media (min-width: 1025px) {
    .birthday-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
}

.birthday-content p { font-size: 0.95rem; margin-bottom: 1.3rem; line-height: 1.4; }

@media (min-width: 768px) {
    .birthday-content p { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.5; }
}

@media (min-width: 1025px) {
    .birthday-content p { font-size: 1.3rem; margin-bottom: 2rem; line-height: 1.6; }
}

.btn-birthday {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--amy-pink), #FF1493);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

@media (min-width: 768px) {
    .btn-birthday { padding: 1rem 2.5rem; font-size: 1.15rem; }
}

@media (min-width: 1025px) {
    .btn-birthday { padding: 1.2rem 3rem; font-size: 1.3rem; }
}

.btn-birthday:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 12px 35px rgba(255, 105, 180, 0.7); }

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a2e, #1a1a4e);
    padding: 2rem 1rem 1rem;
    border-top: 5px solid var(--ring-gold);
}

@media (min-width: 768px) {
    .footer { padding: 2.5rem 1.5rem 1rem; }
}

@media (min-width: 1025px) {
    .footer { padding: 3rem 2rem 1rem; }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.8rem;
    }
}

@media (min-width: 1025px) {
    .footer-content { gap: 3rem; margin-bottom: 2rem; }
}

.footer-section h3 { color: var(--ring-gold); font-size: 1.2rem; margin-bottom: 0.7rem; }
.footer-section p { margin-bottom: 0.4rem; line-height: 1.5; font-size: 0.9rem; }

.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (min-width: 768px) {
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

@media (min-width: 1025px) {
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.social-link.facebook { background: var(--facebook); }
.social-link.instagram { background: var(--instagram); }
.social-link.tiktok { background: var(--tiktok); border: 2px solid var(--ring-gold); }
.social-link.whatsapp { background: var(--whatsapp); }

.social-link:hover { transform: translateY(-5px) scale(1.1) rotate(360deg); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.social-link.tiktok:hover { background: linear-gradient(45deg, #ff0050, #00f2ea); }

.btn-maps-footer {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 0.5rem 1rem;
    background: var(--maps);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .btn-maps-footer {
        margin-top: 0.9rem;
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1025px) {
    .btn-maps-footer {
        margin-top: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

.btn-maps-footer:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(66, 133, 244, 0.5); }

.footer-bottom { text-align: center; padding-top: 1.3rem; border-top: 2px solid rgba(255, 215, 0, 0.3); }
.footer-bottom p { margin-bottom: 0.35rem; font-size: 0.85rem; }
.credits { color: var(--ring-gold); font-weight: 600; }

/* ======================================== */
/* MODAL PARA AMPLIAR IMÁGENES - OPTIMIZADO */
/* ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
}

.modal-overlay.active { display: flex; opacity: 1; }

.modal-content {
    background: linear-gradient(135deg, var(--sonic-dark-blue), var(--sonic-blue));
    border-radius: 14px;
    width: 100%;
    max-width: 600px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    border: 4px solid var(--ring-gold);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.8);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

@media (min-width: 768px) {
    .modal-content {
        max-width: 800px;
        border-radius: 18px;
        max-height: 90vh;
    }
}

@media (min-width: 1025px) {
    .modal-content {
        max-width: 900px;
        border-radius: 20px;
    }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--shadow-red);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .modal-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}

@media (min-width: 1025px) {
    .modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

.modal-close:hover { background: #ff0000; transform: scale(1.1) rotate(90deg); }

.modal-image-container {
    width: 100%;
    height: 300px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--ring-gold);
    overflow: hidden;
}

@media (min-width: 480px) {
    .modal-image-container { height: 350px; }
}

@media (min-width: 768px) {
    .modal-image-container { height: 400px; }
}

@media (min-width: 1025px) {
    .modal-image-container { height: 500px; }
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.modal-info { padding: 1.3rem 1rem; text-align: center; }

@media (min-width: 768px) {
    .modal-info { padding: 1.6rem 1.3rem; }
}

@media (min-width: 1025px) {
    .modal-info { padding: 2rem 1.5rem; }
}

.modal-info h3 {
    font-size: 1.3rem;
    color: var(--ring-gold);
    margin-bottom: 0.7rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .modal-info h3 { font-size: 1.6rem; margin-bottom: 0.9rem; }
}

@media (min-width: 1025px) {
    .modal-info h3 { font-size: 2rem; margin-bottom: 1rem; }
}

.modal-info p { font-size: 0.9rem; line-height: 1.45; margin-bottom: 1rem; opacity: 0.9; }

@media (min-width: 768px) {
    .modal-info p { font-size: 1rem; line-height: 1.5; margin-bottom: 1.2rem; }
}

@media (min-width: 1025px) {
    .modal-info p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; }
}

.modal-precio {
    font-size: 1.8rem;
    font-weight: 900;
    color: #25D366;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .modal-precio { font-size: 2.2rem; margin-bottom: 1.2rem; }
}

@media (min-width: 1025px) {
    .modal-precio { font-size: 2.5rem; margin-bottom: 1.5rem; }
}

.modal-close-btn {
    background: var(--ring-gold);
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .modal-close-btn {
        padding: 0.9rem 2.2rem;
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1025px) {
    .modal-close-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        margin-bottom: 1.3rem;
    }
}

.modal-close-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); }

/* Accesibilidad - Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}