* {
    font-family: "Red Hat Display", sans-serif;
}

html {
    scroll-behavior: smooth;
    /*es el selector que hace que todos los scrolls que se hacen */
}

body {
    /*Por default el body contiene un porde de 8px, entonces se debe de eliminar*/
    margin: 0;
    background-color: #ffffff;
    color: #1E1E1E;
}






/*Valores generales de los textos*/
h1 {font-size: 70px;
    font-weight: 800;
}

h2 {font-size: 50px;
    font-weight: 800;
}

h3 {font-size: 30px;
    font-weight: 500;
}

h4 {font-size: 20px;
    font-weight: 500;
}

p {font-size: 16px;
    font-weight: 400;
}

section {
    padding: 70px 0;
}



/*aqui inician los estilos de la navegacion*/
nav {
    background-color: #ffffff !important;

}

nav a {
    color: black !important;
    font-size: 20px !important;
    font-weight: 400 !important;

    transform: scale(0.85);
}

nav .active {
    font-weight: 700 !important;
}

nav a:active {
    font-weight: 700 !important;
}

nav a img {
    width: 200px;
}

nav a:hover {
    font-weight: 800 !important;
    transform: scale(0.9);
}











/*Aqui inician los estilos del header*/
.header-lap {
    min-height: 100vh;
    padding-top: 10rem;
}

header {color: #ffffff;}
header h3 {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    display: inline-block;
    border-radius: 50px;
}

.boton-gris {
    text-decoration: none;
    background-color: #797876;
    font-weight: 700;
    color: #ffffff;
    padding: 15px 30px;
    text-align: center;

    display: inline-block;
    margin: 30px 0;

    border-width: 2px;
    border-style: none;
    border-color: #ffffff;
    border-radius: 50px;
}

.boton-gris:hover {
    background-color: #3AB7E9;
    color: #ffffff;
    
    border-width: 2px;
    border-style: none;
    border-color: #797876;
    border-radius: 50px;
}










/*estilos de la primer seccion*/
.tx-about {
    margin-bottom: 50px;
}

.about h3 {
    color: #3AB7E9;
}

.about h2 {
    color: #2D3247;
}

.sec1-serv a {
    text-decoration: none; /* Elimina el subrayado */
    color: inherit; /* Hereda el color del texto de su contenedor */
}

.sec1-serv img {
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.377);
    margin-bottom: 15px;
}





/*Estilos de la segunda seccion circulos concentricos de las eeguridad*/
.circulos {
    background-color: #2D3247;
    color: #ffffff;
}

.cir-det {
    padding-top: 50px;
}

.cir-det p {
    font-size: 14px;
    font-weight: 400;
}







/*estilos de la seccion de contacto index*/
.contacto h3 {
    color: #3AB7E9;
}

.contacto h2 {
    color: #2D3247;
}







/*estilos del footer*/
footer {
    background-color: #1E1E1E;
    color: #ffffff;
    padding: 50px 0;
}

footer a {
    text-decoration: none; /* Elimina el subrayado */
    color: inherit; /* Hereda el color del texto de su contenedor */
}

footer ul {
    list-style: none; /*Este es para quitar los estilos de la lista*/
}

footer li {
    margin-bottom: 15px;
}

footer li:hover {
    font-weight: 800 !important;
}

.imago-foo {
    max-width: 150px;
}

.tx-foo img {
    width: 40px;
    margin-right: 5px;
}






/*Estilos para el Boton de Whats*/
.whats {
    width: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.whats img {
    width: 60px;
}























/* Small devices (less than 768px) */
@media (max-width: 768px) {
    header h3 {
        font-size: 25px;
    }
    h1 {
        font-size: 50px;
    }
}