@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(2.4rem, 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: #111;
}

/* ===== 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);
  }
}
.bg-uno {
  background-image: url(../imagenes/bg-uno.png);
}

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

.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;
}

/* ===============================
   SLIDER BASE
   =============================== */
.slider {
  position: relative;
  height: 280vh; /* 2 slides */
  background: #000;
}

.slides {
  position: sticky;
  top: 0;
  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;
}

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

/* overlay solo en slide full */
.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;
}

/* ===============================
   CONTENIDO
   =============================== */
.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(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
}

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

/* ===============================
   SLIDE 2 – SPLIT
   =============================== */
.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;
}

.slide-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 20px;
}

/* ===============================
   UI INFERIOR (SCROLL + PAGINATION)
   =============================== */
.slider-ui {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
  pointer-events: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ===============================
   SCROLL INDICATOR
   =============================== */
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.4s infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    top: 8px;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 18px;
  }
}
/* ===============================
   PAGINATION
   =============================== */
.slider-pagination {
  display: flex;
  align-items: center;
}

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

/* ===============================
   RESPONSIVE
   =============================== */
@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;
}

.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;
}

.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;
  -webkit-backdrop-filter: blur(10px);
          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: 30px;
  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: 768px) {
  .categoria-title {
    transform: none;
    position: static;
  }
}/*# sourceMappingURL=styles.css.map */