body,html{
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  scroll-behavior: smooth;
  max-width: 2000px;
}






/*Contenedor Header*/
.contenedor-header{
    width: 90%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.menu{
    display: flex;
    list-style-type: none;
    gap: 50px;
    padding: 0px 30px;
    align-items: center;
}

.menu a{
    text-decoration: none;
    color: initial;
}
.menu a:hover{
    text-decoration:underline;
    color: initial;
    transform: scale(0.5);
    transition: all 0.5s ease-in;
}


/*PRESENTACION DE INICIO*/
.presentacion{
    display: flex;
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
}
.presentacion div{
    width: 100%;
}
.txt-presentacion{
    font-size: 2.2rem;
    line-height: 0.9;
}

.txt-presentacion h1{
    margin: 0;
}

.borde-txt{
    -webkit-text-stroke: 0.5px #9c9c9c;
}
.color-primario{
    color: #3c1b63;
}
.color-secundario{
    color: rgb(59, 59, 59);
}
.img-presentacion{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.img-presentacion img{
    width: 86%;
    height: auto;
}

/*DEGRADADO*/
.contenedor-degradado{
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

background-image:
  radial-gradient(circle at 14% 19%, rgb(60, 27, 99) 0%, rgba(56, 28, 94, 0.82) 17%, rgba(46, 29, 84, 0.55) 35%, rgba(23, 33, 59, 0) 47%),
  radial-gradient(circle at 29% 71%, rgb(106, 93, 126) 0%, rgba(96, 86, 118, 0.82) 21%, rgba(74, 70, 101, 0.55) 44%, rgba(23, 33, 59, 0) 59%),
  radial-gradient(circle at 97% 98%, rgb(182, 146, 211) 0%, rgba(163, 132, 193, 0.82) 14%, rgba(122, 103, 153, 0.55) 29%, rgba(23, 33, 59, 0) 39%),
  radial-gradient(circle at 86% 77%, rgb(96, 69, 128) 0%, rgba(87, 65, 120, 0.82) 23%, rgba(68, 55, 102, 0.55) 49%, rgba(23, 33, 59, 0) 65%);
filter: hue-rotate(0deg) saturate(100%) brightness(100%) contrast(100%);

}

.fondo{
    background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   width:85%;
  height: max-content;
  margin: 0 auto;

}

.cuadro-que-hacemos{
    width: auto;
    color: white;
    padding: 50px;
    gap: 20px;

}
.contenedor-iconos{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top:30px;
    gap: 20px;
}
.icons{
    display: flex;
    flex-direction: column;
    flex: 0 0 30%;;
    gap: 10px;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    padding: 25px;
}

.icons strong{
    font-size: 1.3rem;
}
.icons i{
    font-size: 2rem;
}


/*SERVICIOS*/
.serv{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    
}
.serv::after{
    content: "";
    position: relative;
    background-color: #3c1b63;
    width: 15%;
    height: 10px ;
    background-color: #3c1b63;
}
.car{
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
}
.forma{
    width: 95%;
    height: max-content;
    aspect-ratio: 1 / 1;
    position: relative;
}
.figura { width: 100%; height: 100%; display: block; }
.img-serv{
    width: 45%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Difuminado de abajo hacia arriba */
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 65%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        black 65%,
        transparent 100%
    );

}
.img-carro{
    width: 45%;
}
.img-car{
    width: 100%;
    border-radius: 30px;
}
.info-servicios-car{
    width: 45%;
}


/*funcionamiento*/
.funcionamiento{
    width: 100%;
    height: max-content;
    background: radial-gradient(58% 58% at 16.0% 18.0%, #000000 0%, rgba(0,0,0,0) 62%), 
                radial-gradient(58% 58% at 85.0% 22.0%, #1d2244 0%, rgba(0,0,0,0) 62%), 
                radial-gradient(58% 58% at 48.0% 50.0%, #12005c 0%, rgba(0,0,0,0) 62%), 
                radial-gradient(58% 58% at 24.0% 86.0%, #1e1a52 0%, rgba(0,0,0,0) 62%), 
                radial-gradient(58% 58% at 88.0% 82.0%, #777eb6 0%, rgba(0,0,0,0) 62%), 
                radial-gradient(58% 58% at 62.0% 96.0%, #6a52e0 0%, rgba(0,0,0,0) 62%), #0a0f1f;
    background-position: center;
    padding: 60px 0px;
}
.contenedor-funcionamiento{
    width: 80%;
    margin: 0 auto;
}
.como-funciona{
    color: white;
    text-align: center;
}
.circulos{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.circle{
    font-size: 3rem;
    border: 10px solid white;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}
.circle small{
    font-size: 1.5rem;
}

/*faq*/

.faq{
    color: white;
    padding: 40px;
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq details{
    border: 1px solid rgba(145, 145, 145, 0.637);
    border-radius: 10px;
    padding-left: 20px;
}
.faq summary{
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(165, 165, 165, 0.842);
    cursor: pointer;
}
.faq details[open] summary{
    color: #c9b4ff;
}
.faq summary::before{
      content: "\F505";
    font-family: "bootstrap-icons";
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.contacto{
    width: 100%;
    color: white;
    text-align: center;
}

.contacto h1{
    font-size: 3rem;
    margin-bottom: 10px;
}

.contacto > p{
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 auto 40px;
    max-width: 650px;
}


/* FORMULARIO */

.registro{
    width: min(750px, 80%);
    margin: 0 auto;
    padding: 45px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,.20);

    display: flex;
    flex-direction: column;
    gap: 22px;

    box-sizing: border-box;
}

.campo{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 7px;
}

.campo label{
    color: #3c1b63;
    font-size: .9rem;
    font-weight: 600;
}

.campo input{
    width: 100%;
    height: 48px;
    padding: 0 15px;
    box-sizing: border-box;

    border: 1px solid #d5d5d5;
    border-radius: 10px;

    font-family: "Poppins", sans-serif;
    font-size: .95rem;

    outline: none;
    transition: .2s;
}

.campo input:focus{
    border-color: #6a52e0;
    box-shadow: 0 0 0 3px rgba(106,82,224,.12);
}

.campo input::placeholder{
    color: #a0a0a0;
}


/* BOTÓN */

.registro button{
    width: 100%;
    min-height: 50px;

    border: none;
    border-radius: 10px;

    background: #6a52e0;
    color: white;

    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: .25s;
}

.registro button:hover{
    background: #3c1b63;
    transform: translateY(-2px);
}


/* AVISO */

.registro small{
    color: #666 !important;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/*FOOTER*/
.pie{
    color: white;
    text-align: center;
    margin-top: 160px;
}





.logo-mobile{
    display: none;
}
.mobile{
    display: none;
}


@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .logo-pc{
    display: none;
  }
  .logo-mobile{
    display: flex;
    width: 60px;
    height:60px;
  }
  .contenedor-header{
    display: flex;
    align-items: center;
  }
  .menu{
    display: none;
  }
  .mobile{
    display: flex;
  }
  .contacto-mobile{
    font-size: 1.2rem;
  }



  .presentacion{
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  .txt-presentacion{
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3;
  }
  .img-presentacion{
    margin-top: 30px;
  }



  .fondo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
  }
  .contenedor-degradado,    .contenedor-iconos{
    flex-direction: column;
    height: max-content;
    padding: 0;
  }
  .cuadro-que-hacemos{
    width: 80%;
    padding: 10px;
    margin: 0 auto;
  }
 

  .serv,.car{
    flex-direction: column;
  }
  .info-servicios-car {
    width: 100%;
    }

    .img-carro{
        width: 90%;
    }




    .circulos{
        flex-direction: column;
        gap: 30px;
    }
    .circle{
        width: 160px;
        height: 160px;
        border: 4px solid white;
    }



    .faq{
        width: 80%;
        padding: 10px 30px;
    }

    .registro{
        width: 100%;
    }
  
}


@media (min-width: 600px)  and (max-width: 1024px)  {
  body {
    font-size: 14px;
  }
  .logo-pc{
    display: none;
  }
  .logo-mobile{
    display: flex;
    width: 60px;
    height:60px;
  }
  .contenedor-header{
    display: flex;
    align-items: center;
  }
  .menu{
    display: none;
  }
  .mobile{
    display: flex;
  }
  .contacto-mobile{
    font-size: 1.2rem;
  }



  .presentacion{
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  .txt-presentacion{
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3;
  }
  .img-presentacion{
    margin-top: 30px;
  }



  .fondo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
  }
  .contenedor-degradado,    .contenedor-iconos{
    flex-direction: column;
    height: max-content;
    padding: 0;
  }
  .cuadro-que-hacemos{
    width: 80%;
    padding: 10px;
    margin: 0 auto;
  }
 

  .serv,.car{
    flex-direction: column;
  }
  .info-servicios-car {
    width: 100%;
    }

    .img-carro{
        width: 90%;
    }




    .circulos{
        flex-direction: column;
        gap: 30px;
    }
    .circle{
        width: 160px;
        height: 160px;
        border: 4px solid white;
    }



    .faq{
        width: 80%;
        padding: 10px 30px;
    }

    .registro{
        width: 100%;
    }
  
}




