/* estilos secundarios página quienes-somos */


.section-whoweare {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 85%;
    width: 100%;
    margin: 2rem auto;
    box-sizing: border-box;
}

.div-whoweare {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.section-whoweare h1 {
    font-family: 'RoughSplash', normal;
}

.initial-text-whoweare {
    
    max-width: 50%;
    display: block;
    font-size: 22px !important;
    font-weight: bold !important;
    font-style: normal !important;
    box-shadow: none !important;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    text-align: justify;
    word-break: break-word;
    word-spacing: -0.2rem; 
}

.separator-whoweare::after {

    content: "";
    display: block;
    width: 22%;
    margin: 3rem auto 2rem auto;
    max-width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 5px;
    position: inherit;
    
}

.ceo-name {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', Courier;
    display: inline;
    box-shadow: inset 0 1em rgba(252, 206, 49, 0.60);
    border-radius: 5px;
    padding: 0 1rem;
    margin: 0;
}

.text-team {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', Courier;
    text-align: justify;
    display: block;
    max-width: 50%;
    width: 100%;
    margin: 2rem auto;
   
}

.final-box {
    display: inline-block;
    text-align: center;
    width: fit-content;
    margin: 1rem auto;
    max-width: 90%;
    text-align: center;
    font-family: 'Courier New', Courier;
    font-weight: bold;

}
.final-box a {
    text-decoration: none;
    color: #fcce31;
    font-weight: bold;
}

.studio-location {
    font-size: 16px;
    font-family: 'Courier New', Courier;
    font-weight: bold;
}

.location-icon {
    font-weight: bold;
    font-size: 24px;
    color: rgba(252, 206, 49);
    margin: 1rem;
}

.box-map{margin: 2rem auto;}
.map {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 50%;
    height: 400px; /* altura necesaria para que el mapa se renderice */
    border: 5px solid black;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



@media screen and (max-width: 768px){
    
    .text-team {
    text-align: center;
    display: block !important;
    box-shadow: none !important;
    max-width: 90%;
    width: 100%;
    margin: 2rem auto;
    word-spacing: -0.2rem; 
    overflow-wrap: break-word;
}

.section-whoweare {
    display: grid;
    margin-top: 25%;
    box-sizing: border-box;

}

.initial-text-whoweare {
    max-width: 90%;
    width: 100%;
    text-align: center;
    word-spacing: normal;
}

.map {
    display: inline-flex;
    max-width: 80%;
    width: 100%;
    height: 400px;
    margin: auto;
    border: solid 3px;
    border-color: black;
}

.map iframe {
    display: flex;
    max-width: max-content;
    box-sizing: border-box;
    padding: 0;
    margin: auto;
    overflow-x: hidden;
}

}