@font-face {
  font-family: 'bebas-b';
  src: url('../assets/fonts/bebasneue-bold.otf'); 
  font-display: block; 
}

@font-face {
  font-family: 'bebas-r';
  src: url('../assets/fonts/bebasneue-regular.otf'); 
  font-display: block; 
}

@font-face {
  font-family: 'helvetica-l';
  src: url('../assets/fonts/helveticaneuelight.otf'); 
  font-display: block; 
}

@font-face {
  font-family: 'oswald-m';
  src: url('../assets/fonts/Oswald-Medium.ttf'); 
  font-display: block; 
}

@font-face {
  font-family: 'oswald-b';
  src: url('../assets/fonts/Oswald-Bold.ttf'); 
  font-display: block; 
}

@font-face {
  font-family: 'helvetica-b';
  src: url('../assets/fonts/HelveticaNeueBold.otf'); 
  font-display: block; 
}

@font-face {
  font-family: 'helvetica-r';
  src: url('../assets/fonts/HelveticaNeue.ttf'); 
  font-display: block; 
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x:hidden;
}

html {
  scroll-behavior: smooth;
} 

body {
  background-color: #0C1023;
}


a:hover {
  text-decoration: none;
}

button:focus {
  outline: none;
}

footer {
  position: relative;
  z-index: 9;
}

.logo {
  position: fixed;
  z-index: 9;
  left: 25px;
  top: 25px;
  width: 100% !important;
  height: auto !important;
  max-width: 150px;
}

/* Loader */
.no-scroll {
  overflow: hidden;
}

#loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-spinner {
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top: 8px solid #16f90c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animación de rotación */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#image-sequence {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../images/akipika_00000.jpg);
  z-index: 1;
}

.scroll-trigger {
  height: 400vh; 
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

#progress-bar {
  height: 5px; 
  background: #16f90c; 
  transition: width 0.2s; 
}

.progress-container {
  width: 300px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease; 
}

.progress-buffer {
  width: 300px;
  height: 5px;
  background-color: #3f3f3f;
  border-radius: 50px;
}

.progress-container button {
  color: #fff;
  text-align: center;
  background-color: transparent;
  border: none;
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
  cursor: pointer;
  font-family: 'bebas-b';
  font-size: 20px;
}

.progress-bar {
  height: 100%;
  width: 0;
  transition: width 0.1s;
  border-radius: 50px
}

/* Menú */
.menu ul li:hover a{
	color:#16f90c;
}

.menu {
	width:600px;
	margin:0 auto;
	position:relative;
	text-align:center;
	font-family: 'bebas-b', monospace;
  margin-bottom: 0;
}

.menu, .menu a {
	color:#fff;
}

.menudrop {
  position: fixed;
  top: -100%; 
  opacity: 0; 
  width: 0; 
  transition: top 0.3s, opacity 0.3s;
  background-color: rgba(0,0,0,.9);
  height: 100vh;
  overflow-y:scroll;
  z-index: 999999;
  display: flex;
  align-items: start;
  padding-top: 200px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.menu ul li {
  opacity: 0; 
  transform: translateY(35px); 
  margin:0;
	text-transform:uppercase;
	font-size:10rem;
	opacity:0;
	cursor:pointer;
  font-family: 'bebas-b';
  line-height: 1;
}

#hamburger {
	position: fixed;
	padding:10px;
	top:10px;
	right:2%;
	width:65px;
	height:50px;
	z-index:10;
	cursor:pointer;
}

#hamburger:hover {
	width:80px;
}

#hamburger span {
	width:100%;
	height:3px;
	background-color:#fff;
	display:block;
	margin:10px auto;
}

#hamburger {
	transition:0.3s;
}

#hamburger {
	animation:moveme 0.3s 2 alternate backwards;
}

@keyframes moveme {
  from {width: 65px;}
  to {width: 75px;}
}

@media only screen and (min-width: 576px) {
	menu ul li {
		font-size:3.2rem;
	}
}

/* Principal */
.principal {
  text-align: center;
  padding: 180px 0 100px 0;
  position: relative;
  opacity: 0;
  top: -140px;
  z-index: 1;
  background-image: url(../assets/section-1/bg-section-1.png);
  background-position: 50% 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

.principal h1 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: 'helvetica-l';
  margin-bottom: 0;
}

.principal h2 {
  color: #fff;
  font-size: 70px;
  font-family: 'bebas-b';
  max-width: 1000px;
  margin: 0 auto;
  line-height: 100px;
  margin-bottom: 0;
}

.principal--button:hover {
  color: #fff;
}

.principal--button {
  background-color: #272E50;
  border-radius: 12px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  height: 50px;
  display: flex;
  max-width: 180px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-family: 'bebas-r';
  margin-top: 30px;
}

/* Somos */
#animation2 {
  background-color: #0c1023;
}

.somos h2 {
  color: #fff;
  font-size: 70px;
  font-family: 'bebas-b';
  max-width: 1000px;
  margin: 0 auto;
  line-height: 100px;
  margin-bottom: 0;
  text-align: center;
}

.somos {
}

.somos p {
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}


/* Chilidotsdots */
.chilidots {
  padding: 0px 0 0 0;
  margin-top: -50px;
  opacity: 0;
  top: 0;
}

.chilidots--img {
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
  max-width: 670px;
}

.chilidos--img__float {
  position: absolute;
}

.chilidos--img__left {
  left: 0;
  max-width: 200px;
}

/* Dots */
#animation2 {
  position: relative;
}

.dots {
  padding: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #0c1023;
  height: 100vh;
  position: absolute;
}

.dots--img {
  width: 100% !important;
  height: auto !important;
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

.dots--img__float {
  position: absolute;
  top: 0;
}

.dots--img__left {
  max-width: 300px;
  top: 0%;
  left: 0;
}

.dots--img__rigth {
  right: 0;
  max-width: 170px;
  top: 50%;
  transform: translate(0, -50%);
}

/* Hashtag */
.hashtag {
  text-align: center;
  color: #fff;
  padding: 150px 0 0 0;
}

.hashtag p {
  color: #fff;
  font-size: 16px;
  font-family: 'helvetica-l';
  margin-bottom: 0;
}

.hashtag h3 {
  color: #fff;
  font-size: 180px;
  font-family: 'bebas-b';
  line-height: 1;
  margin-bottom: 0;
}

/* Cubimangos */
.cubimangos {
  background-image: url(../assets/section-2/bg-section-2.png);
  background-position: 50% -100px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.cubimangos--img {
  width: 100% !important;
  height: auto !important;
  max-width: 360px;
  margin: 0 auto;
  display: block;
}

.cubimangos--img__float {
  position: absolute;
  left: 240px;
  top: 0;
  max-width: 120px;
}

.cubimangos--img__rigth {
  position: absolute;
  left: 70%;
  transform: translate(-50%, 0);
  top: 0;
  max-width: 120px;
}

/* Relletón */
#animation4 {
  position: relative;
  z-index: 2;
}

.relleton {
  background-image: url(../assets/section-3/bg-section-3.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 615px 0 0 0;
  position: relative;
  z-index: 2;
  height: 100vh;
  position: absolute;
}

.relleton h4 {
  color: #fff;
  font-size: 70px;
  font-family: 'oswald-b';
  max-width: 1000px;
  margin: 0 auto;
  line-height: 100px;
  margin-bottom: 0;
  text-align: center;
  max-width: 580px;
  line-height: 1;
}

.relleton p {
  color: #fff;
  font-size: 16px;
  font-family: 'helvetica-l';
  margin-bottom: 0;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
}

.relleton--button:hover {
  color: #fff;
}

.relleton--button {
  background-color: #272E50;
  border-radius: 12px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  height: 50px;
  display: flex;
  max-width: 180px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-family: 'bebas-r';
  margin-top: 30px;
}

/* Productos */
.productos {
  background-image: url(../assets/section-4/bg-section-4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  display: flex;
  padding: 120px 0 0 0;
  margin-top: 0px;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.productos--img {
  width: 100% !important;
  height: auto !important;
  max-width: 400px;
}

/* Encuentranos */
.encuentranos {
  text-align: center;
  padding: 50px 0 0 0;
}

.encuentranos--p {
  color: #fff;
  font-size: 16px;
  font-family: 'helvetica-l';
  margin-bottom: 0;
}

.encuentranos h5 {
  color: #fff;
  font-size: 70px;
  font-family: 'bebas-b';
  max-width: 1000px;
  margin: 0 auto;
  line-height: 100px;
  margin-bottom: 0;
}

.encuentranos--div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px; 
  max-width: 750px;
  margin: 0 auto;
}

.encuentranos--item {
  flex: 1 1 calc(20% - 10px); 
  box-sizing: border-box; 
}

.encuentranos--item img {
  width: 100% !important;
  height: auto !important; 
  max-width: 107px;
}

.container.center-last-row {
  justify-content: flex-start; 
}

.container.center-last-row::after {
  content: "";
  flex: 1 1 calc(20% - 10px); 
}

.max-80 {
  max-width: 80px;
}

.encuentranos--div__info {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.encuentranos--col {
  flex: 1 1;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  text-align: left;
}

.encuentranos--p {
  color: #fff;
}

.encuentranos--p__title {
  color: #fff;
  font-size: 40px;
  font-family: 'bebas-b';
  text-align: left;
  margin-bottom: 0;
}

.encuentranos--col div a {
  text-decoration: none;
  font-family: 'helvetica-l';
}

.encuentranos--col div {
  display: flex;
  flex-wrap: wrap;
}

.encuentranos--p__info {
  color: #fff;
  margin-bottom: 0;
  text-decoration: none;
  font-family: 'helvetica-l';
}

/* Pulpabox */
.pulpabox {
  padding: 0px 0 0 0;
  background-image: url(../assets/section-5/bg-section-5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pulpabox--img {
  width: 100% !important;
  height: auto !important;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

/* Formulario */
.formulario {
  padding-bottom: 130px;
}

.formulario--p {
  color: #fff;
  font-size: 60px;
  font-family: 'oswald-m';
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.formulario--row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center
}

.formulario .form-control {
  background-color: #23294E;
  border: 1px solid #23294E;
  color: #7278A1;
  border-radius: 25px
}

.formulario .form-control::placeholder {
  color: #7278A1
}

.formulario textarea.form-control {
  border-radius: 18px
}

.formulario--button {
  background-color: #FFFFFF;
  color: #0C1023;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  height: 40px;
  width: 200px;
  border-radius: 25px;
  margin-top: 25px;
}

.formulario--grid {
  width: 100%;
  max-width: 480px;
}

/* Footer */
.footer {
  padding: 80px 0 ;
  text-align: center;
  color: #fff;
  font-family: 'helvetica-b';
  font-size: 14px;
}

.footer--ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.footer--ul li a i {
  font-size: 20px;
}

.footer--ul li a {
  display: flex;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}


/* MARQUEE */
.marquee--p{
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-family: 'oswald-m';
  text-transform: uppercase;
  margin-bottom: 80px;
}

.marquee--p__hashtag{
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-family: 'bebas-b';
  text-transform: uppercase;
  margin-top: -40px;
}

.marquee-container {
  padding: 50px 0;
}

.marquee--block {
  position: relative;
  display:flex; 
  align-items:center;
}

.marquee--line {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
  margin-top: -100px;
}

.marquee--text {
  display: inline-block;
  margin-right: 40px;
  white-space: nowrap;
  text-align: left;
  font-size: 180px;
  color: #fff;
  font-family: 'bebas-b';
  text-transform: uppercase;
}

.marquee--block__hashtag {
  position: relative;
  display:flex; 
  align-items:center;
}

.marquee--line__hashtag {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
}

.marquee--text__hashtag {
  display: inline-block;
  margin-right: 40px;
  white-space: nowrap;
  text-align: left;
  font-size: 180px;
  color: #fff;
  font-family: 'bebas-b';
  text-transform: uppercase;
}

.purple {
  cursor: pointer;
}

.purple:hover p{
  color: #a411fd;
}

.green {
  cursor: pointer;
}

.green:hover p{
  color: #16f90c;
}

.orange {
  cursor: pointer;
}

.orange:hover h3{
  color: #ff6d00;
}


/* Traducciones */
.div--translate {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999999;
}

.div--translate ul {
  list-style: none;
  padding: 0;
  color: #fff;
  margin-bottom: 0;
}

.div--translate ul li{
  cursor: pointer;
  border: 1px solid #fff;
  padding: 5px 15px;
  background-color: #0b1023;
}

.selected {
  font-weight: bold; /* O cualquier estilo que desees aplicar */
}

/* Form */
.respuesta {
  opacity: 1;
  display: block;
  width: 100%;
  color: #fff;
  margin-top: 2px;
  text-align: center;
}

#formularioContacto {
  position: relative;
  z-index: 9999;
}