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

/* ===============================
   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: fixed;
  left: 50%;
  bottom: 40px;
  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;
}/*# sourceMappingURL=styles.css.map */