:root {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}



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


body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: rgb(2, 0, 36);
  background: linear-gradient(302deg, rgba(30, 41, 59, 1) 0%, rgb(15, 23, 42) 26%, rgba(15, 23, 42, 1) 100%);
}


header {
  background-color: transparent;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 1.5rem;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
}

li .nav-link {
  color: #ddd;
}

li .nav-link:active {
  color: #B74DDB;
  transform: scale(0.95);
}
li .nav-link:hover {
  background: #A855F7;
  background: linear-gradient(to right, #c89af2 40%, #E9D5FF 100%);
  -webkit-background-clip: text;
  background-clip: text;  -webkit-text-fill-color: transparent;
  transition:1s;
}

#hero {
  background-image: url(assets/img/image-hero-background.png);
  height: 100vh; 
  max-height: 100vh; 
  overflow: hidden; 
  background-size: cover;
  background-attachment: fixed;
  background-position: center; 
  position: relative;
}


/* Estilos para el botón de WhatsApp */

.whatsapp-button {
  position: fixed;
  bottom: 30px;   /* Distancia desde la parte inferior */
  right: 30px;    /* Distancia desde la parte derecha */
  z-index: 1000;  /* Asegura que el botón esté por encima de otros elementos */
  font-size: 50px;  /* Tamaño del icono */
  width: 50px;
  height: 50px;
  border-radius: 50%;   /* Hace que el botón sea circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);  /* Sombra para que se vea más elevado */
  transition: transform 0.3s;  /* Añade una animación suave al hacer hover */
  color: rgb(37,211,102);
}

.whatsapp-button:hover {
  transform: scale(1.1);  /* Efecto de zoom cuando pasas el ratón */
}

.item-parrafo {
  color: #94A3B8;
  font-size: 20px;
  font-weight: 400;
}

.container-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.item-title {
  font-weight: 800;
  font-size: 56px;
  margin-top: 20px;
  margin-bottom: 10px;
  /** TEXT GRADIENT */
  color: #ffffff;
  background-image: -webkit-radial-gradient(circle, #E2E8F0 0%, #e2e8f0ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Estilos para el botón primario */

.container-btn {
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
}

.btn-primary {
  background: transparent;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;

}


.btn-primary::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
  text-decoration: none;
}

.btn-primary:hover {
  color: #fff;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: #B74DDB;
}

.btn-primary:hover::before {
  box-shadow: inset 0 0 0 10em rgb(255, 255, 255);
}


.btn-primary:hover {
  background-color: #ffffff;
  transition: all 0.5s;
  box-shadow: 0px 0px 20px 0px rgb(255, 255, 255);
  transition: all 0.475s;
  color:#A855F7;
}

/* Estilos para el botón secundario */

.button-secundario {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background: transparent;
  background-size: 400%;
  color: #bbc4d8;
  border: solid #bbc4d8 0.3px;
  cursor: pointer;
  font-size: 14px;
}

.button-secundario:hover {
  background-color: #CBD5E1;
  color: #1e3858;
  -webkit-box-shadow: 0px 0px 20px 0px rgb(255, 255, 255);
  -moz-box-shadow: 0px 0px 20px 0px rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgb(255, 255, 255);
  transition: all 0.475s;
}

/* inicio prueba slider marcas*/

@import url('https://fonts.googleapis.com/css?family=Montserrat');



:root {
  --marquee-width: 80vw;
  --marquee-height: 20vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  height: max-content;
  background-color: #0f172a;
  color: #eee;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: linear-gradient(to right, #111 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
    animation-play-state: paused;
  } */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4);
  /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 40%;
  height: 40%;
}

@media (max-width: 600px) {
  body { 
    overflow-x: hidden;
  }
  html {
    font-size: 12px;
  }
  .item-title {
    font-size: 40px;
  }

  .sub-title-span {
    font-size: 40px ;
  }

  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }

  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

/*fin slider marcas*/


.circle {
  
  height: 200px;
  width: 200px;
  background-color: #A855F7;
  border-radius: 50%;
  margin: 50px;
  filter: blur(100px);
  -webkit-filter: blur(100px);
  z-index: auto;

}


.container-cirle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.item-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: rotate(25deg);
}
.item-logo:hover {
  transform: rotate(25deg) scale(1.2);
  transition: 0.5s ease-in;

}

.sub-title {
  font-weight: 800;
  font-size: 45px;
  /** TEXT GRADIENT */
  color: #ffffff;
  background-image: -webkit-radial-gradient(circle, #E2E8F0 0%, #e2e8f0ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.sub-title-2 {
  font-weight: 800;
  font-size: 45px;
  /** TEXT GRADIENT */
  color: #ffffff;
  background-image: -webkit-radial-gradient(circle, #E2E8F0 0%, #e2e8f0ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.sub-title-span {
  background: #A855F7;
  background: linear-gradient(to right, #A855F7 40%, #E9D5FF 100%);
  -webkit-background-clip: text;
  background-clip: text;  -webkit-text-fill-color: transparent;
  
}

#about {
  display: flex;
  flex-direction: column;
  background-image: url(assets/img/image-hero-background.png);
  background-size: cover;
  background-position: center;
  justify-content: flex-start;
}


/*servicios grid*/

.item-parrafo-about {
  color: #94A3B8;
  font-size: 14px;
  font-style: normal;
  margin-top: 10px;
}

.item-titulo-about {
  color: #F8FAFC;
}

.icon-grid-about {
  color: #94A3B8;
}

.card-detalle {
  background-color: transparent;
}
.item-titulo-servicios {
  text-justify: auto;
  color: #CBD5E1;
}

.icon-grid-servicios {
  color: #CBD5E1;
}
.item-parrafo-servicios {
  color: #94A3B8;
  text-align:left;
  font-size: 14px;
  margin-top: 10px;
}

hr {
  border: 0;
  height: 1px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
}


/*cards */

.container-cards {
  display: flex;
  flex-direction: column;
}


.container-cards::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}


.container .box {
  width: auto;
  height: auto;
  padding: 1rem;
  background-color: #e8e8e810;
  border: 1px solid #475569;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
  cursor: pointer;
}

.container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container .box .title-card {
  display: block;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.2rem;
  color: #CBD5E1;
}

.container .box div strong {
  display: block;
  margin-bottom: 0.5rem;
}

.container .box div p {
  margin: 0;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.container .box div span {
  font-size: 0.7rem;
  font-weight: 300;
}

.container .box div span:nth-child(3) {
  font-weight: 500;
  margin-right: 0.2rem;
}

.container .box:hover {
  box-shadow: 0px 0px 20px 1px #51227a;
  border: 1px solid #A855F7;
}

/*link card*/

 .container-link .link-card {
  color: #A855F7;
}
.container-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
}

.container-link a {
  color: #CBD5E1;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.container-link a:hover {
  color: #A855F7;
  font-size: 14.5px;
  font-weight: 500;
  transition: 0.3s;
}

.detalles {
  background-image: url(assets/img/image-hero-background.png);
  height: 100vh; 
  max-height: 100vh; 
  overflow: hidden; 
  background-size: cover;
  background-attachment: fixed;
  background-position: center; 
  position: relative;
}

.container-subtitle {
  display: inline;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.container-grid {
  margin-top: 10vh;
  margin-bottom: 5vh;
}
.container-tools {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
}

.item-tools {
  display: flex;
  align-items: flex-start;
}

.tools {
  height: 100vh; 
  max-height: 100vh; 
  overflow: hidden; 
  position: relative;
}

.tools li {
  list-style: none;
  color: #CBD5E1;
  font-size: 15px;
  font-style: normal;
  margin-top: 10px;
}

.tools-icon {
  margin-right: 10px;
  color: #B74DDB;
}

.item-tools-list {
  margin-top: 40px;
}


/** 10. Tab --> Contact
*******************************************************************/

.login-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: transparent;
  box-sizing: border-box;
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input  {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #A855F7;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

/*fin section contact*/


/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}
.section-title-five h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}


/*======================================
    Brand CSS
========================================*/

.brand-area {
  padding: 100px 0;
  border-radius: 24px;
  background-image: url(assets/img/glow-bottom.svg);
  background-color: #e8e8e810;
  border: 1px solid #475569;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}


.navbar-brand, .navbar-nav .nav-link {
  color: #ffffff !important;
}

.header {
  background-color: #00000000;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.content-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  overflow-y: auto;
  max-height: 70vh;
}
footer {

  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}