
.menu-section {
    padding: 60px 20px;
    text-align: center;
}

.menu-title {
    font-size: 45px;
    color: #00eaff;
    text-shadow: 0 0 15px #00eaff;
}

.menu-sub {
    margin-top: 10px;
    opacity: .8;
    font-size: 18px;
}

/* CATEGORÍAS */
.menu-categories {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-btn {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 10px 20px;
    color: #00ffff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    transition: .3s;
}

.cat-btn:hover,
.cat-btn.active {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 15px #00ffff;
}

/* GRID DEL MENÚ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
    
}

/* TARJETAS */
.item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0,255,255,0.2);
    transition: .3s;
    display: none; /* Se mostrará según categoría */
}

.item img {
    width: 100%;
    height: 340px;   
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
    border-radius: 12px;
    margin-bottom: 10px;
}


.item h3 {
    color: #00eaff;
    margin: 5px 0;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffff;
}

.btn-pedidos {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(90deg, #38bdf8, #3b82f6, #1e40af);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(59,130,246,0.7);
    transition: 0.3s ease;
}

.btn-pedidos:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59,130,246,1);
}

        /* MAPA GAMER */
.mapa-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #00eaff66;
    box-shadow:
        0 0 15px #00eaff99,
        0 0 25px #00eaff55,
        inset 0 0 20px #00eaff33;
    animation: glowMapa 4s ease-in-out infinite;
}

@keyframes glowMapa {
    0%, 100% { box-shadow: 0 0 15px #00eaff99, 0 0 25px #00eaff55, inset 0 0 20px #00eaff33; }
    50% { box-shadow: 0 0 25px #00fff5cc, 0 0 45px #00eaffaa, inset 0 0 25px #00eaff55; }
}

    .nosotros-section {
        padding: 100px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* TARJETA CON GLOW */
    .nosotros-card {
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12px);
        border: 2px solid rgba(0, 255, 255, 0.3);
        border-radius: 20px;
        padding: 40px;
        max-width: 950px;
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.2),
            0 0 40px rgba(0, 255, 255, 0.15),
            inset 0 0 30px rgba(0, 255, 255, 0.1);
        animation: floatCard 5s ease-in-out infinite;
    }

    @keyframes floatCard {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }

    /* TITULO GAMER */
    .nosotros-title {
        font-size: 50px;
        text-align: center;
        color: #00eaff;
        margin-bottom: 25px;
        text-shadow: 0 0 15px #00eaff, 0 0 30px #00eaff;
    }

    /* TEXTO */
    .nosotros-text {
        font-size: 18px;
        line-height: 1.9;
        color: #ffffff;
        opacity: 0.92;
    }

    /* EFECTO LÍNEAS DE LUZ AL LADO DEL TEXTO */
    .nosotros-card::before,
    .nosotros-card::after {
        content: "";
        position: absolute;
        width: 4px;
        height: 80%;
        top: 10%;
        background: linear-gradient(180deg, transparent, #00ffff, transparent);
        filter: drop-shadow(0 0 10px #00ffff);
        animation: neonLine 4s linear infinite;
    }

    .nosotros-card::before {
        left: -10px;
    }

    .nosotros-card::after {
        right: -10px;
        animation-delay: 2s;
    }

    @keyframes neonLine {
        0% { height: 20%; opacity: 0.4; }
        50% { height: 80%; opacity: 1; }
        100% { height: 20%; opacity: 0.4; }
    }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #080d1a;
            overflow-x: hidden;
            color: #ffffff;
            scroll-behavior: smooth; /* <-- Esto hace que el scroll sea suave */
        }

        /* ====== FONDO CON NEÓN Y ANIMACIONES ====== */
        .bg-animated {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .circle {
            position: absolute;
            border: 3px solid rgba(0, 255, 255, 0.6);
            border-radius: 50%;
            animation: floatCircle 10s infinite ease-in-out;
            filter: drop-shadow(0 0 15px #00ffff);
        }

        @keyframes floatCircle {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-40px) scale(1.1); }
        }

        .line {
            position: absolute;
            width: 2px;
            height: 120px;
            background: rgba(0, 255, 150, 0.8);
            animation: moveLine 6s linear infinite;
            filter: drop-shadow(0 0 10px #00ff9d);
        }

        @keyframes moveLine {
            0% { transform: translateY(120vh); }
            100% { transform: translateY(-20vh); }
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #00eaff;
            border-radius: 50%;
            opacity: 0.8;
            animation: floatParticle 5s infinite ease-in-out;
            filter: drop-shadow(0 0 6px #00eaff);
        }

        @keyframes floatParticle {
            0% { transform: translateY(0); opacity: .3; }
            50% { transform: translateY(-50px); opacity: 1; }
            100% { transform: translateY(0); opacity: .3; }
        }

        /* ===== HEADER ===== */
        header {
            padding: 20px;
            text-align: center;
        }

        .logo {
            width: 150px;
            filter: drop-shadow(0 0 10px #00eaff);
        }

        nav {
            margin-top: 20px;
        }

        nav a {
            color: #ffffff;
            margin: 15px;
            font-size: 18px;
            text-decoration: none;
            transition: 0.3s;
        }

        nav a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }

        /* ===== HERO ===== */
        .hero {
            text-align: center;
            margin-top: 100px;
        }

        .hero h1 {
            font-size: 55px;
            color: #00eaff;
            text-shadow: 0 0 20px #00eaff;
        }

        .hero p {
            font-size: 20px;
            margin-top: 10px;
            opacity: 0.9;
        }

        /* ===== SECCIONES ===== */
        section {
            padding: 120px 40px;
            text-align: center;
        }

        section h2 {
            font-size: 40px;
            margin-bottom: 20px;
            color: #00eaff;
            text-shadow: 0 0 15px #00eaff;
        }
    .contacto-section {
        padding: 100px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .contacto-card {
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12px);
        border: 2px solid rgba(0, 255, 255, 0.3);
        border-radius: 20px;
        padding: 40px;
        max-width: 900px;
        box-shadow:
            0 0 20px rgba(0, 255, 255, 0.2),
            0 0 40px rgba(0, 255, 255, 0.15),
            inset 0 0 30px rgba(0, 255, 255, 0.1);
        animation: floatContact 5s ease-in-out infinite;
    }

    @keyframes floatContact {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }

    .contacto-title {
        font-size: 45px;
        text-align: center;
        color: #00eaff;
        text-shadow: 0 0 15px #00eaff;
        margin-bottom: 20px;
    }

    .contacto-text {
        font-size: 18px;
        opacity: 0.9;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 30px;
    }

    /* BOTONES CONTACTO */
    .contacto-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .btn-contacto {
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
        border: 2px solid rgba(0, 255, 255, 0.5);
        box-shadow: 0 0 10px #00ffff66;
    }

    .btn-contacto:hover {
        transform: scale(1.08);
        box-shadow: 0 0 15px #00ffff;
    }

    .whatsapp { background: rgba(0, 255, 0, 0.2); }
    .phone { background: rgba(255, 255, 0, 0.2); }
    .facebook { background: rgba(0, 120, 255, 0.2); }

    /* FORMULARIO */
    .contacto-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contacto-form input,
    .contacto-form textarea {
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 2px solid #00eaff55;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

    .contacto-form input:focus,
    .contacto-form textarea:focus {
        border-color: #00eaff;
        box-shadow: 0 0 12px #00eaff;
    }

    textarea {
        height: 130px;
        resize: none;
    }

    /* BOTÓN ENVIAR */
    .btn-enviar {
        background: #00eaff;
        color: #000;
        font-weight: bold;
        border: none;
        padding: 15px;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.3s;
        font-size: 18px;
        box-shadow: 0 0 15px #00eaff;
    }

    .btn-enviar:hover {
        background: #00fff2;
        transform: scale(1.05);
        box-shadow: 0 0 25px #00eaff;
    }
    .taquiza-carousel-section {
    padding: 100px 20px;
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.carousel-track img {
    min-width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;

    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(0,255,255,0.25);
    backdrop-filter: blur(6px);

    box-shadow:
        0 0 20px rgba(0,234,255,0.35),
        inset 0 0 20px rgba(0,234,255,0.15);

    transition: 0.35s;
}

.carousel-track img:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 35px rgba(0,255,255,1),
        0 0 60px rgba(0,234,255,0.7);
}

/* BOTONES */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 35px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0 0 15px #00ffff;
}

.carousel-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 30px #00ffff;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.contacto-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-contacto {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* ICONOS */
.btn-contacto img {
    width: 22px;
    height: 22px;
}

/* COLORES */
.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 0 12px #25D366;
}

.phone {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 0 12px #4facfe;
}

.facebook {
    background: linear-gradient(135deg, #1877f2, #0d47a1);
    box-shadow: 0 0 12px #1877f2;
}

/* EFECTO GAMER */
.btn-contacto:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}



   .success-msg {
    color: #00ff99;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 8px #00ff99;
}

.error-msg {
    color: #ff4c4c;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 8px #ff4c4c;
}
.footer {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    padding: 50px 20px 25px;
    box-shadow:
        0 0 20px rgba(0,255,255,0.15),
        inset 0 0 25px rgba(0,255,255,0.1);
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.footer-logo img {
    width: 120px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin: 5px 0;
}

.footer-contacto p,
.footer-redes a {
    margin: 5px 0;
    color: #fff;
    text-decoration: none;
}

}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
}
.footer-phone a {
    color: #00eaff;              /* Azul gamer */
    text-decoration: none;       /* Quita subrayado */
    font-weight: bold;
    transition: 0.3s ease;
}

.footer-phone a:hover {
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
}

/* =========================
   RESPONSIVE CONTACTO
========================= */
@media (max-width: 768px) {

  .contacto-card {
    padding: 20px;
  }

  .contacto-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-contacto {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .contacto-form input,
  .contacto-form textarea {
    font-size: 16px;
  }

  .mapa-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
  }
}
.mapa-btn {
  background: #00ffd5;
  color: #000;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .mapa-container {
    display: none;
  }
}
/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-logo img {
    max-width: 120px;
    margin: 0 auto;
  }

  .footer-menu ul {
    padding: 0;
    list-style: none;
  }

  .footer-redes a img {
    width: 30px;
    margin: 0 6px;
  }

  .footer-contacto p {
    font-size: 14px;
  }
}
/* ===== ICONOS REDES SOCIALES FOOTER ===== */
.footer-redes {
    text-align: center;
}

.footer-redes a {
    display: inline-block;
    margin: 0 8px; /* separación horizontal */
}

.footer-redes img {
    width: 45px;   /* mismo tamaño para todos */
    height: 45px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Hover gamer */
.footer-redes img:hover {
    transform: scale(1.2);
}
.footer-redes {
    padding-bottom: 10px;
}