@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Roboto", sans-serif;
}

/*Header*/

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
}

.menu{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    max-width: 100vw;
    margin: auto;
    background-color: white;
    padding: 0 200px;
}

.logo img{
    width: 125px;
}

.menu  ul li{
    position: relative;
    float: left;
}

.menu ul li a{
    font-size: 22px;
    padding: 20px;
    font-weight: 600;
    color: black;
    display: block;
    cursor: pointer;
    text-transform: capitalize;
}

.menu .log-in ul li a{
    background-color: rgb(81, 188, 240);
    border-radius: 35px;
    color: white;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
}


.menu .log-in ul li a:hover{
    background-color: rgb(101, 184, 255);
}

#acceder-icon{
    margin-right: 10px;
}

.menu .navbar ul li a:hover{
    color: gray;
}

#menu{
    display: none;
}

#menu-icono{
    font-size: 40px;
}

.menu label{
    cursor: pointer;
    display: none;
}


.header-content{
    display: flex;
    align-items: center;
}

.header-txt{
    width: 50%;
    margin-right: 50px;
}

.header-txt h1{
    font-size: 55px;
    line-height: 65px;
    color: black;
    margin-bottom: 35px;
}

.header-txt p{
    font-size: 16px;
    color: #5E5E5E;
    margin-bottom: 45px;
}

.header-txt span{
    color: rgb(81, 188, 240);
}

.btn-1{
    display: inline-block;
    padding: 13px 45px;
    border-radius: 25px;
    background-color: rgb(81, 188, 240);
    font-size: 16px;
    color: #FFFFFF;
    text-transform: capitalize;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-1:hover{
    background-color: rgb(101, 184, 255);
}

.header-img{
    width: 50%;
    text-align: center;
}

.header-img img{
    width: 100%;
}

.purple-background-triangle{
    background-color: rgb(161, 199, 209); /* Color morado */
    clip-path: polygon(100% 0, 53% 48%, 100% 100%);
    height: 1200px; /* Ajusta según el tamaño que necesites */
    width: 100%;
    position: absolute;
    z-index: -1;
}


/*Services*/

.services{
    display: flex;
    align-items: center;
    min-height: 50vh;
    position: relative;
}

.services-container{
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2{
    font-size: 35px;
    color: #2196F3;
}

.services-slider{
    display: flex;
}

.service{
    display: flex;
}

.service-txt{
    width: 50%;
    margin-right: 20px;
    padding-left: 60px;
    margin: auto 0;
}

.service-txt h2{
    font-size: 30px;
    text-transform: capitalize;
    color: black;
    margin-bottom: 10px;
}

.service-txt p{
    font-size: 16px;
    color: #5E5E5E;
    padding-left: 10px;
    padding-top: 10px;
}

.service-img{
    width: 50%;
    padding-top: 60px;
    text-align: center;
}

.service-img img{
    width: 60%;
    border-radius: 20px;
}

.swiper {
    width: auto;
    height: 50vh;
}

.service span{
    color: rgb(81, 188, 240);
}

#service-8 img{
    padding-top: 0px;
    width: 40%;
}

/*About-Us*/

.about-us{
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
    text-align: center;
}

.about-container{
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h2{
    font-size: 35px;
    color: #2196F3;
}

.cards{
    display: flex;
    align-items: center;
    padding-top: 30px;

}

.team-card{
    text-align: center;
    padding: 50px;
    margin: auto;
}

.team-card img{
    width: 250px;
    height: 200px;
    border-radius: 50%;
}

.team-card h3{
    text-transform: uppercase;
    margin: 10px;
}

.team-card .position{
    color: #2196F3;
    margin: 12px;
}

.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    margin: 15px;
}
.social-icons a{
    cursor: pointer;
    margin: 15px;
    color: black;
}

.social-icons i{
    font-size: 18px;
}


/*Contact section*/

.contact .contact-blue-triangle{
    background-color: rgb(161, 199, 209); /* Color morado */
    clip-path: polygon(0 0, 100% 77%, 100% 100%, 0% 100%);
    height: 1250px; /* Ajusta según el tamaño que necesites */
    width: 100%;
    position: absolute;
    z-index: -3;
    top: -200px;
}

/* Fondo general */
.contact {
    padding: 60px 0;
    position: relative;
    min-height: 80vh;
}

/* Contenedor principal en 3 columnas */
.contact-container {
    width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Texto grande (izquierda) */
.contact-text h2 {
    color: white;
    font-size: 45px;
    font-weight: 700;
    margin: 0;
}

.contact img {
    position: relative;
    z-index: 1;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Tarjeta del formulario (derecha) */
.contact-card {
    width: 650px;
    background: white;
    padding: 25px;
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: 90px;
    left: 850px;
}
.contact-card h3 {
    margin-bottom: 15px;
    color: #2a3b47;
}

/* Formulario */
.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
}

.form .inputs{
    width: 100%;
    background: #f3f6f9;
    border: 1px solid #d6d9dc;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.button-enviar {
    align-self: flex-end;
    background: #2196F3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}
.button-enviar:hover {
    background: #7598b7;
}


/* Footer */

.footer {
    background-color: #2196F3;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.footer__subtitles {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
}

.footer__icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer__img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer__img:hover {
    transform: scale(1.2);
}

.footer__divider {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 30px auto 15px;
}

.footer__copy {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}
