body{
    background-color: white;
    padding: 0;
    margin: 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    padding-left: 10px;
    font-size: 32px;
}
/*******************

Encabezado de la pagina

****************/



header{
    width: 100%;
    height: 140px;
    background-color: black;
}
.cont-header{
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: space-between;

    padding: 0px 20px;
    margin: 0 auto;
    gap: 20px;
}
.img-logo{
    width: 200px;
    height: auto;
    object-fit: contain;
}
.menu{
    color: white;
    font-weight: bold;
    margin-top: 35px;
    text-transform: uppercase;
    display: flex;
    list-style-type: none;
    padding: 0;
    gap: 20px;
    font-size:0.875rem;
    text-rendering: optimizeLegibility;
}

.menu li > a{
    color: white;
     text-decoration: none;
     transition: color .4s ease;
}
.menu li > a:visited{
    color: white;
    text-decoration: none;
}

.menu li> a:hover{
    color: #0fc8ff;
}



/*******************

PRESENTACION DE LA PAGINA

****************/
.contenedor-header{
    width: 100%;
    height: 30vh;
    background-image: url("./assets/img/comparte.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*******************

Contenido de la presentacion

****************/
.contenido{
    position: absolute;
    width: 100%;
    height:50%;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_title{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    line-height: 0;
}
.letra_banner{
    font-size: 3.4rem;
    color: white;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0;
    text-shadow: -3px -3px 3px #484848, 3px -3px 3px #484848, -3px 3px 3px #484848, 3px 3px 3px #484848
}


.letra_general{
    font-size: 17px;
    line-height: 1.4;
}
/*******************

Seccion Experiencia

****************/

.fondo_gris{
    background-color: rgb(248, 248, 248);
    padding: 80px 0px;
}

.icono-rombo{
    width: 40px;
    height: 40px;
    background: #0fc8ff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

    transform: rotate(45deg);
}

.icono-rombo i{
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;

    transform: rotate(-45deg);
}


/*******************

Buscador

****************/

.contenedor_buscador{
    width: 75%;
    margin: 0 auto;
    text-align: center;
}

.divisor{
    width: 100%;
    border: 1px solid rgb(196, 196, 196);
    margin-top: 80px;
}


/*******************

Datos personales

****************/

.contenedor_datos{
    width: 75%;
    margin: 0 auto;
}

.datos_personales{
    display: flex;
    gap: 20px;
    padding: 40px 0px;
    border-top:1px solid  rgb(187, 186, 186);
}
.div_dato{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.div_dato input{
    height: 40px;
    border: 1px solid rgb(187, 186, 186);
    padding: 0px 15px;
    color: gray;
}

/*******************

CONTENEDOR INPUTS

****************/

.contenedor_fraude{
    padding-top: 40px;
    border-top:1px solid  rgb(187, 186, 186);
    
}
.cuadro_fraudes{
    display:grid;
    grid-template-columns: 1fr 50%;
    gap:20px;
}

.textos,
.inputs{
    display:grid;
    gap:10px;
}
.contenedor_tipos{
    height: 40px;
}
.textos,.inputs{
    flex: 1;
}
.inputs{
    display: flex;
    flex-direction: column;
}
.inputs input{
    height: 36px;
}

.input_oculto{
    visibility: hidden;
}
/*******************

Comparte tu experiencia

****************/

.compartir_experiencia{
    border-top:1px solid  rgb(187, 186, 186);
    padding-top: 35px;
}
.cont-experiencia{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}
.cont-experiencia input{
    height: 40px;
}
.cont-experiencia textarea{
    max-width: 100%;
    min-width: 100%;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
}


/*******************

BTN

****************/
.btn-ex{
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 60px;
}
.regresar{
    width: 80px;
    height: 35px;
    border: 1px solid grey;
    border-radius: 5px;
    cursor: pointer;
}
.regresar:hover{
    background-color: #b8b8b8;
}
.enviar{
    width: 130px;
    height: 50px;
    background-color: #0fc8ff;
    border: 0;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    text-rendering: optimizeLegibility;
    transition: background-color 0.5s ease;
    cursor: pointer;
}
.enviar:hover{
    background-color: black;
}


/*******************

footer

****************/

footer{
    padding: 100px 0;
    background-color: black;
}


/*******************

CONTACTO

****************/
.contenedor-footer{
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}
.contacto{
    display: flex;
}
.contacto_tarjeta{
    flex: 1;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contacto_tarjeta i{
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #252525;
    padding: 15px;
    border-radius: 50%;
}
.contacto_tarjeta label{
    color: #0fc8ff;
    font-weight: bold;
    font-size: 1.4rem;
}
.contacto_tarjeta span{
    font-size: 1.1rem;
}

/*******************

Redes Sociales

****************/

.redes{
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.redes_titulo{
    color: #0fc8ff;
    font-weight: bold;
    font-size: 1.4rem;
}
.subtitulo_titulo span{
    font-size: 1.1rem;
}
.cont-red{
    width: 100%;
    height: max-content;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.red i{
    width: 100px !important;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    background-color: #252525;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
}

.face,.x,.youtube{
    transition: background-color 0.5 ease;
}
.face:hover{
  background-color: #1546b1;
}
.x:hover{
    background-color: black;
}
.youtube:hover{
    background-color: rgb(221, 37, 37) !important;
}
/*******************

terminos

****************/

.terminos,.derechos{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.derechos{
    margin-top: 10px;
}

/*******************

Celulares
****************/
.btn-menu{
    display:none;
    background:none;
    border:none;
    font-size:35px;
    cursor:pointer;
    color:white;
    background-color: #0fc8ff;
}
.contacto a{
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacto a:visited{
  text-decoration: none;
}


@media (max-width:769px) {

   .cont-header{
        width:100%;
        position:relative;
        padding:0;
    }

    .btn-menu{
        display:block;
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
        z-index:20;
    }

    .menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000;
        display:none;
        flex-direction:column;
        padding:0;
        margin:0;
        z-index:10;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        list-style:none;
        border-top:1px solid rgba(255,255,255,.2);
    }

    .menu li a{
        display:block;
        padding:15px 20px;
        color:#fff;
        text-decoration:none;
    }

    .menu li a:hover{
        background:#222;
    }

    .banner_title{
        line-height: 1.5;
        font-size: 2rem !important;
    }
    .letra_banner{
        font-size: 1.5rem;
    }
    .contenedor-header{
        height: 250px;
        gap: 0;
        line-height: 1.3;
    }
    .contenido{
        height: auto;
        gap: 0;
        line-height: 1.3;
    }

    .datos_personales{
        flex-direction: column;
    }
    
 .cuadro_fraudes{
        grid-template-columns:1fr;
    }

    .inputs{
        margin-top:-10px;
    }


    .contacto{
        flex-direction: column;
        gap: 30px;
    }
}