/* @import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Open+Sans&family=Source+Sans+Pro&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.contenedor {
    width: 100%;
    margin: 0 auto;
}
body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #424242;
}
h1 {
    text-align: center;
    font-weight: bold;
    margin: 1.5rem;
}

.seccion-titulo {
    padding-top: 5px;
    padding-bottom: 5px;
}
.escrita-clara {
    color: lightgreen;
}
 p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
 }
.grow {
    animation-name: grow;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    padding: 8px 0 25px 0;
    /* border-top: solid 2px #8080804d;
    border-bottom: solid 2px #8080804d; */
}
            @keyframes grow {
                from {
                    font-size: 8px;
                }
                to  {
                    font-size: 35px;
                }
            }

/* NAV */

    header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #eff6f7;
    /* background-color: #eff6f7; */
    transition: 0.7s;
    z-index: 1;
    }
    
    header.abajo {
        background-color: #fff;
        padding: 8px 10px;
        color: #424242;
    } 

    header nav ul li a {
    position: relative;
    letter-spacing: 2px;
    transition: 0.7s;
}
   .zona1 {
    position: relative;
    width: 100%;
    height: 100vh;
   }

    .menu{
        font-weight: bold;
    }

    .nav-item a:hover {
        color:#424242;
        font-weight: bold;
        font-size: 1.02rem;
    }
    
    #home:hover {
        color: lightgreen;
        background-color: #607866;
    } 

    .dropdown-menu { 
        background-color: #fff;
        border: none;
        transition: transform .2s;
        box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.5);
    }
    
    .dropdown-menu a:hover {
        background-color: #9ea1a2;
        color: #fff;
    }

    .lang {
        display: flex;
        justify-content: space-between;
        text-align: justify;    
    }

/* Bandera */
img{
    width: 1.5rem;
    margin-right: 0.5rem;
    transform: var(--transform);
    transition: transform .3s;
    float: left;
}

.principal {
    margin-top: 1em;
    margin-bottom: 2em;
    padding: 100px 10px 100px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lista {
    list-style-type:georgian;
}

.img-p {
    width: 92%;
    margin: 5% 1% 5% 1%;
    transition: transform .2s;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 15px 25px #607866;
    border-radius: 6px;
}
.img-p:hover {
    transform: scale(1.02); 
}
.negrita {
    font-weight: bold;
}
.texto {
    font-style: italic;
    font-size: 1em;
}
/* efecto ola */
.hero {
    background-color: #eff6f7;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 110vh;
    padding: 20px 0;
}
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url(../imagenes/wave.png);
    background-size: 1000px 100px;
    animation: wave 10s linear infinite;
}
@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

.container {
    padding: 5px 0 5px 0;
    margin-top:10px;
    
}
.secundario {
    position: relative;
    margin: 0 0 10px 0;
    background-color: #eff6f7;
    padding: 5px 0;
}

/* Seccion Que hacemos */

.q-ofrecemos {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    
}
.q-ofrecemos:hover, .card:hover{
    background-color: #607866;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.5);
    transition: transform .5s;
    color: #fff;
  
}
.card:hover {
    filter: saturate(180%);
    transform: scale(0.98); 
}

.seccion-uno {
    line-height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 60px;
}
/* Icono de la card */
.derecha {
    float: left;
}
.card {
    background-color: #eff6f7;
    border: solid 2px #8080804d;
    margin-top: 0.6rem;
    
 }
 .card-body {
    height: 160px;
 }
 .texto-logo, .card-text {
    font-size: 1rem;
 }
 .card-text {
    text-align: left;
    font-size: 0.9rem;
 }
 .seccion-disenio {
    margin: 10px 0;
    padding: 10px;
 }
 .seccion-disenio:hover{
    border: 1px #fff solid;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
 }
.card-img-top {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.color {
    margin-top: 0;
    margin-bottom: 20px;
 
}
/* flecha subir */
.flecha-subir {
position: sticky;
top:100px;
display:inline-block;
}

/* Cookies */
.cookies {
    display: none;
    background-color: #333;
    color: #fff;
    z-index: 100;
  }
  .cookies.activo {
    display: block;
  }
  .margen {
    padding: 15px;
  }
  .cook {
    font-size: small;
  }
  .config-cook {
    color: skyblue;
    text-decoration: underline skyblue;
  }
  .btn {
    height: 30px;
  }
  .mod {
    color:#333;
    text-align: left;
    margin: 4%;
    font-size: 12px;
  }
  .r {
    border-radius: 50%;
    border-color:rgb(255, 213, 0);
    background-color: rgb(255, 213, 0);
  }

/* Footer */
footer {
    padding: 2rem;
    background-color: #eff6f7;
    margin: 30px 0 0 0;
    font-family: 'Source Sans Pro', sans-serif;
 
}

.underline {
    text-decoration: underline;
  }
  a {
    text-decoration: none;
    color: rgb(98, 90, 90);
  }
  a:hover {
    color:#424242;
    font-weight: bold;
  }

/* Adaptable responsivo */
@media screen and (max-width: 400px) {

}
@media screen and (max-width: 850px) {
    .menu {
        border: none;
        font-weight: bold;
    }
    button:hover {
        background-color:#fff;
    }
    .navbar-nav {
        background-color: #fff;
    }
    .navbar-nav:hover {
        background-color: #9ea1a2;
    }
    .nav-item a {
        padding-left: 5px;
    }
    .nav-item a:hover {
        color: #fff;
    }
    .container {
        padding-top: 5px;
        margin-top:5px;
    }
    p {
        font-size: 14px;
        line-height: 27px;
        letter-spacing: 1px;
    }
  
.hero {
    height: 130vh;
}
.img-p {
    width: 100%;
    margin: 15px 0 0 0;    
}

.q-ofrecemos, .estrategia {
    height: auto;
    margin: 10px 0px;
    padding-left: 6px;   /* antes 15px */
}

.card {
    margin-top: 0.5rem;
  }
  .texto-logo, .card-text {
    font-size: 14px;
  }
.image {
    height:17rem;
  }
  
  .seccion-uno {
    line-height: 20px;
    margin: 5px 0;
    padding: 50px 5px;
}

.primera-parte {
    padding-top: 130px;
}
.disenio-web {
    padding: 0;
    margin: 0;
}

}
