body:has(.hero-section) main {
    padding: 0;
    max-width: none;
}


/* Header aparece inmediatamente sin animación */
body:has(.hero-section) .main-header {
    opacity: 1;
}

/* Prevenir flash blanco del header */
[data-theme="dark"] body:has(.hero-section) .main-header,
[data-theme="dark"] #header-placeholder {
    background-color: rgba(0, 0, 0, 0.85);
}

@keyframes headerSlideDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}




body.animation-seen .main-header,
body.animation-seen .hero-section::before,
body.animation-seen .hero-section::after,
body.animation-seen .hero-title,
body.animation-seen .hero-brand,
body.animation-seen .hero-subtitle,
body.animation-seen .hero-buttons,
body.animation-seen .section-title,
body.animation-seen .collections-grid,
body.animation-seen .products-grid,
body.animation-seen .section-header,
body.animation-seen .info-section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Hero section mantiene clip-path para el efecto parallax */
body.animation-seen .hero-section {
    animation: none !important;
    opacity: 1 !important;
    clip-path: inset(0) !important;
}

body.animation-seen .hero-content {
    transform: translate3d(0, -20px, 0) !important;
}




@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


body.low-performance .hero-section::after,
body.low-performance .text-gradient,
body.low-performance .badge-sale {
    animation: none !important;
}

body.low-performance * {
    transition-duration: 0.1s !important;
}


.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - var(--header-height));
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
    animation: heroReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Fondo fijo para efecto parallax */
.hero-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/logo/principal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-section {
        clip-path: none;
    }

    .hero-fixed-bg {
        position: absolute;
        height: 100%;
        z-index: 0;
    }
}


@keyframes heroReveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* ========================================
   SECCIONES PARALLAX ADICIONALES
   ======================================== */

.parallax-section {
    position: relative;
    height: 35vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: inset(0);
    margin: 0;
}

/* Asegurar que las secciones normales tapen el fondo fijo del parallax */
.section.featured-section,
.section.collections-section,
.section.equipos-section,
.section.info-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-body);
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0.9) saturate(1.1);
}

/* Overlay con tonos púrpura para integrar con el tema */
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(20, 20, 25, 0.6) 50%, rgba(10, 10, 15, 0.7) 100%),
        linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 1;
}

/* Efecto de brillo sutil púrpura */
.parallax-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

.parallax-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .parallax-section {
        height: 30vh;
        min-height: 220px;
        clip-path: none;
    }

    .parallax-bg {
        position: absolute;
        height: 100%;
    }

    .parallax-title {
        font-size: 1.8rem;
    }

    .parallax-subtitle {
        font-size: 0.95rem;
    }
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    will-change: opacity;
    animation: overlayFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
    animation: glowPulse 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.25;
        transform: translate3d(-50%, -50%, 0);
    }

    50% {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    padding: 0 2rem;
    transform: translate3d(0, -20px, 0);
}


.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 900;
    color: white;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 5px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
    will-change: opacity;
    transform: translateZ(0);
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: none;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    will-change: opacity;
    transform: translateZ(0);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
}


.text-neon {
    color: #fff;
    text-shadow:
        0 0 10px rgba(99, 102, 241, 0.8),
        0 0 20px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.8);
    display: inline-block;
    font-weight: 900;
    letter-spacing: 3px;

}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    will-change: opacity;
    transform: translateZ(0);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    will-change: opacity;
    transform: translateZ(0);
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 15px 45px rgba(99, 102, 241, 0.6);
    transform: translateY(-4px) scale(1.05);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px) scale(1.05);
}


.collections-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 30;
    overflow: visible;
    transition: padding-bottom 0.3s ease;
}

.collections-section:has(.dropdown-open) {
    padding-bottom: 12rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease;
}




.grid-catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    animation: fadeIn 0.8s ease;
}




.page-catalogo .grid-catalogo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.page-catalogo .section-title {
    text-align: center;
    margin: 2.5rem auto 2rem;
    padding: 0 2rem;
}


@media (max-width: 900px) {
    .page-catalogo .grid-catalogo {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1.25rem;
    }
}

@media (max-width: 550px) {
    .page-catalogo .grid-catalogo {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }
}

.catalogo-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.catalogo-card-clickable {
    cursor: pointer;
}

.catalogo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(99, 102, 241, 0.15),
        0 0 30px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
}


.catalogo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.catalogo-card:hover::before {
    opacity: 1;
}


.catalogo-img-wrap {
    position: relative;
    overflow: hidden;
    height: 130px;
}


.catalogo-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalogo-card:hover .catalogo-img-wrap::after {
    opacity: 1;
}

.catalogo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalogo-card:hover .catalogo-img {
    transform: scale(1.08);
}


.catalogo-info {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    background: var(--bg-card);
    flex-grow: 1;
}

.catalogo-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 2.6em;
}

.catalogo-info p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    opacity: 0.85;
    flex-grow: 1;
}


.catalogo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff !important;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: auto;
}


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

.catalogo-btn:hover::before {
    left: 100%;
}


a.catalogo-btn:hover,
.catalogo-btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 0 15px rgba(139, 92, 246, 0.25);
}

.catalogo-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.catalogo-btn:not(.dropdown-btn):hover i.fa-arrow-right {
    transform: translateX(3px);
}


.dropdown-btn i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.catalogo-card.dropdown-open .dropdown-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.catalogo-card {
    position: relative;
}

.catalogo-card.dropdown-open {
    overflow: visible;
    z-index: 9999;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    animation: slideDown 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.catalogo-card.dropdown-open .dropdown-menu {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: var(--bg-body);
    border-radius: 6px;
    border: 1px solid transparent;
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary);
    transform: translateX(4px);
    padding-left: 1rem;
}

.dropdown-menu a i {
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.25s ease;
    color: var(--primary);
}

.dropdown-menu a:hover i {
    opacity: 1;
    transform: translateX(2px);
}


@media (max-width: 768px) {
    .grid-catalogo {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .catalogo-img-wrap {
        height: 110px;
    }

    .catalogo-info {
        padding: 0.85rem;
    }

    .catalogo-info h3 {
        font-size: 0.9rem;
    }

    .catalogo-info p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .catalogo-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.72rem;
    }

    /* Dropdown en móvil */
    .catalogo-card.dropdown-open {
        z-index: 99999 !important;
        overflow: visible !important;
    }

    .catalogo-card.dropdown-open .dropdown-menu {
        z-index: 999999 !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        min-width: 100%;
    }

    .collections-section {
        position: relative;
        z-index: 30;
        overflow: visible;
        transition: padding-bottom 0.3s ease;
    }

    .collections-section:has(.dropdown-open) {
        padding-bottom: 12rem;
    }
}

@media (max-width: 480px) {
    .grid-catalogo {
        gap: 0.75rem;
    }

    .catalogo-img-wrap {
        height: 100px;
    }

    .catalogo-info {
        padding: 0.75rem;
    }

    .catalogo-info h3 {
        font-size: 0.85rem;
    }
}


.featured-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-body);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
}

/* Responsive para featured section - Ver todo debajo del título en móvil */
@media (max-width: 768px) {
    .featured-section-header {
        align-items: center !important;
    }

    .featured-header-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem;
        text-align: center;
    }

    .featured-title {
        font-size: 2.2rem !important;
        justify-content: center;
    }

    .featured-title i {
        display: none;
    }

    .featured-link-arrow {
        margin-left: 0;
    }

    .featured-description {
        margin-left: 0 !important;
        text-align: center;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    animation: fadeIn 1s ease 0.2s backwards;
}


.info-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.4s backwards;
}

.info-section-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}


.info-headline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #a855f7;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    width: fit-content;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.info-badge i {
    font-size: 0.75rem;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0;
}

.info-title .text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: 0.5rem;
}

.info-link:hover {
    gap: 0.8rem;
    color: #a855f7;
}

.info-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.info-link:hover i {
    transform: translateX(3px);
}


.info-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: block;
    animation: pulse 3s ease-in-out infinite;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}


@media (max-width: 1024px) {
    .info-section-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .info-headline {
        text-align: center;
        align-items: center;
    }

    .info-title {
        font-size: 2rem;
    }

    .info-description {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .info-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .info-section {
        padding: 3rem 1.5rem;
    }

    .info-title {
        font-size: 1.75rem;
    }

    .info-description {
        font-size: 1rem;
    }
}


.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-body);
}

.product-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.product-image img.primary-image {
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.product-image img.secondary-image {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img.primary-image {
    opacity: 0;
}

.product-card:hover .product-image img.secondary-image {
    opacity: 1;
}


.product-card:hover .product-image img:only-child {
    transform: scale(1.1);
}


@media (hover: none) and (pointer: coarse) {
    .product-card:hover .product-image img.primary-image {
        opacity: 1;
    }

    .product-card:hover .product-image img.secondary-image {
        opacity: 0;
    }
}

.badge-sale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    animation: pulse 1.5s ease-in-out infinite;
}


.badge-smart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: badgeFadeIn 0.3s ease-out;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.badge-nuevo {
    background: #10b981;
}

.badge-trending {
    background: #8b5cf6;
}

.badge-popular {
    background: #f59e0b;
}

.badge-top {
    background: #3b82f6;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    flex-grow: 1;
    min-height: 2.6em;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: auto;
}

.product-price .price {
    color: #a855f7;
    font-weight: 800;
    animation: priceGlow 3.5s ease-in-out infinite;
}

@keyframes priceGlow {

    0%,
    100% {
        text-shadow: 0 0 3px rgba(168, 85, 247, 0.15);
    }

    50% {
        text-shadow: 0 0 8px rgba(168, 85, 247, 0.35);
    }
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.7;
}

.btn-add-cart {
    width: 100%;
    margin-top: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-brand {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }


    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .collection-card {
        height: 180px;
    }

    .collection-overlay {
        padding: 1rem;
    }

    .collection-overlay h3 {
        font-size: 1.2rem;
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        font-size: 0.85rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .price-old {
        font-size: 0.85rem;
    }

    .btn-add-cart {
        padding: 0.7rem;
        font-size: 0.8rem;
    }

    .badge-sale {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }


    .info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        transform: translateY(-40px);
    }
}



.catalogo-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    animation: fadeIn 1s ease 0.5s backwards;
    overflow-x: clip;
    overflow-y: visible;
    padding-bottom: 220px;
    margin-bottom: -220px;
}

.catalogo-carousel .carousel-container {
    position: relative;
    overflow: visible;
    padding: 0 1rem;
    width: 100%;
}

.catalogo-carousel .carousel-track {
    display: flex;
    gap: 1.5rem;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}


.catalogo-carousel .carousel-track.dragging {
    will-change: transform;

}

.catalogo-carousel .carousel-track.dragging,
.catalogo-carousel .carousel-track.dragging * {
    transition: none !important;
}

.catalogo-carousel .carousel-track.dragging .catalogo-card,
.catalogo-carousel .carousel-track.dragging .catalogo-card * {
    pointer-events: none;
    animation: none !important;
}


@media (hover: none) {
    .catalogo-card:hover {
        transform: none;
    }

    .catalogo-card:hover .catalogo-img {
        transform: none;
    }

    .catalogo-img {
        transition: none;
    }

    .catalogo-card {
        transition: none;
    }
}

.catalogo-carousel .carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.catalogo-carousel:has(.dropdown-open) .carousel-arrows {
    opacity: 0;
    pointer-events: none;
}

.catalogo-carousel .carousel-arrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    background: var(--bg-card);
    border: 2px solid var(--border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.catalogo-carousel .carousel-arrow:hover {
    background: var(--bg-body);
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25), 0 0 15px rgba(99, 102, 241, 0.15);
}

.catalogo-carousel .carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}


.catalogo-carousel .catalogo-card {
    min-width: 220px;
    max-width: 220px;
    width: 220px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .catalogo-carousel .carousel-container {
        position: relative;
        padding: 0 1rem;
        padding-right: 0;
        overflow: visible;
    }

    .catalogo-carousel .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .catalogo-carousel .carousel-track {

        gap: 1rem;
        padding-right: 1rem;

    }

    .catalogo-carousel .catalogo-card {
        scroll-snap-align: start;
        min-width: 45vw;
        max-width: 45vw;
        width: 45vw;
    }

    .catalogo-carousel .carousel-arrow {
        display: none;
    }


    .catalogo-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        background: linear-gradient(to left, var(--bg-body) 0%, transparent 100%);
        pointer-events: none;
        z-index: 5;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }


    .catalogo-carousel.scrolled::after {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .catalogo-carousel .carousel-container {
        padding: 0 0.75rem;
    }

    .catalogo-carousel .carousel-track {
        gap: 0.75rem;
    }

    .catalogo-carousel .catalogo-card {
        min-width: 160px;
        max-width: 160px;
        width: 160px;
    }
}


.collections-section .section-header {
    margin-bottom: 2.5rem;
}

.collections-section .section-title {
    margin-bottom: 0;
}




@media (max-width: 1799px) {


    .collections-section,
    .featured-section,
    .info-section {
        zoom: 0.9;
    }
}


@media (max-width: 900px) {

    .collections-section,
    .featured-section,
    .info-section {
        zoom: 1;
    }
}

[data-theme="dark"] .catalogo-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(18, 18, 26, 1) 100%);
}

[data-theme="dark"] .catalogo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .catalogo-card .catalogo-info {
    position: relative;
    z-index: 1;
    background: transparent;
}

[data-theme="dark"] .product-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(18, 18, 26, 1) 100%);
}

[data-theme="dark"] .product-card .product-info {
    position: relative;
    z-index: 1;
    background: transparent;
}

[data-theme="dark"] .info-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(18, 18, 26, 1) 100%);
    overflow: hidden;
}

.equipos-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 20;
    background: var(--bg-body);
}

.equipos-section .section-header {
    margin-bottom: 0;
}

.equipos-section .section-title {
    margin-bottom: 0.25rem;
}

.equipos-description {
    text-align: center;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.equipos-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.equipo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.9), rgba(20, 20, 30, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.equipo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.equipo-card img {
    width: 100px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.equipo-card span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .section-header .section-title {
        text-align: center;
        width: 100%;
    }

    .link-arrow {
        background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-size: 0.9rem;
        box-shadow: 0 4px 15px rgba(107, 33, 168, 0.4);
        border: 1px solid rgba(139, 92, 246, 0.3);
    }

    .link-arrow:hover {
        gap: 0.75rem;
        transform: translateY(-2px);
        background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    }

    .equipos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem;
        max-width: 100% !important;
    }

    .equipo-card {
        padding: 1.25rem 1rem !important;
    }

    .equipo-card img {
        width: 70px !important;
        height: 85px !important;
    }

    .equipo-card span {
        font-size: 0.85rem !important;
    }

    .equipos-section {
        padding: 2.5rem 1rem !important;
    }

    .equipos-section p {
        padding: 0 0.5rem;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .equipos-grid {
        gap: 0.75rem !important;
    }

    .equipo-card {
        padding: 1rem 0.75rem !important;
    }

    .equipo-card img {
        width: 60px !important;
        height: 70px !important;
        margin-bottom: 0.5rem !important;
    }

    .equipo-card span {
        font-size: 0.8rem !important;
    }

    .link-arrow {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}