@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --color-main-black-filter:rgba(0, 0, 0, 0.692);
    --color-main-black-filter-light:rgba(0, 0, 0, 0.514);
    --color-main-aqua-green:#22b573;
    --color-main-aqua-green-light:#37e999;
    --color-main-aqua-green-filter:#22b573c0;
    --light-style:white;
    --dark-style:black;
    --bg-nubes:url(assets/nubes-fondo-compressed.jpg);
    scroll-behavior: smooth;
}

html{
    font-family: 'Cairo', sans-serif;
    color:var(--light-style);
    line-height: 1.2;
    background-color:rgb(243, 243, 243);
}
p{
    line-height: 1.5;
}

.text-center{
    text-align: center;
}

.banner-title{
    background-color: white;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1rem;
}

/* header */

.header--index{
    padding-top: 2rem;
    background-color: var(--dark-style);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.header-flex{
    display: flex;
}

.header-flex .header__img{
    width: 95%;
    max-width: 600px;
    flex-grow: 1;
    flex-shrink: 1;
}


.header__banner{
    display: grid;
    align-items: center;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr 1fr;
    font-size: 2rem;
    background-image: linear-gradient(var(--color-main-aqua-green-filter),var(--color-main-aqua-green-filter)),url(assets/nubes-fondo-compressed.jpg);
    padding: 2rem;
}

.header__banner img{
    grid-row-start: span 2;
}

.header__banner p{
    border-bottom: 1px white solid;
    width: 100%;
    text-align: center;
}

.header__banner p span{
    color:black;
}

.banner-green-filter{
    background: linear-gradient(var(--color-main-aqua-green-filter),var(--color-main-aqua-green-filter));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-green{
    background-color: var(--color-main-aqua-green);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;

}



.header__p{
    text-align: center;
    font-size: 2rem;
}

.header__h2{
    /* width: 100%; */
    border-top:solid 1px gray;
    border-bottom:solid 1px var(--color-main-aqua-green);
    background-color: var(--dark-style);
    text-align: center;
    padding: 1rem;
}

.header__h2 h2{
    font-size: 3rem;
    color:var(--color-main-aqua-green);
    font-weight: 400;

    animation-name: alternarbn;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}


@keyframes alternarbn {
    0%,40%,100%{
        color:var(--color-main-aqua-green);
    }
    50%,90%{
        color:white;
    }
}

.flex-h{
    display: flex;
    align-items: flex-start;
}

.cuadro{
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.fondo-modular-up{
    background-image:  url(assets/cuadros-modulo-up.png);
    background-size: auto;
    background-position: top;
    background-repeat:repeat-x;
}

.fondo-modular{
    background-image:  url(assets/cuadros-modulo.png);
    background-size: auto;
    background-position: bottom;
    background-repeat:repeat-x;
}

/* .fondo-modular-claro-up{
    background-image:  url(assets/cuadros-modulo-claro-up-05.png);
    background-size: auto;
    background-position: top;
    background-repeat:repeat-x;
} */

.fondo-modular-claro{
    background-image:  url(assets/cuadros-modulo-claro-04.png);
    background-size: auto;
    background-position: bottom;
    background-repeat:repeat-x;
}

#head{
    
    /* display: flex; */
    padding: 3rem;
    /* width: 100%; */
    flex-grow: 1;
    flex-shrink: 1;
   /*  justify-content: flex-start;
    gap:50px; */
}


.sabias{
    width: 100%;
    background-color: var(--dark-style);
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.sabias>div{
    padding: 3rem 20%;

}

span{
    color:var(--color-main-aqua-green);
}

.caja-redes{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 13rem;
}

.caja-redes img{
    width: 3rem;
}

.h1{
    line-height: 1.2;
    font-size: clamp(1rem, 10vw, 5rem);
    width: max-content;
    

}



.anim-escribir{
    color:#222;
    position: relative;
    width: 100%;
}

.anim-escribir::before{
    content:attr(data-text);
    position: absolute;
    color:white;
    overflow: hidden;
    white-space: nowrap;
    border-right: solid 4px #fff;
    animation: escribir 3s linear infinite;
    max-width: max-content;
}

@keyframes escribir {
    0%,10%,100%{
        width: 0;

    }
    70%,90%{
        width: 100%;
    }
}

.title{
    font-size:3rem;
    text-align: center;
    font-weight: 600;
    padding-top: 2rem;
   
}

.title--banner{
    font-size:3rem;
    text-align: center;
    font-weight: 600;
    padding: 1rem;
    padding-top: 2rem;
}

.title--aqua{
    color: var(--color-main-aqua-green);
}

.title--black{
    color: black;
}

.title--white{
    color: white;
}



.item-nro{
    font-size: 4rem;
    font-weight: 600;
}

.flex-column-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.column{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:2rem;
}

.icono-grande{
    width: 300px;
}

.mini-footer{
    border-top: var(--color-main-aqua-green) solid 1px;
    background-color: var(--dark-style);
    padding: 0.5rem;
    font-weight: 400;
}

/* parrafo que explica el proceso */

.parrafo-claro{
    color:black;
    padding: 1rem 3rem;
}

.padding-top{
    /* es para separar con lo de arriba */
    padding-top: 2rem;
}

.parrafo-claro h2{
    color:var(--color-main-aqua-green);
    font-size: 2.5rem;
}

.parrafo-claro p{
    font-size: 1.5rem;
    font-weight: 400;
}

.parrafo-encuadrado{
    /* margin: 0 2rem; */
    border: var(--color-main-aqua-green) solid 3px;
    color:black;
    padding: 1rem;
}

.parrafo-encuadrado h2{
    color:var(--color-main-aqua-green);
    font-size: 2.5rem;
}

.parrafo-encuadrado p{
    text-align: justify;
    font-size: 1.5rem;
}

.parrafo-con-fondo{
    background-color: var(--color-main-aqua-green);
    color:white;
    padding: 1rem;
}

.parrafo-con-fondo h2{
    color:white;
    font-size: 2.5rem;
}

.parrafo-con-fondo p{
    text-align: justify;
    font-size: 1.5rem;
}


.bg-nubes{
    background-image: var(--bg-nubes);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-filter-nubes{
    
    background:linear-gradient(var(--color-main-black-filter),var(--color-main-black-filter)),var(--bg-nubes);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* servicios */
.servicios{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: center;
    position: relative;
    padding-bottom: 2rem;
}

.servicios__h3{
    color: var(--color-main-aqua-green);
    font-size: 1.5rem;
}

.sticky{
    top:2rem;
    left:0;
    position: sticky;
}

.relative{
    position: relative;
}

.servicios__packs{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 100px 1fr;
    column-gap: 1rem;
    row-gap: 15px;
    align-items: end;
    padding: 3rem;
    min-height: 90vh;
}

.servicios__item{
    background-color: white;
    border-radius:30px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color:black;
    height: 100%;
    gap:0.3rem;
}

.servicios__item:nth-child(2){
    grid-row: 1/span 2;
    grid-column-start: 2;
}

.servicios__item:nth-child(1),.servicios__item:nth-child(3){
    grid-row-start: 2;
}


.servicios__item ul{
   list-style:  url(assets/lista-flecha.png) square;
   text-align: left;
   padding-top: 1rem;
   padding-bottom: 1rem;
   align-self: flex-start;
   padding-left: 1rem;
   margin-left: 1rem;
   display: flex;
   flex-direction: column;
   gap:.5rem;
}


.button-comprar-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.button-comprar{
    text-decoration: none;
    background-color: var(--color-main-aqua-green);
    border-radius: 10px;
    padding: 0.5rem 1rem ;
    color:white;
    font-size: 1.5rem;
}

.button-comprar:hover{
    background-color: var(--color-main-aqua-green-light);
}

.foto-parrafo{
    width: 100%;
    display: flex;
    align-items: center;
    
    gap:2rem;
}

.foto-parrafo--big{
    width: 100%;
    display: flex;
    align-items: center;
    
    gap:2rem;
}



.foto-parrafo--space{
    padding: 3rem 6rem;
}

.flex-reverse{
    flex-direction: row-reverse;
}

.foto-parrafo img{
    max-height:50vh;
}

.bg-dark-filter{
    background-color: var(--color-main-black-filter);
}

.text-b{
    color:black;
}

/*  */

.fondo-banner-img{
    min-height: 400px;
   
    background-size: cover;
}

.bg-diseno-web{
    background-image: url(assets/diseno-web-online.jpg);
    background-position-y: center;
}

.bg-diseno-pantallas{
    background-image: url(assets/banner-fondo-responsive-pantallas.jpg);
    background-position-y: bottom;
    background-position-x: 60%;
}

.bg-pc-html{
    background-image: url(assets/concepto-estrategia-planificacion-estrategia-marketing.jpg);
    background-position-y: center;
    background-position-x: 80%;
    min-height:  clamp(150px, 20vw, 400px);
    background-size: cover;
}

.bg-banner-html{
    background-image: url(assets/sistema-html-concepto-sitios-web.jpg);
    background-position-y: center;
}


.fondo-banner-img>div{
width: 100%;
min-height: 100%;

}

.banner-img{
    max-width: 80%;
}

.banner-constructoras{
    background-image: linear-gradient(-90deg,#7070706e,#bebebeb9),url(assets/constuctoras.jpg);
    background-position-y: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 3rem 3rem;
    justify-content: space-around;
}

.title-construccion{
    font-size: 1.5rem;
}

.proyectos-construccion{
   display: flex;
   flex-wrap: wrap;
   gap:0.5rem;
}

.proyectos-construccion img{
    
    height: 225px;
    object-fit: cover;
}

.proyectos-construccion-container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap:1rem;
}

/*  */
/* seccion de "lo que puede tener mi pagin" */

.componentes-container{
    background-color: white;
    color:black;
}
.componentes{
    
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    grid-template-rows: repeat(auto-fill,minmax(200px,1fr));
    grid-auto-rows: 200px;
    grid-auto-columns: 200px;
    grid-auto-flow: dense;
    gap:20px;
    align-items: center;
    justify-items: center;
    text-align: center;
    align-content: space-between;
    font-weight: 600;
}

.componentes__item img{
    max-width: 80px;
}
/*  */

.proyectos{
    padding: 2rem 0rem;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(400px,1fr));
    grid-template-rows: repeat(auto-fill,minmax(300px,1fr));
    gap:2rem;
    align-items: center;
    justify-items: center;
    text-align: center;
    align-content: space-between;
}

.proyectos__img img{
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.proyectos__img img:hover{
    filter: brightness(60%);
    transform: translateY(-20px);
}

/* seccion del boton */

.white-section{
    background-color: white;
    width: 100%;
    min-height: 5rem;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    
}

.foto-parrafo__little{
    height: 80px;
}

.foto-parrafo__medium{
    height: 200px;
}

.foto-parrafo__big{
    height: 400px;
}

.white-section--titulo{
    text-align: center;
    position: relative;
    top: 20px;
}
.boton-ver{
    border: solid 4px var(--color-main-aqua-green);
    border-radius: 100px;
    padding: .5rem 1rem;
   text-decoration: none;
   color:var(--color-main-aqua-green);
   font-size: 1.5rem;
}

.boton-ver:hover{
    background-color: aquamarine;
}

.boton-redondo__item{
    z-index: 1;
    width: 100%;
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}

.boton-redondo__texto{
    font-size: 1.3rem;
}

.boton-redondo__div{
    display: flex;
}



.boton-redondo__item:first-child{
    border-radius: 100px 0 0 100px;
    
}

.boton-redondo__item:last-child{
    border-radius: 0 100px 100px 0;
}


.btn-sombra{
    display: grid;
    z-index: 10;
    justify-items: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    color:black;
    padding: 10px;
    position: relative;
    border-radius: 50px;
    background: #fcfcfc;
    margin-left: auto;
    top: 40px;
    text-align: center;
    margin-right: auto;
    height: 75px;
    width: 468px;
    box-shadow: 0 -1px 2px rgb(255,255,255), inset 0 1px 2px rgba(0,0,0,.2), inset 0 0.25rem 1rem rgba(0,0,0,.1);
}

.btn-sombra__img{
    width: 2rem;
}


footer{
    border-top: var(--color-main-aqua-green) solid 5px;
}

.logo-grande{
    width: 600px;
}

#contactos{
    
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#contactos h2{
    font-size: 3rem;
    color: var(--color-main-aqua-green);
    font-weight: 400;
}

#contactos h2 strong{
    font-size: 4rem;
}


#contactos h2 span{
    color: white;
    
}

#contactos h3{
    padding-top: 2rem;
    font-size: 2.5rem;
}

#contactos p{
    font-size: 2.5rem;
    font-weight: 400;
}

#contactos a{
    text-decoration: none;
    color: white;
}

.firma{
    
    display: flex;
    align-items: center;
    gap:0.5rem;
    font-size: 1.7rem;
    justify-content: center;
}

.firma img{
    width: 4rem;
    object-fit: contain;
}

.firma span{
    font-weight: 600;
}

#nav-container{
    display: none;
    justify-content: flex-start;
    background-color: var(--dark-style);
    padding: 0.5rem;
    width: 100%;
    
}

#nav-container img{
    width: 30px;
}

.nav{
    position: fixed;
    width: 100%;
    z-index: 100;
}

.visible-nav{
    display:flex;
    align-items: center;
    background-color: var(--dark-style);
    width: 100%;
}

.no-pc{
    display: none;
}

.visible-nav>div:first-child{
    background-image: linear-gradient(var(--color-main-black-filter),var(--color-main-black-filter)),var(--bg-nubes);
    display: flex;
    gap:1rem;
    align-items:center;
    padding: .5rem 1rem;
}

.visible-nav>div:last-child{
    width: 100%;
}

.visible-nav ul{
    font-weight: 600;
    padding: 0 2rem;
    list-style: none;
    display: flex;
    gap:1.5em;
    font-size: 1.2rem;
    flex-wrap: wrap;
}


.visible-nav ul a{
    text-decoration: none;
    color:var(--color-main-aqua-green);
}

.visible-nav ul a:hover{
    color:var(--light-style);
}

.redes-sociales{
    display:flex;
    gap:1rem;
}

.redes-sociales__img{
    width: 20px;
}



.button{
    padding: 0.5rem 0.7rem;
    display:flex;
    align-items: center;
    gap:0.4rem;
    color:white;
    text-decoration: none;
    font-weight: 600;
}

.wsp{
    background-color: #25d366;
}

.gmail{
    background-color: 	#c71610;
}

.wsp:hover{
    background-color: #4dff8e;
}

.gmail:hover{
    background-color: 	#ff4d47;
}



/*componente: cuadro de dos columnas con recuadros corridos*/

.recuadro__columna-down{
    padding-bottom: 4rem;
}

.recuadro__columna{
    display:flex;
    align-items: center;
    flex-direction: column;
    gap:20px;
    
}

.recuadro__columna-up{
    padding-top: 4rem;
}

.recuadro__item-card-container{
    position: relative;
    width: 300px;
    height: 300px;
}


.pointer:hover{
    cursor: pointer;
}

.recuadro__item-card{
    position: absolute;
    width: 100%;
    height: 100%;
    
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.recuadro__item-card-flip{
    transform: rotateY(180deg);
}


.recuadro__item{
    /*frente de la tarjeta*/
    width: 100%;
    height: 100%;
    display: flex;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    backface-visibility: hidden;
    background-color: var(--color-main-aqua-green);
}

.recuadro__item--info{
    /*detras de la tarjeta*/
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    backface-visibility: hidden;
    background-color:none;
    border: var(--color-main-aqua-green) solid 3px;
    color:black;
    transform: rotateY(180deg);
}

.recuadros-corridos{
    display: grid;
    grid-template-columns: auto auto;
    column-gap:20px;
    justify-items: center;
    justify-content: center;
    padding: 2rem;
}

.recuadro__item-icono{
    max-height: 4rem;
}

.recuadro__item-titulo{
    font-size: 2rem;
}

.icono-pequeño{
    max-height: 2rem;
}


/**/

/*boton-redondo*/

.boton-redondo{
    border: solid 6px var(--color-main-aqua-green);
    border-radius: 100px;
    background-color: var(--color-main-black-filter);
   
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    text-align: center;
    position: relative;
}

.boton-redondo>p{
    z-index: 1;
    width: 100%;
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 0 0 100px;
    padding: 1rem 2rem;
}

.boton-redondo>p:first-child{
    border-radius: 100px 0 0 100px;
    
}

.boton-redondo>p:last-child{
    border-radius: 0 100px 100px 0;
}

.hover-izquierdo:hover{
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.445),rgba(255, 255, 255, 0));
}

.hover-derecho:hover{
    background: linear-gradient(-90deg,rgba(255, 255, 255, 0.445),rgba(255, 255, 255, 0));
}

.boton-redondo::after{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 50%;
    height: 100%;
    border-right: solid 2px var(--color-main-aqua-green);
}

.boton-redondo__or{
    border-radius: 50%;
    background-color: var(--color-main-aqua-green);
    width: 50px;
    height: 50px;
    display:flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 1rem 0;
}
/*  */

/*contenedor acordeon  */

.contenedor-acordeon{
    color:black;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap:1rem;
}

.contenedor-acordeon__item{
    
    padding: 1rem;
    border: var(--color-main-aqua-green) solid 3px;
    transition: all .2s ease-in-out;
}


.contenedor-acordeon__h3{
    color:var(--color-main-aqua-green);
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: clamp(0.6rem, 3vw, 2rem);
}

.contenedor-acordeon__item p{
    display: none;
    text-align: justify;
    font-size: 1.5rem;
}

.contenedor-acordeon__h3::after{
    content:'';
    background-image: url(assets/flecha.png);
    background-size: cover;
    background-position: center;
    width: clamp(1rem, 5vw, 2rem);
    height: clamp(1rem, 5vw, 2rem);
    display: flex;
    justify-content: flex-end;
    transition: transform .5s ease-out;
}

.contenedor-acordeon__item.active{
    color:white;
    background-color: var(--color-main-aqua-green);
}

.contenedor-acordeon__item.active p{
    display: block;
}

.contenedor-acordeon__item.active .contenedor-acordeon__h3{
    color:white;
}

.contenedor-acordeon__item.active .contenedor-acordeon__h3::after{
    transform: rotateZ(90deg);
}
/*  */

.separador-img{
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 1200px){

    .foto-parrafo--big{
        flex-direction: column;
        align-items: center;
    }

    .header-flex{
        flex-direction: column;
    }

    .header-flex .header__img{
        width: 60%;
        align-self: flex-end;
    }

    .servicios__packs{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap:2rem;
        align-items: end;
        padding: 3rem;
        min-height: 90vh;
        text-align: left;
    }

    .servicios__item:nth-child(2){
        grid-row: auto;
        grid-column-start: auto;
    }
    
    .servicios__item:nth-child(1),.servicios__item:nth-child(3){
        grid-row-start: auto;
    }

    .servicios__item{
       max-width:400px;
    }

    .sabias>div {
        padding: 3rem;
    }

}

/* cambio del nav a tipo celular */
@media screen and (max-width: 1060px){
    #nav-container{
        display: flex;
        
    }

    .nav-hidden{
        display: none;
    }

    .visible-nav{
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        background-color: var(--light-style);
        width: max-content;
        min-width: 45%;
        min-height: 90vh;
    }

    .no-pc{
        display: block;
    }

    .visible-nav>div:first-child{
        width: 100%;
        padding: 2rem;
        flex-direction: column;
        gap:1rem;
        align-items:flex-start;
    }

    .firma{
    
        align-items: center;
        gap:0.5rem;
        font-size: 1.7rem;
        justify-content: center;
        padding-top: 2rem;
    }

    .visible-nav>div:last-child{
        width: 100%;
        padding: 2rem;
    }

    .visible-nav ul{
    
        padding: 2rem 2rem 0rem;
        flex-direction: column;
        gap:1rem;
        font-size: 2.5vh;
        flex-wrap: wrap;
    }
    
    .visible-nav ul a:hover{
        color:var(--dark-style);
    }
}

@media screen and (max-width: 1000px){
    

    .foto-parrafo--space {
        padding: 1rem;
    }

    .foto-parrafo img {
        max-height: 30vh;
    }
}


@media screen and (max-width: 900px){

    #contactos .firma{
        padding-top: 2rem;
    }

    .visible-nav>div:first-child{
        padding: 1rem;
    }

    .foto-parrafo,.flex-reverse {
        flex-direction: column;
    }

    .foto-parrafo--start {
        align-items: flex-start;
    }

    .foto-parrafo--space--beneficios {
        padding: 3rem;
    }
}



@media screen and (max-width: 750px){
    .logo-grande {
        width: 400px;
    }

    .foto-parrafo__big {
        height: 200px;
    }

    .title {
        font-size: 2rem;
    }

    .parrafo-claro {
        padding: 1rem;
    }

    #contactos h2 strong {
        font-size: 3rem;
    }

    .logo-banner{
        max-width: 200px;
    }

    .header__banner p{
        font-size: 1.5rem;
    }

    .title--banner {
        font-size: 2rem;
    }

}

@media screen and (max-width: 670px){

    #contactos{
        align-items: center;
    }

    #contactos .firma{
        align-self: center;
    }

    .recuadros-corridos {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .recuadro__columna {
        padding: 0;
    }

    .componentes {
        grid-auto-rows: auto;
        grid-auto-columns: auto;
        column-gap: 10px;
        row-gap: 40px;
        grid-template-rows: repeat(auto-fill,minmax(100px,1fr));
    }

    .firma {
        padding: 0;
    }
}



@media screen and (max-width: 570px){

    #contactos h2{
        font-size: 2rem;
    }

    /* .contenedor-acordeon__h3{
        font-size: 1.2rem;
    } */

    #contactos h2 strong {
        font-size: 1.5rem;
    }

    .logo-banner{
        max-width: 150px;
    }

    .header__banner p{
        font-size: 1rem;
    }

    .contenedor-acordeon {
        padding: 1rem;
    }
}

@media screen and (max-width: 500px){

    .button {
        font-size: 0.7rem;
    }

    #contactos h3{
        font-size: 1.5rem;
    }
    
    #contactos p{
        font-size: 1.5rem;
    }

    p,.header__p,.parrafo-claro p,.contenedor-acordeon__item.active p{
        font-size: 1rem;
    }

    .boton-redondo__or {
        width: 25px;
        height: 25px;
    }

    .boton-redondo>p {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }

    .parrafo-claro h2{
        font-size: 1.5rem;
    }

    
    .parrafo-encuadrado h2{
        font-size: 1.5rem;
    }
    
    .parrafo-con-fondo h2{
        color:white;
        font-size: 1.5rem;
    }

    .firma img{
        width: 2rem;
    }

    .logo-grande {
        width: 200px;
    }

    .btn-sombra {
        width: 300px;
    }

    .fondo-banner-img {
        min-height: 250px;
    }

    .icono-grande {
        width: 200px;
    }

    .title {
        font-size: 1.5rem;
    }

    .foto-parrafo--space--beneficios img {
        max-width: 200px;
    }

    .logo-banner{
        max-width: 100px;
    }

    .servicios__packs {
        padding: 1rem;
    }

    .componentes{
        padding: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

}


@media screen and (max-width: 430px){
    #head{
        flex-direction: column;
    }

    .botones{
        flex-direction: column;
    }

    .visible-nav{
        width: 100%;
        max-width: 100%;
        min-width: 70%;
    }

    .proyectos {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    }

    .title--banner {
        font-size: 1.2rem;
    }

    .header__h2 h2 {
        font-size: 2rem;
    }

    .btn-sombra {
        width: 200px;
    }

    .btn-sombra__img {
        width: 1rem;
    }

    .btn-sombra {
        padding: 5px;
        top: 20px;
        height: 40px;
    }

    .componentes{
        padding: 0;
    }

    .servicios__h3 {
        font-size: 1rem;
    }

    p,.header__p,.parrafo-claro p,.contenedor-acordeon__item.active p,#contactos p{
        font-size: 0.9rem;
    }

    .logo-banner {
        max-width: 70px;
    }

    .header__banner p {
        font-size: 0.8rem;
    }

    

    .componentes__item img {
        max-width: 60px;
    }
}

@media screen and (max-width: 350px){

    
    
    #contactos h2{
        font-size: 1.2rem;
    }
    
    #contactos h3{
        padding-top: 1rem;
        font-size: 1rem;
    }

    p,.header__p,.parrafo-claro p,.contenedor-acordeon__item.active p{
        font-size: 0.7rem;
    }

    .foto-parrafo__big {
        height: 150px;
    }

    .servicios__item ul {
        font-size: 0.6rem;
        list-style: url(assets/lista-flecha-p.png) square;
    }

    .button-comprar {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .header-flex .header__img {
        width: 80%;
        align-self: center;
    }
}

@media screen and (max-width: 300px){

    .foto-parrafo__little {
        max-height: 3rem;
    }

    .boton-redondo__or {
        width: 15px;
        height: 15px;
    }

    .boton-redondo>p{
        font-size: 0.6rem;
    }

    .recuadro__item-card-container {
        width: 150px;
        height: 150px;
    }

    .title {
        font-size: 1.2rem;
    }

    .recuadro__item-titulo {
        font-size: 1.2rem;
    }

    .recuadro__item-icono {
        max-height: 3rem;
    }

    .recuadro__item--info{
        padding: 1rem;
    }

    .foto-parrafo--space--beneficios img {
        max-width: 150px;
    }

    .contenedor-acordeon {
        padding: 1rem;
    }

    .header__banner p {
        font-size: 0.6rem;
    }

    #head {
        padding: 1rem;
    }

    .icono-grande {
        width: 150px;
    }

    .sabias>div {
        padding: 1rem;
    }

    .boton-redondo {
        border: solid 3px var(--color-main-aqua-green);
    }

    .parrafo-encuadrado h2 {
        font-size: 1.2rem;
    }

    .header-flex .header__img {
        width: 40%;
    }

    .componentes{
        padding: 0.5rem;
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .componentes__item img {
        max-width: 40px;
    }
}


@media screen and (max-width: 250px){
    .logo-grande {
        width: 100px;
    }

    .parrafo-con-fondo h2 {
        font-size: 1rem;
    }

    .proyectos{
        grid-template-rows: repeat(auto-fill,minmax(200px,1fr));
        grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
        gap:1rem;
    }

    .foto-parrafo__big {
        height: 100px;
    }

    .servicios__h3 {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1rem;
    }

    .componentes {
        grid-template-rows: repeat(auto-fill,minmax(70px,1fr));
    }

    /* .contenedor-acordeon__h3 {
        font-size: 0.6rem;
    } */

    p, .header__p, .parrafo-claro p, .contenedor-acordeon__item.active p {
        font-size: 0.6rem;
    }
}

