@charset "UTF-8";
:root {
    --primary: #7c3571;
}

@font-face {
    font-family: "Averta STD";
    font-style: normal;
    font-weight: normal;
    src:
        url("../fonts/AvertaStd-Regular?#iefix") format("eot"),
        url("../fonts/AvertaStd-Regular.woff") format("woff"),
        url("../fonts/AvertaStd-Regular.woff2") format("woff2"),
        url("../fonts/AvertaStd-Regular.ttf") format("truetype"),
        url("../fonts/AvertaStd-Regular.svg") format("svg");
}
@font-face {
    font-family: "AvertaStd";
    src:
        url("../fonts/AvertaStd-Regular.woff2") format("woff2"),
        url("../fonts/AvertaStd-Regular.woff") format("woff"),
        url("../fonts/AvertaStd-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "AvertaStd";
    src:
        url("../fonts/AvertaStd-Bold.woff2") format("woff2"),
        url("../fonts/AvertaStd-Bold.woff") format("woff"),
        url("../fonts/AvertaStd-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "AvertaStd";
    src: url("../fonts/AvertaStd-Black.eot");
    src:
        url("../fonts/AvertaStd-Black.eot?#iefix") format("embedded-opentype"),
        url("../fonts/AvertaStd-Black.woff2") format("woff2"),
        url("../fonts/AvertaStd-Black.woff") format("woff"),
        url("../fonts/AvertaStd-Black.ttf") format("truetype"),
        url("../fonts/AvertaStd-Black.svg#AvertaStd-Black") format("svg");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "AvertaStd", sans-serif;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "AvertaStd", sans-serif;
}

.h1,
h1 {
    font-weight: 900;
    margin-bottom: 40px;
    font-size: clamp(2rem, 2.4vw, 2.6rem);
}

p {
    font-family: "AvertaStd", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
a:hover {
    color: #7c3571;
}

ul {
    list-style: none;
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #7c2294 0%, #72279e 50%, #c84a79 100%);
    border-radius: 5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
section.section {
    padding: 40px 15px;
}

/* ===== NAV CONTENEDOR ===== */
.nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 40px;
    transition: all 0.4s ease;
}

.nav-inner {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
}

/* ===== LOGO ===== */
.nav-logo {
    justify-self: start;
}

.nav .nav-logo img {
    width: 320px;
    height: auto;
}

.nav.affix .nav-logo img {
    width: 220px;
    height: auto;
}

/* ===== MENU DESKTOP ===== */
.nav-menu {
    justify-self: center;
    display: flex;
    align-items: center;
}

.navlinks {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navlinks li {
    position: relative;
}

.navlinks li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transition: color 0.3s ease;
}

.navlinks li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #7c3571;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.navlinks li a:hover::before {
    transform: scaleX(1);
}

.navlinks li a:hover {
    color: #e4e1e3;
}

/* ===============================
   EXCLUSIONES
   =============================== */
/* Logo */
.nav .logo a::after,
.nav .logo a:hover::after {
    display: none;
}

/* Íconos (ej: redes, search, user, etc) */
.nav .icon a::after,
.nav .icon a:hover::after {
    display: none;
}

/* Submenú */
.nav .submenu a::after,
.nav .submenu a:hover::after {
    display: none;
}

/* ===== FLECHA DROPDOWN ===== */
.dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* ===== DROPDOWN DESKTOP ===== */
.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    margin-top: 12px;
    left: 0;
    z-index: 9999;
    background: #111;
    min-width: 220px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.dropdown li a:hover {
    background: #7c3571;
    color: white;
    transition: color 0.3s ease;
}

/* ===== BOTONERA DESKTOP ===== */
.nav-actions--desktop {
    display: flex;
    gap: 1.5rem;
    justify-self: end;
}

.nav-actions--desktop a {
    font-size: 16px;
    color: white;
}

.nav-actions--desktop a:hover,
.nav-actions--desktop a:active,
.nav-actions--desktop a:focus {
    color: #f958a7;
}

/* ===== BOTONERA MOBILE (oculta por defecto) ===== */
.nav-actions--mobile {
    display: none;
}

/* ===== HAMBURGER ===== */
.navTrigger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    animation: outT 0.8s backwards reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    animation: outM 0.8s backwards reverse;
}

.navTrigger i:nth-child(3) {
    animation: outBtm 0.8s backwards reverse;
}

.navTrigger.active i:nth-child(1) {
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    animation: inBtm 0.8s forwards;
}

/* ===== AFFIX ===== */
.affix {
    padding: 10px 15px;
    background-color: #1c1b41;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 991px) {
    .nav-inner {
        grid-template-columns: auto auto;
    }
    /* oculto acciones desktop */
    .nav-actions--desktop {
        display: none;
    }
    .nav .nav-logo img {
        width: 220px;
        height: auto;
    }
    .nav.affix .nav-logo img {
        width: 220px;
        height: auto;
    }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: #111;
        width: 100%;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu.show_list {
        display: flex;
    }
    .navlinks {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 120px 20px 0;
        gap: 2rem;
    }
    /* ===== DROPDOWN MOBILE ===== */
    .has-dropdown .dropdown {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 10px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
        background: transparent;
        min-width: 100%;
    }
    .has-dropdown.open .dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .dropdown li a {
        padding-left: 0;
        text-align: left;
    }
    /* ===== BOTONERA MOBILE ===== */
    .nav-actions--mobile {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 30px 0 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navTrigger {
        display: block;
    }
}
/* ===== ANIMATIONS ===== */
@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@keyframes inT {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(9px) rotate(0);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@keyframes outT {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(9px) rotate(0);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@keyframes inBtm {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-9px) rotate(0);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes outBtm {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-9px) rotate(0);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@media screen and (max-width: 360px) {
    .nav-inner {
        grid-template-columns: auto auto;
        max-width: 300px;
    }
}
.bg-uno {
    background-image: url(../imagenes/bg-uno.png);
}

.parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
}

.bg-violet {
    background-color: #7c3571;
}

.bg-gris {
    background-color: #f5f5f5;
}

.contador-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contador-item {
    text-align: center;
}

.contador-item .count {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.contador-item .count-label {
    font-size: 16px;
    margin-top: 4px;
    color: #333;
}

@media (max-width: 991px) {
    .contador-item {
        text-align: center;
        width: 100%;
    }
}
.slider {
    position: relative;
    height: 100vh;
    background: #602a4c;
}

.slides {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide:not(.split)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.slide-media {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.slide-content.center {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1,
.slide.split h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.slide-content p,
.slide.split p {
    font-size: 20px;
    color: #fff;
}

.slide.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.slide.split::after {
    display: none;
}

.slide-text {
    padding: 80px;
    color: #fff;
    z-index: 2;
}

.slider-ui {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow {
    background: rgba(96, 42, 76, 0.5);
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: #fff;
    color: #000;
}

.slider-pagination {
    display: flex;
    align-items: center;
}

.slider-pagination .line {
    width: 50px;
    height: 1px;
    background: #fff;
    margin: 0 12px;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .slide.split {
        grid-template-columns: 1fr;
    }
    .slide-media {
        height: 50vh;
    }
    .slide-text {
        padding: 80px 40px 30px;
    }
}
/* ==================================================
   BASE
   ================================================== */
.anim {
    opacity: 0;
    will-change: opacity, transform;
}

/* ==================================================
   TIPOS DE ANIMACIÓN (estado inicial)
   ================================================== */
.fade-up {
    transform: translateY(30px);
}

.fade-down {
    transform: translateY(-30px);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.fade-in {
    transform: none;
}

/* ==================================================
   ESTADO ACTIVO (entrada animada)
   ================================================== */
.slide.active .anim.animate-in {
    opacity: 1;
    transform: none;
}

/* ==================================================
   TRANSICIONES
   ================================================== */
.fade-up,
.fade-down,
.fade-left,
.fade-right {
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in {
    transition: opacity 0.6s ease;
}

/* ==================================================
   DELAYS
   ================================================== */
.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

/* ==================================================
   NUEVA ANIMACIÓN PARA SLIDES POSTERIORES
   ================================================== */
/* Base de la nueva animación */
.anim-second {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    will-change: opacity, transform;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* Estado activo para la segunda pasada */
.slide.active .anim-second {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Delays opcionales */
.delay-1-second {
    transition-delay: 0.2s;
}

.delay-2-second {
    transition-delay: 0.4s;
}

.delay-3-second {
    transition-delay: 0.6s;
}

.delay-4-second {
    transition-delay: 0.8s;
}

/* ==================================================
   BASE
   ================================================== */
.anim-scroll {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* ==================================================
   TIPOS DE ANIMACIÓN (estado inicial)
   ================================================== */
.scroll-up {
    transform: translateY(20px);
}

.scroll-down {
    transform: translateY(-20px);
}

.scroll-left {
    transform: translateX(-30px);
}

.scroll-right {
    transform: translateX(30px);
}

.scroll-zoom {
    transform: scale(0.95);
}

/* ==================================================
   ESTADO ACTIVO (entrada animada)
   ================================================== */
.anim-scroll.active {
    opacity: 1;
    transform: none;
}

/* ==================================================
   DELAYS
   ================================================== */
.scroll-delay-1 {
    transition-delay: 0.15s;
}

.scroll-delay-2 {
    transition-delay: 0.3s;
}

.scroll-delay-3 {
    transition-delay: 0.45s;
}

.scroll-delay-4 {
    transition-delay: 0.6s;
}

.scroll-delay-5 {
    transition-delay: 0.75s;
}

.btn-linear {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    color: #fff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(90deg, #7c2294 0%, #72279e 50%, #c84a79 100%);
    background-size: 200% 100%;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 50px;
    margin-top: 20px;
}
.btn-linear:hover {
    animation: gradient-flow 2s linear infinite;
    color: white;
}
.btn-linear:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    filter: brightness(1.1);
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: white !important;
}

/**********************
Ws botón redondo con tooltip ws-tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
    position: fixed;
    bottom: 13px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    cursor: pointer;
    display: block;
    box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    z-index: 999;
    background: #1ca550;
    padding: 8px 4px;
    opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
    padding-left: 0px;
    padding-top: 0px;
    width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
    font-size: 44px;
    color: white;
}

.ws.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #1ca550;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.scroll-stage {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.stage-inner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.stage-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stage-track {
    position: absolute;
    inset: 0;
}

.stage-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    clip-path: inset(0 0 0 0);
}

.stage-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.stage-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
}

.stage-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: all;
}

.stage-nav .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.stage-nav .dot.active {
    background: #fff;
}

.comparator-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    max-width: 60%;
}

/* Overlay degradado para destacar títulos */
.stage-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35) 25%,
        rgba(0, 0, 0, 0) 70%
    );
    z-index: 2; /* debajo de overlay de títulos */
}

.categorias-slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.categorias-slider {
    display: flex;
    height: 100%;
    position: relative;
}

.categoria-slide {
    flex: 1;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    /* filter: grayscale(1); */
}

.categoria-slide:hover {
    filter: grayscale(0);
}

.categoria-slide.categoria-active {
    flex: 2.5;
    filter: grayscale(0);
}

.categoria-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
    z-index: 1;
}

.categoria-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; /* encima del ::before */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colores específicos por clase */
.categoria-slide.uno::after {
    background-color: rgba(95, 42, 76, 0.5);
}

.categoria-slide.dos::after {
    background-color: rgba(132, 69, 192, 0.5);
}

.categoria-slide.tres::after {
    background-color: rgba(158, 34, 139, 0.5);
}

.categoria-slide.cuatro::after {
    background-color: rgba(58, 54, 200, 0.5);
}

/* Al hover o activo removemos el color */
.categoria-slide:hover::after,
.categoria-slide.categoria-active::after {
    background-color: transparent;
}

.categoria-slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 4;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria-slide.categoria-active .categoria-slide-content {
    bottom: 80px;
}

.categoria-number {
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.categoria-slide.categoria-active .categoria-number {
    bottom: auto;
    top: -50px;
    font-size: 48px;
    left: 0;
}

.categoria-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-bottom: 5px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    position: absolute;
    bottom: 100px;
    left: 30px;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria-slide.categoria-active .categoria-title {
    transform: rotate(0deg);
    position: static;
    transform-origin: unset;
}

.categoria-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria-slide.categoria-active .categoria-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.categoria-desc {
    font-size: 14px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria-slide.categoria-active .categoria-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
    max-width: 250px;
}

.categoria-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.categoria-prev {
    left: 20px;
}

.categoria-next {
    right: 20px;
}

.categoria-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .categorias-slider {
        flex-direction: column;
    }
    .categoria-slide {
        flex: 1;
        min-height: 80px;
    }
    .categoria-slide.categoria-active {
        flex: 2;
    }
    .categoria-number {
        font-size: 32px;
    }
}
.add-button {
    position: absolute;
    bottom: 30px;
    right: 0px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
}

.add-button::before,
.add-button::after {
    content: "";
    position: absolute;
    background: white;
    transition: all 0.4s ease;
}

.add-button::before {
    width: 12px;
    height: 2px;
}

.add-button::after {
    width: 2px;
    height: 12px;
    transform: rotate(0deg);
}

.categoria-slide.categoria-active .add-button::before {
    transform: rotate(0deg);
}

.categoria-slide.categoria-active .add-button::after {
    opacity: 0;
    transform: scale(0);
}

@media (max-width: 991px) {
    .categoria-title {
        transform: none;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .categorias-slider-container {
        height: 200vh;
    }
}
.bg-dos {
    background-image: url(../imagenes/bg-dos.jpg);
    background-size: cover;
    background-position: center;
}

.productos-wrapper {
    position: relative;
    padding-top: 64px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.productos-carousel-container {
    width: calc(100% - 60px);
    overflow: visible;
    position: relative;
}

.productos-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

.producto-item {
    min-width: 25%;
    padding-top: 60px;
    position: relative;
}

.etiqueta {
    position: absolute;
    right: 0;
    top: 85px;
    z-index: 1;
}

.etiqueta img {
    max-width: 110px;
}

.producto-card {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.producto-imagen {
    margin: -100px auto auto;
    text-align: center;
    pointer-events: none;
}

.producto-imagen img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

.producto-card h3 {
    font-size: 18px;
    margin: 10px 0 15px 0;
    text-transform: uppercase;
    font-weight: 800;
}

.productos-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    color: #ffffff;
    font-size: 16px;
}

.productos-nav .productos-prev,
.productos-nav .productos-next {
    position: relative;
    cursor: pointer;
    padding-bottom: 5px;
}

.productos-nav .productos-prev::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.productos-nav .productos-next::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.productos-nav .productos-prev:hover::after {
    left: 0;
}

.productos-nav .productos-next:hover::after {
    right: 0;
}

.productos-vertical {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.productos-vertical::before {
    content: "";
    width: 2px;
    height: 80px;
    background: #ffffff;
    display: block;
}

.producto-card {
    transition: all 0.3s ease;
}

.producto-imagen img {
    transition: transform 0.4s ease;
}

.producto-item:hover .producto-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.producto-item:hover .producto-imagen img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .producto-item {
        min-width: 50%;
    }
    .productos-vertical {
        display: none;
    }
}
@media (max-width: 576px) {
    .producto-item {
        min-width: 100%;
        padding: 0;
    }
    .productos-carousel-container {
        width: 100%;
    }
    .productos-carousel {
        gap: 0;
    }
}
.clientes-wrapper {
    margin-top: 40px;
    position: relative;
    min-height: 160px;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cliente-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    height: 120px;
}

.cliente-slot.visible {
    opacity: 1;
    transform: translateY(0);
}

.cliente-slot img {
    width: 100%;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.cliente-slot:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Tablet */
@media (max-width: 992px) {
    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .clientes-grid {
        grid-template-columns: 1fr;
    }
    .cliente-slot {
        height: 70px;
    }
}
.steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-section {
    width: 100%;
    max-width: 1100px;
    padding: 40px 16px;
    text-align: center;
}

/* Grid responsive */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
}

/* Tablet */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Desktop */
@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Tarjetas */
.steps-card-wrapper {
    position: relative;
}

.steps-card {
    --r: 30px;
    --s: 40px;
    background-color: #fff;
    padding: 24px;
    width: 100%;
    text-align: left;
    border-radius: 30px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    height: 100%;
    clip-path: shape(
        from 0 0,
        hline to calc(100% - var(--s) - 2 * var(--r)),
        arc by var(--r) var(--r) of var(--r) cw,
        arc by var(--s) var(--s) of var(--s),
        arc by var(--r) var(--r) of var(--r) cw,
        vline to 100%,
        hline to 0
    );
}

.zoom {
    display: block;
    overflow: hidden;
}

.zoom img {
    transform: scale(1);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.zoom:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

.steps-card-circle {
    width: 60px;
    height: 60px;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.steps-card-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding-right: 70px;
}

.steps-card-circle.cat-uno {
    background-color: #5f2a4c;
}

.steps-card-circle.cat-dos {
    background-color: #8445c0;
}

.steps-card-circle.cat-tres {
    background-color: #9e228b;
}

.steps-card-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 12px;
    padding-right: 65px;
}

.steps-card-figure {
    height: 200px;
    background-color: #eee;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.steps-card-img {
    height: 100%;
    position: absolute;
    width: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Pequeño ajuste en móviles */
@media (max-width: 576px) {
    .steps-card-figure {
        height: 180px;
    }
    .steps-card {
        padding: 18px;
    }
}
/* Compatibilidad clip-path */
.no-support {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8666666667);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1em;
    z-index: 10;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@supports (clip-path: shape(from 0 0, move to 0 0)) {
    .no-support {
        display: none;
    }
}
.site-footer {
    background: #1c1b41;
    color: #ffffff;
    padding: 40px 0;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.col-footer {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 15px;
}

.copyright-text {
    color: #ffffff;
    margin-top: 10px;
    font-size: 0.875rem;
}

.contact-info p {
    margin: 10px 0;
    color: #ffffff;
    font-size: 0.875rem;
}

.contact-info i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icon {
    background: #ffffff;
    color: #1c1b41;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 10px;
}

.social-icon i {
    font-size: 16px;
}

.social-icon:last-child {
    margin-right: 0;
}

.copyright {
    width: 100%;
    background: #201f1f;
    padding: 10px;
}

.text-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
    .col-footer {
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto;
    }
} /*# sourceMappingURL=styles.css.map */
