@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-VariableFont_wght.ttf");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat";
  background: #1f1646;
  transition: 0.3s;
}
body.dark {
  background: #fff;
}
body::-webkit-scrollbar {
  background: #1f1646;
  width: 3px;
}
body::-webkit-scrollbar-thumb {
  background: #fff;
}

.inicio-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  /* overflow: hidden; */
  color: #fff;
}

.logo-container {
  position: fixed;
  width: max-content;
  height: max-content;
  pointer-events: none;
  transition: 0.5s;
  gap: 25px;
  /* backdrop-filter: blur(4px); */
  text-align: center;
  z-index: 101;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.ocult-intro .logo-container {
  top: 2%;
  left: 2%;
  transform: translate(0%, 0%);
}
body.ocult-elements .logo-container {
  transform: translateX(-200px, -200px);
}

.logo-container svg {
  width: 500px;
  transition: 0.5s;
}
.logo-container svg path,
.logo-container svg circle {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-miterlimit: 10;
  stroke-width: 2px;
  fill: transparent;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.logo-container svg circle {
  transition-delay: 0;
}
.logo-container svg path.iluminar {
  fill: #fff;
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 1));
  stroke: rgba(255, 255, 255, 1);
}
body.ocult-intro .logo-container svg path.iluminar {
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0));
}

body.ocult-intro .logo-container svg {
  width: 180px;
}

body.ocult-intro.dark .logo-container svg .letter {
  fill: #1f1646;
}

.circle-purple {
  transform: translateY(-100%);
}
.circle-purple.move-elements {
  transform: translateY(0%);
  fill: #a1007d;
  stroke: #a1007d;
}
.circle-yellow {
  transform: translateX(100%);
}
.circle-yellow.move-elements {
  fill: #ffb71b;
  transform: translateX(0%);
  stroke: #ffb71b;
}
.circle-blue {
  transform: translateX(-100%);
}
.circle-blue.move-elements {
  fill: #0071ce;
  transform: translateX(0%);
  stroke: #0071ce;
}

@keyframes colorear {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

.balls-container {
  display: flex;
  width: 93%;
  justify-content: space-between;
  background: yellow;
  position: absolute;
  top: 0px;
}
.balls-container .ball {
  width: 25px;
  height: 200px;
  border-radius: 100%;
  transform: translateY(-100vh);
  position: absolute;
  transition: 0.4s ease-in-out;
}
.balls-container .ball.rebotar {
  height: 25px;
}

.balls-container .ball:nth-of-type(1) {
  margin-left: 50px;
  background: #a1007d;
  box-shadow: 0px 0px 20px #a1007d;
}
.balls-container .ball:nth-of-type(1).rebotar {
  transform: translateY(5px);
}

.balls-container .ball:nth-of-type(2) {
  margin-left: 110px;
  background: #ffb71b;
  box-shadow: 0px 0px 20px #ffb71b;
}
.balls-container .ball:nth-of-type(2).rebotar {
  transform: translateY(25px);
}
.balls-container .ball:nth-of-type(3) {
  margin-left: 220px;
  background: #0071ce;
  box-shadow: 0px 0px 20px #0071ce;
}
.balls-container .ball:nth-of-type(3).rebotar {
  transform: translateY(0px);
}
.balls-container .ball:nth-of-type(4) {
  margin-left: 280px;
  background: #ffb71b;
  box-shadow: 0px 0px 20px #ffb71b;
}
.balls-container .ball:nth-of-type(4).rebotar {
  transform: translateY(25px);
}
.balls-container .ball:nth-of-type(5) {
  margin-left: 400px;
  background: #a1007d;
  box-shadow: 0px 0px 20px #a1007d;
}
.balls-container .ball:nth-of-type(5).rebotar {
  transform: translateY(30px);
}

.inicio-section p {
  width: 50%;
  margin-top: 25px;
  line-height: 1.6;
  font-size: 18px;
}

/* SWITCH DARKMODE */
.switch {
  color: #fff;

  position: fixed;
  z-index: 100;
  top: 4%;
  right: 2%;

  display: flex;
  align-items: center;
}

body.dark .switch {
  color: #000;
}

.switch .indicator {
  width: 50px;
  height: 25px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  margin: 0 10px;
  border-radius: 500px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.switch .indicator::before {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-51%);
  left: 2px;
  width: 20px;
  height: 20px;
  background: #a1007d;
  border-radius: 50%;
  transition: 0.3s;
}

body.dark .switch .indicator::before {
  left: 27px;
}

.switch p {
  font-size: 14px;
  opacity: 0.5;
  text-transform: uppercase;
}

.switch p:nth-of-type(1) {
  opacity: 1;
}
body.dark .switch p:nth-of-type(1) {
  opacity: 0.5;
}
body.dark .switch p:nth-of-type(2) {
  opacity: 1;
}

.inicio-section h1 {
  font-size: 112px;
  font-weight: 200;
  text-align: center;
  margin-left: 70px;
  text-transform: uppercase;
  transition: 0.3s;
}

body.dark .inicio-section h1 {
  color: #1f1646;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  /* transform: translateY(-100%); */
  transition: 0.1s;
}

/* NOSOTROS */
.aboutus-section {
  padding: 50px;
  text-align: center;
  color: #fff;
  position: relative;
  background: #000;
}

body.dark .aboutus-section {
  background: #ebf2f2;
  color: #000;
}

.aboutus-section .cards-container {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.aboutus-section .cards-container .card {
  position: relative;
  width: 500px;
  height: 550px;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
  border-radius: 50px;
  overflow: hidden;
  /* z-index: 1; */
}

.aboutus-section .cards-container .card:nth-of-type(1) {
  background-image: url("../img/mision.png");
}
.aboutus-section .cards-container .card:nth-of-type(2) {
  background-image: url("../img/vision.png");
}
.aboutus-section .cards-container .card:nth-of-type(3) {
  background-image: url("../img/valores.png");
}

.presentation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.presentation .tittle,
.presentation .description {
  height: 100px;
  width: 100%;
  /* background: red; */
  overflow: hidden;
  text-align: center;
  position: relative;
}

.presentation .description {
  margin-top: 30px;
}

.presentation h1 {
  font-size: 100px;
  font-weight: 800;

  position: absolute;
  left: 50%;
  transform: translate(-50%, -100px);
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.presentation p {
  font-size: 18px;
  width: 50%;
  line-height: 1.5;
  z-index: 1;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100px);
  font-size: 22px;
  transition: 0.5s;
  opacity: 0;
}

.aboutus-section .cards-container .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.5s;
}

.aboutus-section .cards-container:hover .card::before {
  background: rgba(0, 0, 0, 0.8);
}
body.dark .aboutus-section .cards-container:hover .card::before {
  background: rgba(255, 255, 255, 0.8);
}
.aboutus-section .cards-container:hover .card:hover::before {
  background: rgba(0, 0, 0, 0.4);
}
body.dark .aboutus-section .cards-container:hover .card:hover::before {
  background: rgba(255, 255, 255, 0.5);
}
/* SLOGAN */
.slogan {
  height: 500px;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(147, 147, 147, 0) 100%
  );
  position: relative;
  z-index: 1;
  padding: 25px;
  color: #fff;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.dark .slogan {
  background: rgb(235, 242, 242);
  background: linear-gradient(
    0deg,
    rgba(235, 242, 242, 1) 0%,
    rgba(0, 212, 255, 0) 100%
  );
  color: #000;
}

.slogan p,
.slogan2 p {
  font-size: 22px;
  width: 50%;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 2;
}

.slogan2 {
  width: 100%;
  padding: 150px 0 200px;
  text-align: center;
  background: #000;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.dark .slogan2 {
  background: #ebf2f2;
  color: #000;
}

.slogan span.point {
  width: 10px;
  height: 10px;
  background: red;
}

/* REDES SOCIALES */
.menu {
  position: fixed;
  top: 0;
  transform: translateX(50%);
  right: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 50px;
  pointer-events: all;
  z-index: 100;
  padding: 30px 80px;
}

.menu .menu-element {
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.5;
}

body.dark .menu .menu-element {
  opacity: 1;
}

.menu .menu-element:hover {
  opacity: 1;
}

.menu .menu-element .icono {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  /* padding: 5px; */
  background: rgba(70, 172, 255, 0.219);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(5px); */
  transition: 0.3s;
  display: none;
}

.menu .menu-element:hover .icono,
.menu .menu-element:hover p {
  opacity: 1;
}

.menu p {
  font-size: 14px;
  transition: 0.3s;
  color: #fff;
}

body.dark .menu p {
  color: #000;
}
/* VENTAJAS COMPETITIVAS */
.advantages-section {
  padding: 50px 0 50px;
  background: #000;
  color: #fff;
}

body.dark .advantages-section {
  color: #000;
  background: #ebf2f2;
}

.advantages-section .advantages-container {
  width: 80%;
  /* background: red; */
  margin: auto;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}

.advantages-section .advantages-container .advantage {
  width: max-content;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-left: -600px; */
}
.advantages-section .advantages-container .advantage:nth-child(2n + 1) {
  margin-left: -600px;
}
.advantages-section .advantages-container .advantage:nth-child(2n) {
  text-align: right;
  flex-direction: row-reverse;
  margin-left: -0px;
  margin-right: -600px;
}

.advantages-section .advantages-container .advantage h1 {
  font-size: 42px;
  font-weight: 700;
}

.advantages-section .advantages-container .advantage p {
  line-height: 1.5;
  opacity: 0.5;
  font-size: 24px;
  transition: 0.5s;
}

.advantages-section .advantages-container .advantage lord-icon {
  width: 150px;
  height: 150px;
}

/* CONTACTO */

.contact-section {
  padding: 0px 0 150px;
  background: #000;
  color: #fff;
  position: relative;
}

.contact-section .contact-flexbox {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.contact-section .contact-titles {
  width: 500px;
  text-align: center;
}

.contact-section .contact-titles h1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-section .contact-titles p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
  opacity: 0.8;
}

.formulario-container {
  width: 500px;
  padding: 50px;
  background: #ffb71b;
  border-radius: 50px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.05);
  
}

body.dark .formulario-container {
  background: #333;
}

main {
  width: 100%;
  /* margin-top: 20px; */
}

main .formulario {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* 
.contacto-seccion main .formulario #grupo__nombre,
.contacto-seccion main .formulario #grupo__enterprise,
.contacto-seccion main .formulario #grupo__telefonomovil,
.contacto-seccion main .formulario #grupo__telefonoempresa,
.contacto-seccion main .formulario #grupo__whatsapp,
.contacto-seccion main .formulario #grupo__email, */
.contacto-seccion main .formulario #grupo__descripcion,
.contacto-seccion main .formulario #grupo__terminos,
.contacto-seccion main .formulario .formulario__grupo-btn-enviar,
main .formulario #grupo__usuario,
main .formulario #grupo__password {
  grid-column: 2 span;
}

main .formulario .formulario__grupo-btn-enviar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

main .formulario .formulario__grupo {
  width: 100%;
  margin: 0px 0px;
  position: relative;
}

main .formulario .formulario__grupo .formulario__grupo-input {
  width: 100%;
  /* background: red; */
  padding: 1px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

main
  .formulario
  .formulario__grupo
  .formulario__grupo-input
  .formulario__input {
  width: 100%;
  margin-top: 0px;
  height: 35px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: "Montserrat";
  outline: none;
  transition: 0.4s;
  font-size: 13px;
  background: #df9c0e;
  color: #fff;
}

main
  .formulario
  .formulario__grupo
  .formulario__grupo-input
  .formulario__input:hover,
  main
  .formulario
  .formulario__grupo
  .formulario__grupo-input
  .formulario__input:focus {
  border: 1px solid #fff;
}

main
  .formulario
  .formulario__grupo
  .formulario__grupo-input
  .formulario__input::placeholder {
  opacity: 0;
}

main .formulario .formulario__grupo .formulario__label {
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translate(10%, -50%);
  font-size: 13px;
  transition: 0.2s;
  padding: 5px;
  width: max-content;
  border-radius: 5px;
  pointer-events: none;
  z-index: 1;
}

main .formulario .formulario__grupo#grupo__descripcion .formulario__label {
  top: 5%;
  transform: translate(10%, 0%);
}

.formulario-ingreso main .formulario .formulario__grupo .formulario__label {
  position: relative;
  top: 0%;
  transform: translate(0%, 0%);
  font-size: 16px;
}

main .formulario .formulario__grupo .formulario__label.enfocado,
main
  .formulario
  .formulario__grupo#grupo__descripcion
  .formulario__label.enfocado {
  top: -40%;
  
  transform: translate(10%, 0%);
  background: #fff;
  color: #ffb71b;
  font-size: 13px;
  font-weight: 600;
}
main
  .formulario
  .formulario__grupo#grupo__descripcion
  .formulario__label.enfocado{
    top: -40%;
  transform: translate(10%, 20%);
  }
main
  .formulario
  .formulario__grupo#grupo__descripcion
  .formulario__label.enfocado {
  top: -26%;
}

main .formulario .formulario__grupo .formulario__grupo-input textarea.formulario__input {
  color: #fff;
  min-height: 80px;
  resize: none;
  padding: 5px 10px 0;
}

p.formulario__mensaje-exito {
  text-align: center;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  /* grid-column: 2 span; */
}

main .formulario .formulario__grupo button {
  width: 100%;
  border: 1px solid transparent;
  background: #fff;
  color: #df9c0e;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-weight: 700;
  font-family: "montserrat";
}

/* FOOTER */
footer {
  padding: 50px 50px 50px;
  height: max-content;
  background: #0071ce;
  color: #fff;
  position: relative;
  transition: 0.3s;
  transition-property: background;
}

footer .footer-gridbox {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin: auto;
}

footer .footer-group {
  width: 250px;
  text-align: left;
}

footer h1 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer p {
  margin: 10px 0;
  line-height: 1.4;
  opacity: 0.6;
  font-weight: 400;
  transition: 0.1s;
}

footer p:hover {
  opacity: 1;
}

footer .footer-menu {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
  grid-column: 3 span;
  text-align: center;
}

footer .mapa {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

body.activar-mapa footer .mapa {
  opacity: 1;
  pointer-events: all;
}

body.activar-mapa {
  overflow-y: hidden;
}

footer .mapa #cerrar-mapa {
  position: absolute;
  top: 5%;
  right: 50%;
  transform: translateX(50%);
  cursor: pointer;
}

footer .redes-container {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  position: relative;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}

footer .redes-container .red {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

footer .redes-container .red:nth-child(1) {
  transform: translate(0px, 0);
}

footer .redes-container .red:nth-child(2) {
  transform: translate(40px, 0);
}

footer .redes-container .red:nth-child(3) {
  transform: translate(80px, 0);
}

footer .redes-container .red:nth-child(4) {
  transform: translate(120px, 0);
}

footer .redes-container:hover .red:nth-child(1) {
  transform: translate(0px, 0px);
}

footer .redes-container:hover .red:nth-child(2) {
  transform: translate(0px, 40px);
}

footer .redes-container:hover .red:nth-child(3) {
  transform: translate(0px, 80px);
}

footer .redes-container:hover .red:nth-child(4) {
  transform: translate(0px, 120px);
}

footer .redes-container .red .label {
  position: absolute;
  left: 150%;
  width: 100px;
  height: max-content;
  background: #fff;
  color: #008375;
  opacity: 1;
  font-weight: 500;
  padding: 5px 15px;
  font-size: 14px;
  text-align: center;
  border-radius: 5000px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  /* transition-delay: .4s; */
  transform: translateX(250px);
}

footer .redes-container:hover .red .label {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 0s;
  pointer-events: all;
}

footer .redes-container .red .label:hover {
  transform: translateX(25px);
}

a {
  text-decoration: none;
  color: unset;
}

.intro {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  background: #1f1646;
  z-index: 100;
  transition: 1s;
}
body.ocult-intro .intro {
  opacity: 0;
  pointer-events: none;
}

.tyt{
  position: fixed;
  bottom: 5%;
  right: 3%;
  background: #a1007d;
  color: #fff;
  width: max-content;
  height: max-content;
  border-radius: 500px;
  padding: 8px 24px;
  cursor: pointer;
  z-index: 100;
}

.distintivo{
  position: fixed;
  width: 75px;
  z-index: 100;
  left: 225px;
  top: 15px;
  opacity: 0;
  transition: .3s;
  transition-delay: .5s;
  transform: translateY(-100px) scale(0);
}

body.ocult-intro .distintivo{
  opacity: 1;
  transform: translateY(0px) scale(1);
}