/*titulos*/
.title {
    color: gray;
    font-size: 6vw;
}
/* texto del parrafo */
.text {
    color: gray;
    font-size: 4vw;    
}
/*texto marcado*/
strong {
    color: blue;
}

/***** welcome *****/
#section-index-welcome {
    /* border: 1px solid black; */
    width: 100%;
    padding: 0 50px;
    display: flex; /* permite que funcione margin para centrar */
}
#welcome-text {
    /* border: 1px solid red; */
    /* float: left; */
    width: 40%;
    text-align: right;
    margin: auto 0;
}
#welcome-girl {
    width: 60%;    
}
#welcome-girl img {
    width: 100%;
    max-width: 640px;
    margin-top: -70px; 
}

/** la nueva forma... **/
#section-index-nuevaForma {
    /* border: 1px solid black; */
    width: 100%;
    display: flex;
    margin: 20px 0;
    justify-content: center; /* display: flex */
}

#section-index-nuevaForma p {
    /* border: 1px solid black; */
    color: gray;
    margin: auto 0; /*centrar vertical */
    font-size: 2.2vw;    
}

/* logo gucitex */
#section-index-nuevaForma img {
    width: 6%;
    height: 6%;
}

/*** girls ****/
#girls-index {
    /* border: 1px solid red; */
    width: 100%;
    display: flex;    
}
#girls-index img {
    float: left;
    width: 20%;  
    height: 33vw; /* evitar estiramiento exagerado en Safari */
    object-fit: cover;
    object-position: center;
    box-shadow: 2px 2px 2px silver;
    padding: 5px;
    border-radius: 10px;
}

#section-index-queEsGucitex {
     display: block; 
}

hr {
   border: 1px solid #FF005A;
   margin: 0 50px;
   box-shadow: 0 0 10px #FF005A; 
   border-radius: 5px; 
}

#section-index-sonComodas div {
    /* border: 1px solid black; */
    width: 50%;    
}
/* piernas 1 */
#section-index-sonComodas div:nth-child(2) img {
    width: 70%;
    max-width: 300px;   
}

#section-index-sonModernas div {
    /* border: 1px solid black; */
    width: 50%;    
}
/* piernas 2 */
#section-index-sonModernas div:nth-child(1) img {
    width: 70%;
    max-width: 370px;   
}

#section-index-fabricamos div {
    /* border: 1px solid black; */
    width: 50%;    
}
/* joven */
#section-index-fabricamos div:nth-child(2) img {
    width: 100%;
    max-width: 300px;   
}

#section-index-legends {
    background-color: rgb(214, 214, 214);
    align-items: unset; /* no centrar vertical */ 
    margin-bottom: 0;
}

#section-index-legends div {
    width: 33.33%;    
    padding: 20px 5px;
}

#section-index-legends img {
    width: 64px;
}

.title-legends {
    color: red;
    font-size: 4vw;
}

.text-legends {
    color: gray;
    font-size: 3vw;
}

/* limitar max tamaño de texto */
@media screen and (min-width: 800px) {
    .title {
        font-size: 48px;
    }
    .text, .title-legends {
        font-size: 32px;    
    }
    .text-legends {
        font-size: 24px;
    }    
}

@media screen and (max-width: 500px) {
    #section-index-welcome {
        padding: 0 25px;
    }
    #section-index-welcome img {
        margin-top: -20px;
    }

    #section-index-nuevaForma {
        padding: 0 25px;
    } 

    section {
        padding: 0 25px;
    }
    hr {
        margin: 0 25px;
    }

    #section-index-legends img {
        width: 32px;
    }
}