@font-face {  
    font-family: 'montserrat-Bold';  
    src: url(/fonts/Montserrat-Bold.ttf) format('truetype');
    font-weight: normal;  
    font-style: normal;  
}

@font-face {  
    font-family: 'montserrat-Medium';  
    src: url(/fonts/Montserrat-Medium.ttf) format('truetype');
    font-weight: normal;  
    font-style: normal;  
}

/* Definición de variables globales para colores y fuentes */
:root {
    --fuente-montserratBold: 'Montserrat-Bold', sans-serif; /* Fuente principal para el texto */
    --fuente-monntserratMedium: 'Montserrat-Medium', sans-serif;       /* Fuente para títulos destacados */
    
    --fondoPaginaWeb: #000000;
    --fondoPagina: #ffffff;
    --color-texto: #ffffff;
    --color-texto2: #1b1b1b;
    --color-hover: #c2aff7;
    
}

/*:::::::::::::::::::::::::::::::::::::::::BODY PAGINA::::::::::::::::::::::::::::::::::::::::::::::::*/

/* Reset de márgenes y rellenos para todos los elementos */
* {
  padding: 0; /* Eliminar todo el relleno predeterminado */
  margin: 0;  /* Eliminar todos los márgenes predeterminados */
  box-sizing: border-box;
}

/* Estilos para el cuerpo de la página */
body {
  background-color: var(--fondoPaginaWeb) ; /* Fondo de la página utilizando la variable definida */
  color: #fafafa;          /* Color del texto principal utilizando la variable definida */
}

/*:::::::::::::::::::::::::::::::::::::::::ENCABEZADO::::::::::::::::::::::::::::::::::::::::::::::::*/
.nav {
  background-color: transparent;
  height: 80px;
  color: #fff;
  position: relative;
  z-index: 200; /* Asegura que todo el nav esté encima */
}

.nav__container {
  display: flex;
  height: 90%;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 200; /* ⬆️ Logo y botón por encima del menú */
}

.nav__container img {
  height: 240px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: grid;
  grid-auto-flow: column;
  gap: 2em;
}

.nav__item {
  color: #fff;
  text-decoration: none;
  font-family: var(--fuente-montserratBold);
  font-size: 15px;
  --clippy: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.nav__item::after {
  content: "";
  display: block;
  background: #fff;
  width: 90%;
  margin-top: 3px;
  height: 3px;
  clip-path: var(--clippy);
  transition: clip-path .3s;
}

.nav__item:hover {
  --clippy: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  color: var(--color-hover);
}

.nav__logo {
  font-size: 20px;
  font-family: var(--fuente-montserratBold);
  font-weight: 900;
}

.nav__label,
.nav__input {
  display: none;
}

@media (max-width: 700px) {
  .nav__label {
    display: block;
    cursor: pointer;
    z-index: 200;
    position: relative;
  }

  .nav__img {
    width: 30px !important;
    height: auto !important;
  }

  .nav__input {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #5d18b9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    clip-path: circle(0 at center);
    transition: clip-path 0.8s ease-in-out;
    z-index: 100; /* ⬅️ Menú debajo del logo y botón */
  }

  .nav__input:checked ~ .nav__menu {
    clip-path: circle(150% at center);
  }

  .nav__container img {
    height: 170px;
  }

  .nav__menu .nav__item {
    font-size: 20px;
    margin: 10px 0;
  }
}



/*:::::::::::::::::::::::::::::::::::::::::PORTADA::::::::::::::::::::::::::::::::::::::::::::::::*/

.contenedorPortada {
  background-color: var(--color-hover);
  padding: 60px 20px;
  border: 2px solid #8000ff20;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 1320px;
  margin: 60px auto;

}

.portada {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.portada img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-right: 15%;
}

.portada h3 {
  font-size: 35px;
  margin-bottom: 10px;
  font-family: var(--fuente-montserratBold);
}

.portada p {
  font-size: 17px;
  line-height: 1.5;
  font-family: var(--fuente-monntserratMedium);
}

.portada-texto {
  max-width: 500px;
  margin-left: 10%;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .contenedorPortada {
    padding: 30px 20px;
    margin: 30px auto;
    width: 95%;
    box-sizing: border-box;
  }

  .portada {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .portada img {
    margin-right: 0;
    max-width: 90%;
    height: auto;
  }

  .portada-texto {
    margin-left: 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .portada h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  .portada p {
    font-size: 16px;
    line-height: 1.5;
  }
}


/*:::::::::::::::::::::::::::::::::::::::::::INTRO::::::::::::::::::::::::::::::::::::::::::::::*/

.intro {
  width: 100;
  padding: 2rem 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.intro {
  width: 100;
  padding: 2rem 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.intro h2 {
  font-size: 28px;
  font-family: var(--fuente-montserratBold);
  color: var(--color-hover);
  font-weight: bold;
}

.intro p {
  font-size: 18px;
  font-family: var(--fuente-monntserratMedium);
  margin-top: 10px;
  color: var(--color-texto);
}

.intro strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-hover);
}




.intro2{
  width: 100;
  padding: 2rem 2rem;
  text-align: center;
  margin-bottom: 40px;
  background-color: var(--fondoPagina);
}

.intro2{
  width: 100;
  padding: 2rem 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.intro2 h2 {
  font-size: 28px;
  font-family: var(--fuente-montserratBold);
  color: var(--color-hover);
  font-weight: bold;
}

.intro2 p {
  font-size: 18px;
  font-family: var(--fuente-monntserratMedium);
  margin-top: 10px;
  color: var(--color-texto2);
}

.intro2 strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-hover);
}



/*:::::::::::::::::::::::::::::::::::::::::::SERVICIOS::::::::::::::::::::::::::::::::::::::::::::::*/

.contenedorServicios {
  padding: 4rem 2rem;
}

.servicios-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  
}

.servicios {
  background-color: #e2d4ff;
  border-radius: 2rem;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(138, 43, 226, 0.2);
}

.servicios h4 {
  color: #4b0082;
  font-size: 20px;
  font-family: var(--fuente-montserratBold);
  margin-bottom: 1rem;
}

.servicios p {
  color: #333;
  font-size: 15px;
  font-family: var(--fuente-monntserratMedium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-servicio {
  display: inline-block;
  background-color: #7b2ff7;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-servicio:hover {
  background-color: #5d18b9;
}

/*:::::::::::::::::::::::::::::::::::::::::::LISTA::::::::::::::::::::::::::::::::::::::::::::::*/

.contenedorlista {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px; /* Aumenta este valor */
  margin: 60px auto;
  padding: 0 20px;
  flex-wrap: nowrap; /*impide que se vaya abajo */
}

.lista-wrapper {
  flex: 1 1 60%;
  margin-left: 2%;
}

.lista-wrapper h2 {
  font-size: 24px;
  font-family: var(--fuente-montserratBold);
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 50px;
}

.lista-incluye {
  list-style: none;
  padding-left: 0;
}

.lista-incluye li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: var(--fuente-monntserratMedium);
  color: var(--color-texto);
  line-height: 1.5;
}

.lista-incluye li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #8000ff; /* morado neón suave */
  font-size: 18px;
  line-height: 1;
}

.imagen-derecha {
  flex: 1 1 45%; /* Aumenta espacio para la imagen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-derecha img {
  max-width: 100%;
  max-height: 500px; /* Ajusta según tu gusto */
  width: auto;
  height: auto;
  object-fit: contain;
}


.imagen-der {
  flex: 1 1 45%; /* Aumenta espacio para la imagen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-der img {
  max-width: 100%;
  max-height: 500px; /* Ajusta según tu gusto */
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contenedorlista {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .lista-wrapper {
    margin-left: 0;
    max-width: 100%;
  }

  .imagen-derecha,
  .imagen-der {
    margin-top: 30px;
    max-width: 100%;
  }

  .imagen-derecha img,
  .imagen-der img {
    max-height: 300px;
  }

  .lista-wrapper h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .lista-incluye li {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/*:::::::::::::::::::::::::::::::::::::::::::VENTAJAS::::::::::::::::::::::::::::::::::::::::::::::*/

.seccion-beneficios {
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.seccion-beneficios h2 {
  font-size: 28px;
  font-family: var(--fuente-montserratBold);
  color: var(--color-texto);
  margin-bottom: 60px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas */
  gap: 40px;
  justify-items: center;
}


.beneficio {
  padding: 20px;
  text-align: center;
}

.beneficio img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.beneficio h4 {
  font-size: 18px;
  font-family: var(--fuente-montserratBold);
  margin-bottom: 12px;
  color: var(--color-texto);
}

.beneficio p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-texto);
  font-family: var(--fuente-monntserratMedium);
}

@media (max-width: 900px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
  }
}

@media (max-width: 600px) {
  .beneficios-grid {
    grid-template-columns: 1fr; /* 1 columna en celular */
  }

  .seccion-beneficios h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .beneficio h4 {
    font-size: 16px;
  }

  .beneficio p {
    font-size: 14px;
  }
}

/*:::::::::::::::::::::::::::::::::::::::::::INTRO2::::::::::::::::::::::::::::::::::::::::::::::*/

.contenedorsinweb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  flex-wrap: nowrap;
}

.imagen-izquierda {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-izquierda img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.texto-derecha {
  flex: 1 1 35%;
}

.texto-derecha h2 {
  font-size: 28px;
  font-family: var(--fuente-montserratBold);
  color: var(--color-texto);
  margin-bottom: 30px;
}

.lista-sinweb {
  list-style: none;
  padding-left: 0;
}

.lista-sinweb li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 16px;
  font-size: 16px;
  font-family: var(--fuente-monntserratMedium);
  color: var(--color-texto);
  line-height: 1.6;
}

.lista-sinweb li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #8000ff;
  font-size: 18px;
}

.lista-sinweb strong {
  color: #8000ff;
}

@media (max-width: 768px) {
  .contenedorsinweb {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .imagen-izquierda,
  .texto-derecha {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .imagen-izquierda img {
    max-height: 300px;
  }

  .texto-derecha h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .lista-sinweb li {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

/*:::::::::::::::::::::::::::::::::::::::::::FINAL::::::::::::::::::::::::::::::::::::::::::::::*/

.cuadro-arranque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-hover);
  border: 2px solid #8000ff20;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 60px;
  gap: 40px;
  max-width: 1320px;
  margin: 60px auto;
  flex-wrap: wrap;
}

.columna-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.columna-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

.columna-txt {
  flex: 1 1 50%;
}

.columna-txt h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: var(--fuente-montserratBold);
}

.columna-txt p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: var(--fuente-monntserratMedium);
}

.btn-cuadro {
  background-color: #8000ff;
  color: #fff;
  font-size: 14px;
  font-family: var(--fuente-monntserratMedium);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cuadro:hover {
  background-color: #5800c9;
}
@media (max-width: 768px) {
  .cuadro-arranque {
    flex-direction: column;
    padding: 40px 20px;       /* 👈 más aire lateral */
    margin: 40px 20px;        /* 👈 espacio entre esquinas */
  }

  .columna-img {
    order: 2;
  }

  .columna-txt {
    order: 1;
    text-align: center;
  }

  .columna-txt h2 {
    font-size: 22px;
  }

  .columna-txt p {
    font-size: 15px;
  }
}

/*:::::::::::::::::::::::::::::::::::::::::FOOTER::::::::::::::::::::::::::::::::::::::::::::::::*/

.footer {
    background-color: var(--fondoPaginaWeb);
    padding: 20px;                           /* Espaciado del pie de página */
    color: #ffffff;            /* Color del texto */
    text-align: center;                       /* Centrar texto */
    font-family: var(--fuente-montserratBold);   /* Usar fuente Montserrat */
    font-size: 12px;                       /* Tamaño de fuente */
    font-weight: 400;                        /* Grosor de fuente */
    margin-top: 5%;
}

.footer b {
    background: linear-gradient(90deg, #a387f0, #f8eded, #a387f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
