@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter.ttf") format("opentype");
}
@font-face {
  font-family: "ClashDisplay";
  src: url("./fonts/ClashDisplay-Variable.ttf") format("opentype");
}
@font-face {
  font-family: "MartianMono";
  src: url("./fonts/MartianMono.ttf") format("opentype");
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Medium.ttf") format("opentype");
}
:root {
  --white: #fff;
  --black: #000000;
  --gray: #d9d9d9;
  --yellow: #ffcf00;
  --fs-base: clamp(0.875rem, 0.85rem + 0.1vw, 0.937a5rem); /*15px - 14px*/
  --fs6: clamp(1.125rem, 1.075rem + 0.2vw, 1.25rem); /*20px - 18px*/
  --fs5: clamp(1.125rem, 0.8894230769230769rem + 0.8974358974358974vw, 1.5625rem); /*25px - 18px*/
  --fs4: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); /*40px - 24px*/
  --fs3: clamp(2rem, 1.5499999999999998rem + 1.8000000000000003vw, 3.125rem); /*50px - 32px*/
  --fs2: clamp(2.5rem, 1.1607142857142856rem + 5.9523809523809526vw, 5.625rem); /*40px - 90px*/
  --fs1: clamp(2.5rem, 0.8928571428571426rem + 7.142857142857144vw, 6.25rem); /*40px - 100px*/
}

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

body {
  min-height: 100dvh;
  max-width: 100dvw !important;
  overflow-x: hidden;
  margin-inline: auto;
  font-family: "Poppins";
  color: var(--white);
  background-size: 410px 616px;
  background-repeat: repeat;
  background-image: url("../img/gris.webp");
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem); /*15px - 14px*/
}

h1, h2, h3, h4, h5 {
  font-family: "ClashDisplay";
}

h1 {
  font-size: var(--fs-b-xxl);
  font-size: var(--fs-xxl);
  color: var(--white);
  font-weight: 300;
  margin-top: 3rem;
}

h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  text-wrap: pretty;
  margin: 0;
  margin-inline: auto;
}

ul {
  text-decoration: none;
  padding: 0;
}

a {
  text-decoration: none;
}

/*Generales*/
.container-fluid {
  margin-inline: 20px;
}

.img-flotante {
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
  0% {
    transform: translateY(0); /* Posición inicial */
  }
  50% {
    transform: translateY(30px); /* Mueve hacia abajo */
  }
  100% {
    transform: translateY(0); /* Regresa a la posición inicial */
  }
}
/*Negrita*/
.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

/*Tamaños*/
.ft-9 {
  font-size: 9px;
}

.ft-10 {
  font-size: 10px !important;
}

.ft-12 {
  font-size: 12px !important;
}

.ft-14 {
  font-size: 14px !important;
}

/*Colores*/
.text-black {
  color: var(--black) !important;
}

.active {
  color: #ffe8b3 !important;
}

/*Distribuciones*/
.start-x, .start-y, .center-x, .center-y,
.between-x, .between-y, .end-y, .end-x, .around-x {
  display: flex;
  flex-wrap: wrap;
}

.start-y, .center-y, .between-y, .end-y {
  flex-direction: column;
}

.start-x, .start-y {
  justify-content: start;
  align-items: start;
}

.center-x, .center-y {
  justify-content: center;
  align-items: center;
}

.between-x, .between-y {
  justify-content: space-between;
  align-items: center;
}

.around-x {
  justify-content: space-around;
  align-items: start;
}

.end-y, .end-x {
  justify-content: end;
}

/*Imagen de fondo*/
.imagen-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*Estilos*/
.text-sub {
  position: relative;
  display: inline-flex;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}

.text-sub::after {
  content: "";
  height: 2px;
  width: 130%;
  left: 0;
  bottom: 0px;
  background-color: #ED8F22;
  position: absolute;
}

/* section {
    padding: 4rem 0;
} */
.btn-base {
  display: inline-flex;
  padding: 15px 40px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 0px 50px 50px 0px;
  background-color: var(--black);
  border: 3px var(--black) solid;
  color: var(--yellow);
  transition: all 0.5s ease;
}

.btn-base:hover {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-base2 {
  display: inline-flex;
  padding: 15px 40px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 0px 50px 50px 0px;
  background-color: rgb(0, 0, 0);
  color: var(--white);
  transition: all 0.5s ease;
}

.btn-base2:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.btn-base3 {
  display: inline-flex;
  padding: 15px 40px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 0px 50px 50px 0px;
  background-color: var(--gray);
  border: 1px var(--gray) solid;
  color: rgb(17, 17, 17);
  transition: all 0.5s ease;
  font-weight: 700;
}

.btn-base3:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

/*Header*/
/* Nav */
nav {
  position: fixed;
  width: 100%;
  transition: all 0.5s ease-in;
  z-index: 100;
}

.navbar {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  height: 60px;
  background-color: transparent;
  padding: 0 !important;
}

.navbar li a {
  transition: all 0.5s ease;
}

.navbar li:hover a {
  font-size: 30px;
}

.navbar .btn-base {
  color: var(--white);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar li:last-child {
  border-bottom: 3px solid;
  border-color: #EBF30B !important;
}

.navbar li:last-child a {
  padding-left: 40px;
  color: #EBF30B !important;
}

.navbar .logo {
  height: 80px;
}

.navbar .categorias {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-top: 50px;
}

.navbar .categorias li:not(.close) {
  margin-inline: 1rem;
  transition: 0.2s all ease;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  border-right: 3px solid var(--white);
  padding: 8px 20px 8px 0;
  margin-bottom: 4rem;
}

.navbar .categorias li:not(.close) a {
  color: var(--white);
  position: relative;
}

.navbar.active {
  background-size: 400px;
  background-repeat: repeat;
  background-image: url("../img/banners/fondo.gif");
}

/* Estado inicial del menú */
.offcanvas-top {
  top: 59px !important;
  height: 0;
  background-size: 400px;
  background-repeat: repeat;
  background-image: url("../img/banners/fondo.gif");
  z-index: -1;
}

/* Animación para expandir el menú */
@keyframes expandMenu {
  from {
    height: 0;
  }
  to {
    height: 100dvh;
  }
}
/* Animación para colapsar el menú */
@keyframes collapseMenu {
  from {
    height: 100dvh;
  }
  to {
    height: 0;
  }
}
/* Cuando el menú esté visible */
.offcanvas-top.show {
  animation: expandMenu 0.5s ease-in-out forwards;
}

/* Cuando el menú se oculta */
.offcanvas-top:not(.show) {
  animation: collapseMenu 0.5s ease-in-out forwards;
}

.offcanvas-backdrop.show {
  display: none;
}

.navbar-nav::-webkit-scrollbar {
  width: 0px;
}

/* From Uiverse.io by JulanDeAlb */
.navbar-toggler {
  border: none;
}

/* From Uiverse.io by vinodjangid07 */
#checkbox {
  display: none;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.hamburger:focus {
  box-shadow: none;
}

.offcanvas-top:not(.show) + .hamburger:hover .bars {
  animation: rotateIn 1s forwards; /* Animación al hacer hover */
}

.offcanvas-top:not(.show) + .hamburger:not(:hover) .bars {
  animation: rotateOut 1s forwards; /* Animación al salir del hover */
}

@keyframes rotateIn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
@keyframes rotateOut {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.bars {
  width: 100%;
  height: 4px;
  background-color: var(--white);
  border-radius: 4px;
}

.offcanvas-top.show + .hamburger .bars {
  position: absolute;
  transition-duration: 0.5s;
}

.offcanvas-top.show + .hamburger #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

.offcanvas-top.show + .hamburger #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

.offcanvas-top.show + .hamburger {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

.offcanvas-top {
  background-color: rgba(0, 0, 0, 0.8);
}

.isotipo {
  width: 40px;
  height: 40px;
}

.isotipo:hover {
  animation: rotateIn 1s forwards; /* Animación al hacer hover */
}

.isotipo:not(:hover) {
  animation: rotateOut 1s forwards; /* Animación al salir del hover */
}

/*Footer*/
footer {
  position: relative;
  background: linear-gradient(to bottom, transparent 41px, var(--gray) 20px);
}

footer .elemento {
  position: absolute;
  top: 30%;
  z-index: 1;
  width: 250px;
}

.ct-footer {
  width: 90%;
  position: relative;
}

.ct-footer h2 {
  font-size: 2.5rem;
  font-size: var(--fs2); /*40px - 90px*/
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: var(--gray);
  padding-left: 0.5rem !important;
}

.ct-footer h4 {
  color: var(--black);
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.6944444444rem + 1.1574074074vw, 1.5625rem); /*25px -20px*/
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.ct-footer .suscripcion {
  display: flex;
  justify-content: space-between;
}

.ct-footer .suscripcion input[type=email] {
  margin-right: 20px;
  max-width: 74%;
  border-radius: 0 50px 50px 0;
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  height: 60px;
}

.ct-footer .suscripcion input[type=email]:focus {
  border-color: var(--black);
  box-shadow: none;
}

.ct-footer .suscripcion input[type=email]::-moz-placeholder {
  color: var(--gray);
}

.ct-footer .suscripcion input[type=email]::placeholder {
  color: var(--gray);
}

.ct-footer .btn-base {
  width: 250px;
  justify-content: center;
}

.ct-footer .center-y {
  align-items: end;
}

.ct-footer .section {
  border-bottom: 1px solid var(--black);
  padding: 2.5rem 0;
}

.ct-footer .section .row {
  max-width: 1000px;
  width: 100%;
}

.ct-footer ul {
  list-style: none;
}

.ct-footer ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  padding-top: 1rem;
}

.ct-footer ul li:not(:last-child) {
  padding-bottom: 1rem;
}

.ct-footer a:not(.btn-base) {
  color: var(--black);
}

.ct-footer a:not(.btn-base):hover {
  border-bottom: 1.6px solid var(--black);
}

.ct-footer .section:last-child {
  padding: 0.5rem 0 2rem 0;
}

.ct-footer .section:last-child p {
  color: rgb(17, 17, 17);
  font-size: 12px;
  text-transform: uppercase;
}

.ct-footer .redes {
  font-size: 30px;
  color: rgb(17, 17, 17);
  max-width: 50%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin-inline: auto;
}

.ct-footer .redes a:hover {
  border-bottom: none;
}

.ct-footer .copyright {
  max-width: 95%;
  margin-inline: auto;
  text-align: center;
}

.shape {
  width: 100%;
  height: 250px;
  background-size: 410px 616px;
  background-repeat: repeat;
  background-image: url("../img/gris.webp");
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  top: 40px;
  z-index: 0;
}

.shape2 {
  width: 100%;
  height: 250px;
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  clip-path: polygon(0 0, 0 100%, 100% 0);
  position: absolute;
  top: -1px;
  z-index: 0;
}

.shape3 {
  width: 100%;
  height: 250px;
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  top: -1px;
  z-index: 0;
}

/*Main*/
main {
  padding-top: 60px;
}

.content {
  max-width: 90%;
  margin-left: 10%;
}

.portada-section {
  max-width: 100dvw;
  position: relative;
}

.portada-section .img-flotante {
  position: absolute;
  left: 70%;
  top: 40px;
  max-height: 750px;
  z-index: -1;
}

.portada-section h2 {
  font-size: 30px;
  line-height: 36px;
  margin-right: 1rem;
}

.portada-section .titulo {
  max-width: 60%;
}

.portada-section .titulo h1 {
  font-size: 2.5rem;
  font-size: var(--fs1); /*40px - 100px*/
  font-weight: 700;
  line-height: 0.9;
  color: var(--gray);
  text-transform: uppercase;
}

.portada-section .titulo h1 span {
  text-shadow: -1px -1px 0 var(--gray), 1px -1px 0 var(--gray), -1px 1px 0 var(--gray), 1px 1px 0 var(--gray);
  color: rgb(17, 17, 17);
}

.portada-section .titulo p {
  line-height: 1.5;
  padding: 3rem 0 6rem 0;
  text-transform: uppercase;
  margin-right: 10%;
  font-size: 17px;
  line-height: 30px;
}

.portada-section .info {
  border-radius: 0 0 0 150px;
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 5% 8%;
  position: relative;
  overflow: hidden;
}

.portada-section .info .imagenes {
  position: relative;
}

.portada-section .info .imagenes .emoticon {
  max-width: 150px;
  position: absolute;
  top: 35%;
  left: 65%;
}

.portada-section .info .notebook-container {
  position: relative;
  width: 100%;
}

.portada-section .info .video-wrapper {
  position: absolute;
  top: 30%;
  left: 3%;
  width: 43.5%;
  height: 41%;
  background-color: var(--black);
  overflow: hidden;
  clip-path: polygon(0% 0%, 99% 3%, 97.8% 98%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg) skewX(1.5deg) skewY(-1.5deg);
  transform-origin: top left;
}

.portada-section .info .video-screen {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.portada-section .info .ct-buttom {
  position: absolute;
  top: 0;
  left: 0;
}

.portada-section .info .ct-buttom .btn-base3 {
  font-size: 1.125rem;
  font-size: var(--fs5);
  line-height: 1.2;
}

.portada-section .info .ct-buttom .brillo {
  width: 80px;
  position: absolute;
  top: -10px;
  right: -30px;
}

.portada-section .info .positon-relative {
  display: inline-flex;
  background-color: red !important;
  border: 1px solid red !important;
  width: 100%;
  height: 200px;
}

.portada-section .caracteristica {
  border-radius: 50px;
  border: 1px var(--gray) solid;
  padding: 0.5rem 1rem;
  margin-inline: 1rem;
}

.portada-section .form-contacto {
  max-width: 50%;
  padding-bottom: 100px;
}

.portada-section .form-contacto input[type=text]:focus, .portada-section .form-contacto input[type=tel]:focus, .portada-section .form-contacto input[type=number]:focus, .portada-section .form-contacto input[type=email]:focus, .portada-section .form-contacto input[type=password]:focus, .portada-section .form-contacto #mensaje:focus {
  border: 1px solid #66f21b !important;
  box-shadow: 0 0 6px #66f21b !important;
  color: var(--white) !important;
}

.portada-section .form-contacto input, .portada-section .form-contacto textarea {
  padding: 20px 25px;
  height: 60px;
  border-radius: 30px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.portada-section .form-contacto input::-moz-placeholder, .portada-section .form-contacto textarea::-moz-placeholder {
  color: var(--gray);
}

.portada-section .form-contacto input::placeholder, .portada-section .form-contacto textarea::placeholder {
  color: var(--gray);
}

.portada-section .form-contacto textarea {
  height: 175px;
  resize: none;
}

.portada-section .form-contacto .btn-base2 {
  border-radius: 30px;
  width: 100%;
  justify-content: center;
  background-color: rgb(240, 240, 240);
  color: var(--black);
  font-weight: 600;
}

.portada-section .form-contacto .btn-base2:hover {
  background-color: var(--gray);
}

.portada-section.nosotros {
  padding-top: 50px;
  padding-bottom: 0px;
}

.portada-section.nosotros .img-flotante {
  left: 65%;
  max-width: 650px;
  z-index: -1;
}

.portada-section.nosotros h1 {
  margin-bottom: 2rem;
}

.portada-section.nosotros p {
  padding: 0.5rem 0;
  max-width: 85%;
  margin: 0;
  font-size: 18px;
  line-height: 32px;
}

.portada-section.totem {
  padding-top: 50px;
  padding-bottom: 150px;
}

.portada-section.totem .img-flotante {
  left: 60%;
  max-height: 600px;
  z-index: 1;
}

.portada-section.totem h1 {
  margin-bottom: 2rem;
}

.portada-section.totem p {
  padding: 0.5rem 0;
  max-width: 75%;
  margin: 1rem 0 2rem 0;
}

.comentario-section {
  color: var(--gray);
  padding-top: 3rem;
  position: relative;
}

.comentario-section h3 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 0.6rem + 3.6vw, 3.75rem);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 80%;
  letter-spacing: 1px;
}

.comentario-section p {
  text-transform: uppercase;
  padding: 1rem 0 2rem 0;
}

.comentario-section .btn-base3 {
  font-size: 1.125rem;
  font-size: var(--fs6) !important; /*20px - 18px*/
  line-height: 1.2;
  justify-content: center;
  padding-inline: 6rem;
  margin-bottom: 300px;
}

.comentario-section .shape {
  width: 100%;
  height: 250px;
  background-color: var(--gray);
  background-image: none;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  z-index: -1;
  left: 0;
  top: auto;
  bottom: -1px;
}

.comentario-section .elemento {
  position: absolute;
  bottom: 90px;
  left: calc(50% - 200px);
  z-index: -2;
  width: 350px;
}

.caracteristicas-section {
  background-color: var(--gray);
  position: relative;
  padding-bottom: 40px;
}

.caracteristicas-section h2 {
  font-size: 2.4rem;
  font-size: var(--fs2); /*40px - 90px*/
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: var(--gray);
  margin-top: -50px;
  position: absolute;
  top: -80px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.caracteristicas-section .subtitulo {
  padding-top: 60px;
  text-transform: uppercase;
  color: var(--black);
}

.caracteristicas-section .caracteristica {
  width: 100%;
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  border-radius: 100px 0 0 100px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-transform: uppercase;
  margin: 2rem 0;
}

.caracteristicas-section .caracteristica h3 {
  padding-right: 2rem;
  font-size: 2rem;
  font-size: var(--fs3); /*50px - 32px*/
  text-align: end;
  width: 500px;
}

.caracteristicas-section .caracteristica p {
  color: var(--gray);
  max-width: 50%;
  padding-top: 0;
  margin: 0;
  border-left: 2px solid var(--white);
  padding-left: 2rem;
}

.soluciones-section, .mision-section {
  position: relative;
}

.soluciones-section .content, .mision-section .content {
  padding-top: 150px;
}

.soluciones-section .shape-letras, .mision-section .shape-letras {
  width: 100%;
  height: 250px;
  background-color: var(--gray);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
}

.soluciones-section .carrusel-titulos, .mision-section .carrusel-titulos {
  padding-top: 60px;
}

.soluciones-section h2, .mision-section h2 {
  font-size: 70px;
  line-height: 84px;
  text-transform: uppercase;
  color: var(--black);
}

.soluciones-section h4, .mision-section h4 {
  font-size: 1.5rem;
  font-size: var(--fs4); /*40px - 24px*/
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gray);
  max-width: 900px;
  letter-spacing: 1px;
}

.soluciones-section .btn-base2, .mision-section .btn-base2 {
  margin-top: 2rem;
  background-color: transparent;
  border: 1px solid var(--gray);
  font-size: 1.125rem;
  font-size: var(--fs6) !important; /*20px - 18px*/
  line-height: 1.2;
  font-weight: 600;
  width: 98%;
  max-width: 400px;
  justify-content: center;
}

.soluciones-section .btn-base2:hover, .mision-section .btn-base2:hover {
  background-color: var(--gray);
  color: var(--black);
}

.soluciones-section .carrusel-soluciones, .mision-section .carrusel-soluciones {
  display: flex;
  padding-bottom: 1rem;
}

.soluciones-section .slick-track, .mision-section .slick-track {
  display: flex;
  height: 100%;
}

.soluciones-section .solucion, .mision-section .solucion {
  border-radius: 0 100px 0 0;
  background-color: #d9d9d9;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.soluciones-section .solucion .cta {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
  overflow: hidden;
  height: 240px;
}

.soluciones-section .solucion .cta img {
  position: absolute;
  top: 0px;
  left: -100px;
}

.soluciones-section .solucion .text-repeat, .mision-section .solucion .text-repeat {
  color: #4d4d4d;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(10deg);
  z-index: 0;
}

.soluciones-section .solucion .img-fluid, .mision-section .solucion .img-fluid {
  padding-top: 5px;
  width: 340px;
  padding-bottom: 24px;
  position: relative;
  box-sizing: content-box;
  z-index: 1;
}

.soluciones-section .solucion .btn-base, .mision-section .solucion .btn-base {
  text-align: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  z-index: 1;
  margin-right: 24px;
  margin-bottom: 16px;
}

.soluciones-section .solucion .btn-base.active, .mision-section .solucion .btn-base.active {
  color: var(--black) !important;
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.soluciones-section .solucion .btn-base.active + .img-fluid, .mision-section .solucion .btn-base.active + .img-fluid {
  filter: drop-shadow(1px 1px 10px var(--black));
}

.soluciones-section .solucion p, .mision-section .solucion p {
  position: relative;
  text-transform: uppercase;
  color: rgb(17, 17, 17);
}

.next i, .prev i {
  font-size: 28px;
  color: var(--white);
}

.next, .prev {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  top: calc(50% - 50px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.line {
  height: 1px;
  width: 100%;
  background-color: var(--white);
  margin: 2rem 0;
}

.equipo-section .equipo {
  flex-wrap: nowrap;
  justify-content: start;
  text-transform: uppercase;
  color: var(--gray);
  padding: 2rem 0 3rem 0;
  border-bottom: 1px solid var(--white);
  margin-bottom: 2rem;
}

.equipo-section .equipo .img-fluid {
  max-width: 125px;
  background-color: var(--gray);
  border-radius: 50%;
  margin-right: 3rem;
}

.equipo-section .equipo h3 {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: var(--fs4); /*40px - 24px*/
  letter-spacing: 1px;
}

.equipo-section .equipo p {
  max-width: 90%;
  margin: 0;
}

.linea2 {
  transform: rotate(180deg);
}

.linea2 .slick-slide {
  transform: rotate(180deg);
}

.cifras-section {
  padding: 150px 0;
}

.cifras-section h2 {
  font-size: 2rem;
  font-size: var(--fs3);
  line-height: 1.18;
  color: var(--gray);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.ct-cifras {
  background-color: var(--gray);
  border-radius: 200px 0 0 200px;
  color: var(--black);
  overflow: hidden;
  text-align: center;
  max-height: 250px;
}

.ct-cifras .dato {
  padding: 1rem 0;
}

.ct-cifras .dato .digit {
  font-family: "ClashDisplay";
  font-weight: 700;
  font-size: 2.5rem;
  font-size: var(--fs1); /*40px - 100px*/
  margin-bottom: 0;
  line-height: 1.01;
}

.ct-cifras .dato .description {
  text-transform: uppercase;
}

.ct-cifras .dato .titulo {
  font-size: var(--fs5);
  font-weight: 700;
  text-align: start;
  text-transform: uppercase;
}

.testimonios-section {
  background-color: var(--gray);
  padding: 50px 0 300px 0;
  position: relative;
}

.testimonios-section h2 {
  font-size: 2.5rem;
  font-size: var(--fs2); /*40px - 90px*/
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: var(--gray);
  position: absolute;
  top: 100px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonios-section .grafico {
  max-width: 700px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonios-section .shape2 {
  top: -1px;
}

.testimonios-section .shape3 {
  top: auto;
  bottom: -3px;
  z-index: 1;
}

.testimonios-section .carrusel-casos {
  margin-top: 250px;
  padding-top: 100px;
  max-width: 90%;
  display: flex;
  position: relative;
  z-index: 1;
}

.testimonios-section .slick-track {
  display: flex;
  height: 100%;
}

.testimonios-section .caso {
  padding: 3rem;
  border-radius: 3rem;
  background-color: var(--gray);
  text-transform: uppercase;
  position: relative;
  border: 1px solid var(--black);
  color: var(--black);
}

.testimonios-section .caso p {
  margin-bottom: 1rem;
}

.testimonios-section .caso .autor {
  font-family: "ClashDisplay";
  font-size: 1.125rem;
  font-size: var(--fs5);
  font-weight: 600;
}

.testimonios-section .caso .autor::before {
  content: "●";
  margin-right: 1rem;
}

.testimonios-section .next i, .testimonios-section .prev i {
  font-size: 20px;
  color: var(--white);
}

.testimonios-section .prev, .testimonios-section .next {
  background-color: var(--black);
  width: 40px;
  height: 40px;
  top: 0;
}

.testimonios-section .prev {
  left: 10px;
}

.testimonios-section .next {
  left: 60px;
}

.section-precios {
  padding: 50px 0;
  text-transform: uppercase;
}

.section-precios h2 {
  font-size: 2.5rem;
  font-size: var(--fs1); /*40px - 100px*/
  line-height: 0.9;
  color: var(--gray);
}

.section-precios h3 {
  font-size: 1.5rem;
  font-size: var(--fs4); /*40px - 24px*/
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 3rem;
}

.section-precios li {
  margin: 2rem 0;
  margin-left: 1rem;
}

.section-precios .basico {
  border-radius: 100px 0 0 0;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-precios .basico .info {
  padding: 3rem;
}

.section-precios .precio {
  font-size: 1.125rem;
  font-size: 1.5rem;
  font-size: var(--fs4); /*40px - 24px*/
  line-height: 1.2;
  font-weight: 700;
  font-family: "ClashDisplay";
}

.section-precios .precio::before {
  content: "•";
  margin-right: 2rem;
}

.section-precios a {
  border-top: 1px solid var(--white);
  color: var(--white);
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.775rem + 1.4vw, 2rem); /*32px - 18px*/
  font-family: "ClashDisplay";
  font-weight: 600;
  transition: all 0.5s ease;
  text-align: center;
  padding-inline: 3rem;
  height: 80px;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.section-precios a:hover {
  font-size: 1.5rem;
  font-size: var(--fs4); /*40px - 24px*/
}

.section-precios .premium .ms-xl-2 {
  position: relative;
  border: 1px solid var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-precios .premium .ms-xl-2 .elemento {
  max-width: 250px;
  position: absolute;
  top: -100px;
  left: 70%;
}

.section-precios .premium .ms-xl-2 .info {
  padding: 3rem;
  background-color: var(--white);
}

.section-precios .premium .ms-xl-2 a {
  background: transparent;
}

.preguntas-section {
  margin-top: 50px;
  padding-bottom: 150px;
}

.preguntas-section .elemento {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 200px;
  left: 70%;
}

.preguntas-section .titulo {
  font-size: 2.5rem;
  font-size: var(--fs2); /*40px - 90px*/
  line-height: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 var(--gray), 1px -1px 0 var(--gray), -1px 1px 0 var(--gray), 1px 1px 0 var(--gray);
  color: var(--black);
  margin-bottom: 1rem;
}

.preguntas-section .cta {
  padding-top: 2rem;
}

.preguntas-section .cta p {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--gray);
}

.preguntas-section .cta .btn-base3 {
  font-size: 1.125rem;
  font-size: var(--fs6) !important; /*20px - 18px*/
  line-height: 1.2;
  justify-content: center;
  padding-inline: 8rem;
  padding: 15px;
  width: 90%;
  max-width: 350px;
}

.preguntas-section .accordion .accordion-button.collapsed {
  border-radius: 50px 0 0 50px;
  padding-left: 50px;
  padding-bottom: 16px;
  background-color: var(--gray);
  color: var(--black);
}

.preguntas-section .accordion .accordion-button {
  font-size: 1.125rem;
  font-size: var(--fs6) !important; /*20px - 18px*/
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  color: var(--gray);
  background-color: transparent;
  padding-top: 24px;
  padding-bottom: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  box-shadow: none;
  text-align: start;
  border-radius: 100px 0 0 100px;
  padding-left: 50px;
}

.preguntas-section .accordion .accordion-button::before {
  content: "+";
  font-weight: 100;
  color: var(--black);
  background-image: none;
  line-height: 1;
  width: auto;
  height: auto;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  margin-right: 1rem;
}

.preguntas-section .accordion .accordion-button::after {
  display: none;
}

.preguntas-section .accordion .accordion-button:not(.collapsed) {
  pointer-events: none;
}

.preguntas-section .accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(45deg);
  color: #66f21b;
}

.preguntas-section .accordion .accordion-item {
  border: 1px solid var(--gray);
  background-color: transparent;
  border-radius: 50px 0 0 50px;
  border-right: none;
  margin: 1rem 0;
}

.preguntas-section .accordion .accordion-body {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem); /*14px a 12px*/
  padding-inline-start: 0px;
  padding-inline-end: 0px;
  padding-bottom: 24px;
  padding-top: 0;
  color: rgb(214, 214, 214);
  /* padding-left: 82px; */
  padding-left: 90px;
}

.team-section {
  position: relative;
  background-color: var(--gray);
}

.team-section .shape {
  top: -1px;
}

.team-section h2 {
  font-size: 2.5rem;
  font-size: var(--fs2); /*40px - 90px*/
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: var(--gray);
  margin-top: -50px;
  position: absolute;
  top: 40px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.team-section .subtitulo {
  padding-top: 180px;
  text-transform: uppercase;
  color: var(--black);
}

.team-section .ct-equipo {
  padding: 80px 0;
}

.team-section .equipo {
  flex-wrap: nowrap;
  justify-content: start;
  text-transform: uppercase;
  color: var(--gray);
  padding: 1rem 0 1rem 3rem;
  margin-bottom: 2rem;
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  border-radius: 100px 0 0 100px;
}

.team-section .equipo .nombre {
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: end;
  width: 550px;
}

.team-section .equipo .bio {
  max-width: 550px;
  padding: 0.7rem 0 0.7rem 3rem;
  border-left: 2px solid var(--white);
}

.team-section .equipo .img-fluid {
  max-width: 180px;
  margin: 0 1rem 0 0;
}

.team-section .equipo h3 {
  font-weight: 700;
  font-size: 2rem;
  font-size: var(--fs3); /*50px - 32px*/
}

.portfolio-section {
  padding-bottom: 150px;
}

.portfolio-section h2 {
  font-size: 2.5rem;
  font-size: var(--fs1); /*40px - 100px*/
  line-height: 0.9;
  color: var(--gray);
}

.portfolio-section .subtitulo {
  padding: 2rem 0;
  text-transform: uppercase;
}

.portfolio-section .carrusel-eventos {
  display: flex;
  padding-right: 50px;
}

.portfolio-section .slick-track {
  display: flex;
  height: 100%;
}

.portfolio-section .next i, .portfolio-section .prev i {
  font-size: 20px;
  color: var(--white);
}

.portfolio-section .prev, .portfolio-section .next {
  top: -65px;
  background-color: transparent;
}

.portfolio-section .prev {
  left: auto;
  right: 100px;
}

.portfolio-section .next {
  right: 50px;
}

.noticia {
  display: flex;
  background-color: var(--gray);
  color: var(--black);
  border-radius: 0px 180px 180px 0px;
  overflow: hidden;
  padding: 1.5rem;
  height: 100%;
}

.noticia > * {
  width: 50%;
}

.noticia h4 {
  font-size: 1.125rem;
  font-size: var(--fs5);
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  text-align: start;
  width: 100%;
}

.noticia .info {
  margin-right: 1rem;
}

.noticia .img-fluid {
  border-radius: 0px 180px 180px 0px;
}

.noticia .btn-base {
  margin-top: 1rem;
  color: var(--gray);
  border-radius: 0px;
  padding: 0.5rem;
  width: 100%;
}

.noticia .btn-base:hover {
  color: var(--yellow);
  background-color: var(--black);
}

.interna-noticia-section {
  color: var(--gray);
}

.interna-noticia-section .content {
  padding-top: 50px;
  max-width: 70%;
}

.interna-noticia-section .portada {
  border-radius: 1rem;
  border: 1px solid var(--white);
  width: 100%;
}

.interna-noticia-section h4 {
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8625rem + 0.3vw, 1.125rem); /*18px - 15px*/
  line-height: 1.2;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  font-family: "MartianMono";
  color: var(--yellow);
}

.interna-noticia-section .encabezado {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--white);
}

.interna-noticia-section .encabezado .between-x {
  margin: 1.5rem 0;
  font-size: 11px;
  color: #66f21b;
}

.interna-noticia-section .encabezado h2 {
  padding-right: 2rem;
  font-size: 2rem;
  font-size: var(--fs3); /*50px - 32px*/
  text-transform: uppercase;
}

.interna-noticia-section .encabezado p {
  text-transform: uppercase;
  margin: 1rem 0;
}

.interna-noticia-section .encabezado p:last-of-type {
  text-transform: uppercase;
  font-size: 11px;
}

.interna-noticia-section .encabezado p:last-of-type span {
  color: #66f21b;
}

.interna-noticia-section .content .container-fluid > p:last-child {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--white);
}

.ultimas-portfolio-section .content {
  max-width: 70%;
}

.ultimas-portfolio-section h3 {
  font-size: 1.625rem;
  font-size: var(--fs4);
  font-weight: 700;
  text-transform: capitalize;
}

.ultimas-portfolio-section .noticia {
  margin: 2rem 0;
}

.politicas-section {
  padding-bottom: 50px;
}

.politicas-section .content {
  max-width: 70%;
}

.politicas-section .encabezado {
  padding: 50px 0;
}

.politicas-section h1 {
  font-size: 2.5rem;
  font-size: var(--fs1); /*40px - 100px*/
  font-weight: 700;
  line-height: 0.9;
  color: var(--gray);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.politicas-section h1 span {
  text-shadow: -1px -1px 0 var(--yellow), 1px -1px 0 var(--yellow), -1px 1px 0 var(--yellow), 1px 1px 0 var(--yellow);
  color: rgb(17, 17, 17);
}

.politicas-section h3 {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5625rem); /*25px - 20px*/
  font-weight: 700;
}

.politicas-section .politica {
  margin-bottom: 2rem;
}

.efecto-pincel {
  position: relative;
  display: inline-block;
  z-index: -1;
}

.efecto-pincel img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.5s ease-in-out;
  transform: rotate(175.29deg);
  z-index: -1;
}

.efecto-pincel + img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s ease-in-out;
}

.totem-section {
  position: relative;
  background-color: var(--gray);
  padding-bottom: 20px;
}

.totem-section .shape {
  top: -1px;
}

.totem-section h2 {
  font-size: 1.5rem;
  font-size: clamp(2rem, 0.6rem + 3.6vw, 3.75rem);
  line-height: 1.2;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: var(--gray);
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
  padding-top: 50px;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
}

.totem-section p {
  font-size: var(--fs-base);
  color: var(--black);
  max-width: 80%;
  margin: 0;
  text-transform: uppercase;
}

.totem-section .carrusel-ventajas {
  padding: 2rem 0;
}

.totem-section .carrusel-ventajas span {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--black);
  text-wrap: nowrap;
  text-align: center;
}

.totem-section .caracteristica {
  width: 100%;
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  border-radius: 100px 0 0 100px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-transform: uppercase;
  margin: 1rem 0 2rem 0;
}

.totem-section .caracteristica h3 {
  padding-right: 2rem;
  font-size: 2rem;
  font-size: var(--fs4);
  text-align: end;
  width: 600px;
  border-right: 2px solid var(--white);
}

.totem-section .caracteristica p {
  color: var(--gray);
  max-width: 50%;
  padding-top: 0;
  margin: 0;
  padding-left: 2rem;
  font-size: var(--fs-base);
}

.comercial-section {
  position: relative;
}

.comercial-section .content {
  padding-top: 100px;
}

.comercial-section .carrusel-titulos {
  padding-top: 60px;
}

.comercial-section h4 {
  font-size: 1.5rem;
  font-size: var(--fs4);
  /*40px - 24px*/
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray);
  max-width: 900px;
  text-transform: uppercase;
}

.comercial-section p {
  color: var(--gray);
  padding-top: 0;
  margin: 0;
  padding-left: 2rem;
  font-size: var(--fs-base);
  text-transform: uppercase;
}

.comercial-section .img-totem {
  margin-left: -25%;
}

.carrusel-razones {
  margin-top: 250px;
  padding-top: 100px;
  max-width: 90%;
  display: flex;
  position: relative;
  z-index: 1;
}

.razon {
  position: relative;
  min-height: 400px;
  background-image: url(../img/totem/cubo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-transform: uppercase;
  padding: 30px 0;
}

.razon .contenido {
  width: 400px;
  margin-inline: auto;
  transform: translateX(-10%);
}

.razon h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 90%;
  margin-inline: auto;
  color: #0e2d0e;
}

.razon p {
  font-size: var(--fs6);
  max-width: 90%;
  color: var(--black);
}

.pasos {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
}

.pasos .paso {
  border: 1px solid var(--yellow);
  width: 300px;
  height: 200px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem;
}

.pasos .paso:hover {
  box-shadow: 0 0 6px #66f21b !important;
}

.pasos .flecha {
  width: 100%;
  max-width: 150px;
  height: 75px;
}

.pasos .end-y .flecha {
  transform: rotateX(180deg);
}

.form-agendar {
  max-width: 100% !important;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px #f0ffe9 !important;
  border-radius: 30px;
  margin-top: 2rem;
}

.form-agendar input[type=text]:focus, .form-agendar input[type=tel]:focus, .form-agendar input[type=number]:focus, .form-agendar input[type=email]:focus, .form-agendar input[type=password]:focus, .form-agendar #mensaje:focus {
  border: 1px solid #66f21b !important;
  box-shadow: 0 0 6px #66f21b !important;
  background-color: transparent;
  color: var(--white) !important;
}

.form-agendar input, .form-agendar textarea {
  padding: 20px 25px;
  height: 60px;
  border-radius: 30px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.form-agendar input::-moz-placeholder, .form-agendar textarea::-moz-placeholder {
  color: var(--gray);
}

.form-agendar input::placeholder, .form-agendar textarea::placeholder {
  color: var(--gray);
}

.form-agendar textarea {
  height: 175px;
  resize: none;
}

.form-agendar .btn-base2 {
  border-radius: 30px;
  justify-content: center;
  background-color: rgb(240, 240, 240);
  color: var(--black);
  font-weight: 600;
}

.form-agendar .btn-base2:hover {
  background-color: var(--gray);
}

/* Select personalizado */
.bootstrap-select {
  width: 100% !important;
}

.bootstrap-select .dropdown-menu {
  background-size: 128px;
  background-repeat: repeat;
  background-image: url("../img/banners/01.png");
  filter: brightness(1.15);
  border-radius: 1rem;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.05) !important;
  margin-top: 5px;
}

.bootstrap-select .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.bootstrap-select .dropdown-menu li.selected a {
  background-color: transparent !important;
  color: var(--yellow) !important;
}

.bootstrap-select .btn.dropdown-toggle {
  display: flex;
  width: 100%;
  border-radius: 30px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  height: 60px !important;
  color: var(--white) !important;
  padding: 15px 25px !important;
}

.bootstrap-select .btn.dropdown-toggle:focus {
  outline: none !important;
  border: 1px solid #66f21b !important;
  box-shadow: 0 0 6px #66f21b !important;
  background-color: transparent;
}

.robot-animation {
  position: absolute;
  right: 2%;
  top: 40px;
  height: 480px;
  min-width: 480px;
}

.trabajo-section .ct-imagen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 16px;
}

.trabajo-section .ct-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 0.5s ease;
}

.mensaje-exito {
  max-width: 600px;
  width: 90%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch !important;
  box-sizing: border-box;
  position: fixed;
  z-index: 9999;
  border-radius: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contenedor-mensaje {
  border: 4px solid var(--green);
  background-color: rgba(0, 0, 0, 0.9);
  height: 260px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
}

.contenedor-mensaje .titulo {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow);
  text-align: center;
}

.contenedor-mensaje .btn-base2 {
  border-radius: 30px;
  margin-top: 1rem;
  background-color: var(--white);
  color: var(--black);
  zoom: 0.9;
}

.contenedor-mensaje .btn-base2:hover {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

html {
  width: 100dvw !important;
  overflow-x: hidden !important;
} /*# sourceMappingURL=style.css.map */