@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Poppins", sans-serif;
}


image{
    max-width: 100%;
}

.container{
    max-width: 1100px;
    margin: 0 auto;
}

.header {
    background-color: #fafafa;
    padding: 150px 0 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}


.menu{
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .navbar ul li{
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #323232;
    display: block;
}

.menu .navbar ul li a:hover{
    color: #02b1f4;
}

.logo{
    font-size: 25px;
    font-weight: 800;
    color: #02b1f4;
    text-transform: uppercase;
}

#menu {
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
}

.header-txt{
    width: 50%;
}

.header-txt h1{
    line-height: 1;
    color: #323232;
    text-transform: uppercase;
    font-size: 75px;
    margin-bottom: 10px;
}

.header-txt p{
    font-size: 16px;
    color: #818181;
    margin-bottom: 45px;
}

.header-img {
    width: 50%;
}

.btn-1{
    display: inline-block;
    padding: 11px 25px;
    background-color: #02b1f4;
    color: #fff;
    border-radius: 15px;
}

.about{
    padding: 100px 0;
    display: flex;
}

.about-img{
    width: 50%;
}

.about-img img{
    width: 500px;
    border-radius: 15px;
}

.about-txt{
    width: 50%;
    margin-left: 25%;
}
.about-txt h2{
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
}

.about-txt{
    font-size: 16px;
    color: #818181;
}

.servicios{
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #fafafa;
}

.servicios h2{
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
}

.servicios-content {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
}

.servicio-1{
    padding: 50px;
    box-shadow: 0 0 400px rgba(0, 0, 0, 0.1);
    flex-basis: calc(25% - 20px);
}

.servicio-1 i{
    font-size: 30px;
    color: #02b1f4;
    margin-bottom: 15px;
}

.servicio-1 h3{
    font-size: 20px;
    color: #323232;
    text-transform: capitalize;
}

.formulario{
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    padding: 50px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.2);
}

form h2{
    font-size: 25px;
    color: #323232;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.input-container{
    position: relative;
}

.input-container > i{
    padding: 14px;
    border-radius: 50%;
    background-color:#02b1f4;
    color: #fafafa;
    position: absolute;
    font-size: 20px;
    top: 4px;
    left: 10px;
}

.input-container > input, textarea{
    padding: 17px 15px 17px 65px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 35px;
    background-color: transparent;
    border: 2px solid #02b1f4;
    font-size: 17px;
    outline: none;
    color: #323232;
}

textarea{
    font-family: 'Poppins', sans-serif;
    height: 150px;
}

::placeholder{
    color: #a0a0a0;
    font-size: 16px;
}

.btn{
    background-color: #02b1f4;
    padding: 17px 30px;
    width: 100%;
    border: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    color: #fafafa;
    font-size: 15px;
    cursor: pointer;
}

.footer{
    padding: 50px;
    background-color: #fafafa;
}

.footer-content{
    display: flex; align-items: center;
    justify-content: space-between;
}

.link ul{
    display: flex; align-items: center;
    justify-content: space-between;
}

.link ul li{
    margin-right: 50px;
}
.link ul li a{
    color: #323232;
    font-size: 17px;
}

.link ul li a:hover{
    color: #02b1f4;
}

.custom-btn {
    width: 200px;   /* ancho fijo */
    margin: 5px;    /* espacio entre botones */
}

.link-login {
    font-size: 12px;        /* Tamaño pequeño */
    padding: 4px 8px;       /* Espaciado reducido */
    text-decoration: none;  /* Quitar subrayado */
    color: #333;            /* Color base */
    transition: color 0.3s ease;
}

.link-login:hover {
    color: gold;            /* Cambia a dorado al pasar el mouse */
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre elementos */
}

.btn-dorado {
    background-color: gold !important;  /* Color dorado */
    border: none;                       /* Sin borde */
    color: black !important;            /* Texto en negro para contraste */
    font-size: 0.75rem;                  /* Más pequeño */
    padding: 0.25rem 0.75rem;            /* Compacto */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-dorado:hover {
    background-color: goldenrod !important; /* Dorado más oscuro al pasar el mouse */
    transform: scale(1.05);                  /* Efecto ligero de agrandado */
}

@media (max-width:991px){}

    .menu{
        padding: 20px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    } 

    #menu:checked ~ .navbar{
        display: initial;
    }

    .header{
        min-height: 0vh;
        padding: 80px 30px 50px 30px;
    }

    .header-content{
        flex-direction: column;
    }

    .header-txt{
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }

    .header-img{
        width: 100%;
    }

    .header-img img{
        width: 100%;
    }

    .about{
        padding: 30px;
        flex-direction: column;
    }

    .about-img{
        width: 100%;
        order: 2;
    }

    .about-img img{
        width: 100%;
    }

    .about-txt{
        width: 100%;
        margin-left: 0;
        text-align: center;
        margin-bottom: 25px;
    }

    .servicios{
        padding: 30px;
    }

    .servicios-content{
        margin-top: 25px;
        flex-direction: column;
    }

    .servicio-1{
        margin-bottom: 20px;
    }

    .formulario{
        padding: 30px;
        margin-top: 0;
        margin-bottom: 0;
    }

    form{
        width: 100%;
    }

    .footer{
        padding: 30px;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }

    .link ul{
        flex-direction: column;
    }

    .link ul li{
        margin: 0 0 15px 0;
    }

.custom-btn {
    width: 200px;   /* ancho fijo */
    margin: 5px;    /* espacio entre botones */
}
.form-check-inline {
    margin-right: 10px;
}

.form-check-input {
    transform: scale(0.8); /* Reduce el tamaño del checkbox */
    margin-top: 2px;
}

.form-check-label {
    font-size: 0.85rem; /* Texto más pequeño */
}
