/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0f24;
    color: white;
    overflow-x: hidden;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(0, 114, 255, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
}

/* === CATÁLOGO === */
.catalogo {
    position: relative;
    z-index: 3;
    padding: 120px 40px;
    text-align: center;
    background: rgba(10, 15, 40, 0.9);
    color: white;
    overflow: hidden;
}

.catalogo h2 {
    font-size: 2.6rem;
    background: linear-gradient(90deg, #00e0ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 60px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 80%;
}

.card {
    min-width: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.carousel button {
    background: rgba(0, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel button:hover {
    background: rgba(0, 255, 255, 0.4);
    transform: scale(1.1);
}

/* === ANIMACIONES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    header {
        padding: 10px 30px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    header nav {
        display: block;

        /* luego se reemplaza por un menú hamburguesa si quieres */
    }

    .hero {
        text-align: center;
        padding: 140px 20px 80px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .catalogo {
        padding: 60px 20px;
    }

    .carousel {
        gap: 15px;
    }

    .carousel-item {
        min-width: 70%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .carousel-item {
        min-width: 85%;
    }

    footer p {
        font-size: 0.9rem;
    }
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    /* scroll horizontal */
    scroll-snap-type: x mandatory;
    /* para que se alineen bien */
    -webkit-overflow-scrolling: touch;
    /* suaviza el scroll en móviles */
    padding: 20px 10px;
    scrollbar-width: none;
    /* oculta la barra de scroll */
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1);
    backdrop-filter: blur(6px);
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.5);
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.carousel-item p {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-vendedor {
    display: inline-block;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-vendedor:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 0 10px #00bfff;
}

.carousel-item:active {
    transform: scale(0.97);
    box-shadow: 0 0 20px #00bfff;
}

.catalogo {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.catalogo h2 {
    font-size: 2.4rem;
    background: linear-gradient(90deg, #00e0ff, #0072ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 50px;
    text-shadow: 0 0 25px rgba(0, 114, 255, 0.3);
}

.carousel-container {
    overflow-x: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.carousel-item p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.cta-vendedor {
    display: inline-block;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-vendedor:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 0 10px #00bfff;
    transform: scale(1.05);
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
}

/* 💡 RESPONSIVE */
@media (max-width: 768px) {
    .catalogo {
        padding: 80px 0;
    }

    .catalogo h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .carousel {
        gap: 15px;
        padding: 10px;
        justify-content: flex-start;
    }

    .carousel-item {
        flex: 0 0 80%;
        margin: 0 auto;
    }

    .carousel-item img {
        max-width: 100%;
    }

    .cta-vendedor {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        flex: 0 0 90%;
    }

    .catalogo h2 {
        font-size: 1.5rem;
    }
}

/* === NUEVOS ESTILOS PARA WHATSAPP Y REDES SOCIALES === */

/* Ícono de WhatsApp junto a cada nombre de celular */
.phone-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.phone-name i {
    color: #25D366;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.phone-name i:hover {
    transform: scale(1.15);
}

/* Contenedor general del footer de redes */
.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 20px;
}

/* Cada ícono de red social */
.social-footer a {
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Colores específicos */
.social-footer a:nth-child(1):hover {
    color: #00f2ea;
    /* TikTok */
    transform: scale(1.2);
}

.social-footer a:nth-child(2):hover {
    color: #E1306C;
    /* Instagram */
    transform: scale(1.2);
}

.social-footer a:nth-child(3):hover {
    color: #1877F2;
    /* Facebook */
    transform: scale(1.2);
}

/* === OPCIONAL: animación suave al pasar el mouse === */
.social-footer a:hover i {
    filter: drop-shadow(0 0 6px currentColor);
}

/* Asegura que los íconos no rompan el diseño responsive */
@media (max-width: 600px) {
    .social-footer {
        flex-wrap: wrap;
        gap: 15px;
    }

    .phone-name {
        font-size: 0.95rem;
    }
}

/* === ICONOS DE REDES SOCIALES FLOTANTES === */
.social-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-floating a {
    width: 45px;
    height: 45px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Efecto hover y colores personalizados */
.social-floating a:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.social-floating a.tiktok:hover {
    background-color: #00f2ea;
    color: #000;
}

.social-floating a.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
}

.social-floating a.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

/* Responsivo (más pequeño en móvil) */
@media (max-width: 600px) {
    .social-floating a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
}

.logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: cyan;
}

/* Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: cyan;
}

/* Botón hamburguesa (oculto en escritorio) */
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 180px;
        height: auto;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: right;
        border-radius: 10px 0 0 10px;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }
}

.logo-img {
    height: 45px;
    /* ajusta según el tamaño que quieras */
    width: auto;
    filter: drop-shadow(0 0 8px cyan);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px #00ffff);
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
}

/* === SWIPER STYLES === */
.swiper {
    width: 90%;
    max-width: 1100px;
    padding-bottom: 60px;
}

.swiper-slide.card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.swiper-slide.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.swiper-slide img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Botones y paginación */
.swiper-button-next,
.swiper-button-prev {
    color: #00e0ff;
    text-shadow: 0 0 15px #00e0ff;
}

.swiper-pagination-bullet {
    background: #00e0ff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    box-shadow: 0 0 10px #00e0ff;
}

.catalogo-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.catalogo-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.catalogo .card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.catalogo .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.catalogo .card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.carousel-controls button {
    background: rgba(0, 255, 255, 0.25);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: rgba(0, 255, 255, 0.4);
    transform: scale(1.1);
}

/* 🔹 Responsivo */
@media (max-width: 1024px) {
    .catalogo .card {
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .catalogo-track {
        gap: 15px;
    }

    .catalogo .card {
        min-width: 80%;
    }
}

@media (max-width: 480px) {
    .catalogo .card {
        min-width: 90%;
    }
}

.catalogo {
    padding: 60px 20px;
    text-align: center;
    color: white;
    background: radial-gradient(circle at top, rgba(0, 255, 255, 0.1), transparent 70%);
}

.catalogo h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px cyan;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    justify-items: center;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent);
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
}

.card .btn {
    background: rgba(0, 255, 255, 0.25);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.card .btn:hover {
    background: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px cyan;
    transform: scale(1.05);
}

/* 🔹 Responsive para móviles */
@media (max-width: 768px) {
    .card img {
        height: 180px;
    }
}

.footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    overflow: hidden;
    margin-top: 60px;
}

.footer-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    opacity: 0.9;
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.5));
}

.footer-text {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: #00ffff;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    backdrop-filter: blur(4px);
}

/* 🔷 Sección general */
.info-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #000, #111 40%, #000);
    color: #fff;
    text-align: center;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 🔹 Contenedor con movimiento */
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🔸 Tarjetas */
.card {
    flex: 0 0 auto;
    width: 250px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.card p {
    font-size: 0.9rem;
    color: #bbb;
}

/* 🔻 Responsividad */
@media (max-width: 768px) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 80%;
    }

    .info-title {
        font-size: 1.6rem;
    }
}

/* === SECCIÓN INFO GLOW === */
.info-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #000, #0a0a0a 40%, #000);
    color: #fff;
    text-align: center;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #00e0ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: glowText 3s ease-in-out infinite alternate;
}

/* 🔹 Animación texto */
@keyframes glowText {
    from {
        text-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff;
    }

    to {
        text-shadow: 0 0 15px #00e0ff, 0 0 30px #007bff;
    }
}

/* 🔸 Carrusel horizontal */
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🔷 Tarjetas */
.card {
    flex: 0 0 auto;
    width: 260px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.card .icon {
    font-size: 2.8rem;
    margin-bottom: 0.7rem;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px #00e0ff;
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 25px #00e0ff;
    }
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.card p {
    font-size: 0.9rem;
    color: #bbb;
}

/* 💫 Pausa el movimiento al pasar el mouse */
.marquee-track:hover {
    animation-play-state: paused;
}

/* 🔻 Responsividad */
@media (max-width: 1024px) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .info-title {
        font-size: 1.6rem;
    }

    .card {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
    }
}

/* === SECCIÓN INFO GLOW === */
.info-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #000, #0a0a0a 40%, #000);
    color: #fff;
    text-align: center;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #00e0ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: glowText 3s ease-in-out infinite alternate;
}

/* 🔹 Animación texto */
@keyframes glowText {
    from {
        text-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff;
    }

    to {
        text-shadow: 0 0 15px #00e0ff, 0 0 30px #007bff;
    }
}

/* 🔸 Carrusel horizontal */
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🔷 Tarjetas */
.card {
    flex: 0 0 auto;
    width: 260px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.card .icon {
    font-size: 2.8rem;
    margin-bottom: 0.7rem;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px #00e0ff;
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 25px #00e0ff;
    }
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.card p {
    font-size: 0.9rem;
    color: #bbb;
}

/* 💫 Pausa el movimiento al pasar el mouse */
.marquee-track:hover {
    animation-play-state: paused;
}

/* 🔻 Responsividad */
@media (max-width: 1024px) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .marquee-track {
        animation: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .card {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
    }
}

/* === SECCIÓN INFO GLOW === */
.info-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #000, #0a0a0a 40%, #000);
    color: #fff;
    text-align: center;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #00e0ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: glowText 3s ease-in-out infinite alternate;
}

/* ✨ Animación de brillo texto */
@keyframes glowText {
    from {
        text-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff;
    }

    to {
        text-shadow: 0 0 15px #00e0ff, 0 0 30px #007bff;
    }
}

/* 🔹 Carrusel horizontal */
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🔷 Tarjetas */
.card {
    flex: 0 0 auto;
    width: 260px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.card .icon {
    font-size: 2.8rem;
    margin-bottom: 0.7rem;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px #00e0ff;
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 25px #00e0ff;
    }
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.card p {
    font-size: 0.9rem;
    color: #bbb;
}

/* 💫 Pausa el movimiento al pasar el mouse */
.marquee-track:hover {
    animation-play-state: paused;
}

/* 🔻 Responsividad */
@media (max-width: 1024px) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .marquee-track {
        animation: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .card {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
    }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: cyan;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* === Responsive === */
@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        padding: 15px;
        display: none;
        border-radius: 0 0 0 10px;
    }

    .navbar-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* === PORTADA === */
.portada {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.portada img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 1;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === ICONOS FLOTANTES DE REDES === */
.social-icons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.social-icons .whatsapp {
    background: #25D366;
}

.social-icons .tiktok {
    background: linear-gradient(135deg, #000000, #00f2ea, #ff0050);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons .facebook {
    background: #1877f2;
}

/* === PORTADA PRINCIPAL === */
.portada {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    /* Resta la altura aproximada de la barra */
    margin-top: 80px;
    /* Evita que la navbar la tape */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #0a0f24 0%, #050818 100%);
    z-index: 1;
}

.portada img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    opacity: 0.95;
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.25));
    animation: portadaGlow 6s ease-in-out infinite alternate;
}

/* ✨ Efecto de respiración luminosa */
@keyframes portadaGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.2));
    }

    100% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 35px rgba(0, 255, 255, 0.4));
    }
}

/* 📱 Responsive ajustes */
@media (max-width: 768px) {
    .portada {
        height: calc(60vh - 60px);
        margin-top: 60px;
    }

    .portada img {
        object-fit: contain;
        width: 100%;
        height: auto;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .portada {
        height: auto;
        margin-top: 70px;
        background: linear-gradient(180deg, #0a0f24, #00101a);
        padding-bottom: 10px;
    }

    .portada img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
    }
}

/* === BOTÓN WHATSAPP FLOTANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-text {
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 9px 14px;
        font-size: 0.85rem;
    }

    .whatsapp-text {
        display: none;
        /* Solo el ícono en pantallas muy pequeñas */
    }
}

/* === BOTÓN WHATSAPP FLOTANTE CON LOGO CSS === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 50px;
    padding: 14px 22px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

/* Ícono estilo logo */
.whatsapp-logo {
    background-color: white;
    color: #25D366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.whatsapp-text {
    white-space: nowrap;
}

/* Animación sutil */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .whatsapp-logo {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }
}

/* === BOTÓN WHATSAPP FLOTANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    padding: 14px 22px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatPulse 2.5s infinite;
}

/* Ícono dentro del botón */
.whatsapp-float i {
    background-color: white;
    color: #25D366;
    font-size: 1.6rem;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Hover con brillo */
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
}

/* Animación suave */
@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .whatsapp-float span {
        display: none;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    padding: 14px 22px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: floatPulse 2.5s infinite;
}

.whatsapp-float i {
    background-color: white;
    color: #25D366;
    font-size: 1.6rem;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive sin ocultar texto */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    padding: 14px 22px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: floatPulse 2.5s infinite;
}

.whatsapp-float i {
    background-color: white;
    color: #25D366;
    font-size: 1.6rem;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.whatsapp-text {
    display: inline-block;
    color: white;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

.whatsapp-float {
    position: fixed;
    z-index: 999999 !important;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0, 255, 255, 0.12);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.filter-btn.active {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    box-shadow: 0 0 18px rgba(0, 114, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .category-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

.brand-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.25);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 0.85rem;
}

.brand-btn:hover {
    background: rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.brand-btn.active {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    box-shadow: 0 0 15px rgba(0, 114, 255, 0.8);
}

.btn-volver {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    background-color: transparent;
    border: 2px solid #00f2ea;
    color: #00f2ea;

    transition: all 0.3s ease;
}

.btn-volver:hover {
    background-color: #00f2ea;
    color: #000;
    transform: translateY(-2px);
}

.btn-producto {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    background: linear-gradient(45deg, #0077ff, #00f2ea);
    color: white;

    transition: 0.3s ease;
}

.btn-producto:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.6);
}

/* Contenedor de botones */
.menu-categorias {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

/* Botones */
.menu-categorias a {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;

    background: linear-gradient(45deg, #0077ff, #00f2ea);
    color: white;

    transition: all 0.3s ease;
}

/* Hover */
.menu-categorias a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 242, 234, 0.4);
}

/* CONTENEDOR */
.menu-categorias {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 50px 0;
}

/* BOTONES */
.menu-categorias a {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(0, 242, 234, 0.3);
    color: #ffffff;

    transition: all 0.3s ease;
}

/* HOVER */
.menu-categorias a:hover {
    background: linear-gradient(135deg, #0077ff, #00f2ea);
    border: 1px solid transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 242, 234, 0.3);
}

.filtro-marcas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0;
}

.filtro-marcas a {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    background: rgba(0, 242, 234, 0.1);
    border: 1px solid rgba(0, 242, 234, 0.4);
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.filtro-marcas a:hover {
    background: #00f2ea;
    color: #0a0f28;
}

.marca-section {
    margin-bottom: 60px;
}

.marca-section h2 {
    margin-bottom: 20px;
    text-align: center;
}

.brand-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.brand-buttons a {
    background: #111;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.brand-buttons a:hover {
    background: #00f2ea;
    color: black;
}

.brand-section {
    margin-top: 60px;
}

.brand-section h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0a0f28;
    color: white;
    line-height: 1.5;
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(10, 15, 40, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
}

.logo span {
    font-weight: bold;
    font-size: 18px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-links a:hover {
    color: #00c3ff;
}

/* ================= TITULOS ================= */

.catalogo {
    padding: 60px 20px;
    text-align: center;
}

.catalogo h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* ================= BOTONES MARCAS ================= */

.brand-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.brand-nav a {
    text-decoration: none;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00c3ff, #005bea);
    font-weight: bold;
    transition: 0.3s;
}

.brand-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 195, 255, 0.4);
}

/* ================= GRID PRODUCTOS ================= */

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* ================= CARD ================= */

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 15px;
}

/* ================= BOTON ================= */

.btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #00c3ff, #005bea);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 195, 255, 0.5);
}

/* ================= FOOTER ================= */

.footer {
    margin-top: 60px;
}

.footer-img {
    width: 100%;
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .logo span {
        font-size: 15px;
    }

    .catalogo h2 {
        font-size: 1.6rem;
    }

    .card img {
        height: 180px;
    }
}

/* ===============================
   NAVEGACIÓN DE MARCAS
=================================*/

.brand-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(10, 15, 40, 0.85);
    backdrop-filter: blur(10px);
}

/* BOTONES */
.brand-navigation a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 30px;

    background: linear-gradient(135deg, #0a1a40, #0f2b70);
    border: 1px solid rgba(0, 255, 255, 0.3);

    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
}

/* HOVER EFECTO PREMIUM */
.brand-navigation a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00cfff, #0066ff);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
}

/* CLICK */
.brand-navigation a:active {
    transform: scale(0.95);
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 768px) {

    .brand-navigation {
        gap: 10px;
        padding: 20px 10px;
    }

    .brand-navigation a {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* ===============================
   HEADER CATÁLOGO CELULARES
=================================*/

.catalogo-header {
    text-align: center;
    padding: 60px 20px 30px;
    background: transparent;
}

/* TITULO PRINCIPAL */
.catalogo-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* SUBTITULO */
.catalogo-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* LINEA DECORATIVA (detalle premium) */
.catalogo-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 25px auto 0;
    background: linear-gradient(90deg, #00f2ea, #0066ff);
    border-radius: 10px;
}

.card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* GRID DE PRODUCTOS */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* antes seguramente era 20px */
    padding: 20px;
}

/* CARD PRODUCTO */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    transition: 0.3s ease;
}

/* EFECTO HOVER */
.card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* IMAGEN MÁS GRANDE */
.card img {
    width: 100%;
    height: 260px;
    /* 🔥 antes aprox 200px */
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITULO */
.card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* TEXTO */
.card p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ============================= */
/* BOTONES DE MARCAS */
/* ============================= */

.brand-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px auto 40px;
}

/* BOTÓN INDIVIDUAL */
.brand-buttons a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;

    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

/* HOVER */
.brand-buttons a:hover {
    background: #00eaff;
    color: #081021;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.35);
}

/* BOTÓN ACTIVO (opcional) */
.brand-buttons a.active {
    background: #00eaff;
    color: #081021;
    font-weight: 600;
}

/* ===== POLITICA DE DATOS ===== */

.politica-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.politica-container h2,
.politica-container h3 {
    margin-top: 25px;
    color: #111;
}

.politica-container ul {
    padding-left: 20px;
}

.header {
    text-align: center;
    padding: 40px 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #00c3ff;
}


/* =================================
   SECCION CATEGORIAS
================================= */

#categorias {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* CONTENEDOR BOTONES */
.categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* BOTONES */
.categorias a {
    text-decoration: none;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    font-size: 16px;

    padding: 14px 26px;
    border-radius: 14px;

    border: 2px solid #eeeeee;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: all 0.25s ease;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* HOVER */
.categorias a:hover {
    background: #0a0f28;
    /* color oscuro acorde a tu web */
    color: #ffffff;
    border-color: #0a0f28;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* CLICK */
.categorias a:active {
    transform: scale(0.96);
}

/* ==========================
   RESPONSIVE (CELULAR)
========================== */

@media (max-width: 768px) {

    .categorias {
        gap: 12px;
    }

    .categorias a {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* =================================
   FOOTER GENERAL
================================= */

footer {
    width: 100%;
    background: rgba(10, 15, 40, 0.95);
    color: #ffffff;
    text-align: center;
}

/* CONTENEDOR PRINCIPAL */
footer h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ICONOS REDES */
footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* ICONOS */
footer a {
    font-size: 26px;
    transition: all 0.25s ease;
}

/* HOVER ICONOS */
footer a:hover {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2);
}

/* TEXTO COPYRIGHT */
footer p {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

/* =================================
   FOOTER IMAGEN FINAL
================================= */

.footer {
    background: #0a0f28;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    footer h3 {
        font-size: 18px;
    }

    footer a {
        font-size: 22px;
    }

    footer div {
        gap: 18px;
    }

    footer p {
        font-size: 13px;
        padding: 0 15px;
    }
}

/* ===============================
   BOTON VOLVER AL INICIO
================================= */

.volver-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 110px;
    /* separa del navbar */
    margin-bottom: 20px;
}

.btn-volver {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 114, 255, 0.35);
}

/* HOVER */
.btn-volver:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.5);
}

/* MOBILE */
@media (max-width: 768px) {
    .btn-volver {
        padding: 10px 20px;
        font-size: 14px;
    }

    .volver-container {
        margin-top: 95px;
    }
}

/* ===============================
   BOTON VOLVER AL INDEX
=================================*/

.volver-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;

    background: linear-gradient(135deg, #00eaff, #0066ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;

    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.35);

    position: relative;
    overflow: hidden;
}

/* Hover elegante */
.volver-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.6);
}

/* efecto glow animado */
.volver-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: 0.6s;
}

.volver-btn:hover::before {
    left: 100%;
}

/* ================================
   CENTRAR HEADER DE MOTOS
================================ */

/* sección del título */
.titulo-catalogo {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 30px auto;
    padding: 0 20px;
}

.titulo-catalogo h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.titulo-catalogo p {
    font-size: 1.1rem;
    opacity: 0.8;
}


/* botones tipo marcas */
.marcas {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.botones-marcas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===============================
   BOTONES DE CATEGORIAS / MARCAS
================================= */

.brand-buttons {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


/* BOTONES GENERALES */
.brand-buttons a {
    text-decoration: none;
    background: #f3f3f3;
    color: #111;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}


/* HOVER */
.brand-buttons a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}


/* BOTON INICIO (solo leve diferencia) */
.btn-inicio {
    background: #111 !important;
    color: white !important;
}

.btn-inicio:hover {
    background: transparent !important;
    color: #111 !important;
    border: 1px solid #111;
}