/*Importar la fuente POPPINS en Google */

@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;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #7B90A7;
}
nav{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 20px;
    z-index: 9999;
    background: linear-gradient( #000000, #2a979d00);
}
nav.sticky{
    padding: 15px 20px;
    background: linear-gradient( #000000, #2a979d00)
}
nav .nav-content{
    
    height: 100%;
    max-width: 1200px;
    margin: auto;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo a{

    background-image: url(./img/forest-6761846_1920.jpg);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 150px;        /*= a 2em*/
    color: #e4e8f3;
    text-decoration: none;
    -webkit-text-stroke: 2px #e8dfdf;
}
nav.sticky .logo a{
    color: white;
    
}
.nav-content .nav-links{
    
    display:flex;

}
.nav-content .nav-links li{
    list-style: none;
    margin: 0px;
}
.nav-content .nav-links li a{
    text-decoration: none;
    color: #fbf8f8;
    font-size: 18px;
    font-size: 1.125em;  /* 18px x 1em/16px */  
    padding: 10px 20px;
    font-weight: bolder;
    transition: all 0.5s ease;
    text-shadow: 5px 5px 10px #000;
}
.nav-content .nav-links li a:hover{
    color:#fff;
}
.home{
    
    height: 100vh;
    width: 100%;
    background-image: url(./img/pexels-pixabay-147411.jpg);
    background-size: cover;       /*que quepa la imagen*/
    background-position: center;
    background-attachment: fixed;

}
.text h2{
    font-size: 50px;
    color: black;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 20px;
}
.text{
    text-align: justify;

    
}
#nosotros{
    font-size: 3em;
    color:#f8f8f8;
    text-shadow: 5px 5px 5px #000;
    font-weight: bolder;
}
#servicios{
    font-size: 3em;
    color:#ffffff;
    text-shadow: 5px 5px 5px #000;
    font-weight: bolder;
}
#sucursales{
    font-size: 3em;
    color:#ffffff;
    text-shadow: 5px 5px 5px #000;
    font-weight: bolder;
}
#contacto{
    font-size: 3em;
    color:#fdfeff;
    text-shadow: 5px 5px 5px #000;
    font-weight: bolder;
}
.contenedorimagen1{
    box-shadow: 10px 10px 10px #000;
    background-image: url(./img/deer-7508187_1920.jpg);
    border-radius: 100%;
    height: 400px;
    width: 100%;
    background-size: cover;       /*que quepa la imagen*/
    background-position: center;
    background-attachment: fixed;
}
.contenedorimagen2{
    box-shadow: 10px 10px 10px #000;
    background-image: url(./img/river-8279466_1920.jpg);
    border-radius: 100%;
    height: 400px;
    width: 100%;
    background-size: cover;       /*que quepa la imagen*/
    background-position: center;
    background-attachment: fixed;
}
.contenedorimagen3{
    box-shadow: 10px 10px 10px #000;
    background-image: url(./img/forest-6761846_1920.jpg);
    border-radius: 100%;
    height: 400px;
    width: 100%;
    background-size: cover;       /*que quepa la imagen*/
    background-position: center;
    background-attachment: fixed;
}
.contenedorimagen4{

    box-shadow: 10px 10px 10px #000;
    background-image: url(./img/waterfall-7258514_1920.jpg);
    border-radius: 100%;
    height: 400px;
    width: 100%;
    background-size: cover;       /*que quepa la imagen*/
    background-position: center;
    background-attachment: fixed;
}
.centrado{
    text-align: center;
    font-size: 5em;
    color: black;
    margin-top: 30px;
}
h2{
    text-align: center;
    margin:20px;
    font-size: 3em;
}
p#nosotros{
    width: 100%;
    
    background-color: #030a115a;
    text-align: center;
    
    font-size: 3em;
}
p{
    margin: 20px 0;
    text-align: justify;
    padding: 0 20px;
}
p#servicios{
    width: 100%;
    background-color: #030a115a;
    text-align: center;
    
    font-size: 3em;
}
p#sucursales{
    width: 100%;
    background-color: #030a115a;
    text-align: center;
    
    font-size: 3em;
}
p#contacto{
    width: 100%;
    background-color: #030a115a;
    text-align: center;
    
    font-size: 3em;
}

.centrado:hover{
  transform: scale(1.5);
  transition: transform 1s ease;
  
}
.centrado{
    height: fit-content;
    width: fit-content;
    align-items: center;
    margin:20px auto
}
.nav-links a:hover{
    
    
    transform: scale(1.2);
    transition: transform 1s ease;
}
.nav-links a{
    display: block;
}
