/* ==========================================================================
   Landing Clickeados - Estilos Custom
   @package Astra_Child_Clickeados
   ========================================================================== */

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

html,
body {
    height: 100%;
}

body.landing-clickeados {
    font-family: 'Exo 2', sans-serif;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(150, 26, 22, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(150, 26, 22, 0.5);
    }
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
}

.menu-overlay {
    transition: opacity 0.3s;
}

.menu-panel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-active {
    width: 24px;
    border-radius: 9999px;
}

.category-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(150, 26, 22, 0.12);
}

.category-card:hover .cat-icon {
    transform: scale(1.1);
}

.cat-icon {
    transition: transform 0.3s;
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu.open {
    max-height: 500px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #961A16;
    border-radius: 3px;
}