#equipo {background-color: var(--color-blanco); min-height: 100vh; width: 100%;}

#equipo_container {
    display: block;
    width: 100%;
}


.cnt-logo {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
}

/* inicio frase */

.cnt-frase {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cnt-frase-interno {
    border-radius: 10px;
    max-width: 300px;
    padding: 1rem;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.1);
}

.frase-foto {
    width: 100%;
    max-width: 100px;
    margin: 1rem auto;
}

.cnt-frase-interno .frase-cita {
    display: block;
    text-align: center;
    font-style: italic;
}

.cnt-frase-interno .frase-autor {
    display: block;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* fin inicio frase */

/* inicio tips */

.contenedor-tips {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
    justify-content: space-evenly;
    gap: .5rem;
    width: 100%;
}

.cnt-tip-item {
    flex: 1 0 250px;
    width: 100%;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    height: inherit;
}

.cnt-tip-item .tip-texto {
    display: block;
    padding: 1rem;
    text-align: center;
}

.tip-img {
    margin-top: .1.5rem;
    width: 100%;
    text-align: center;
}

.tip-img figure {
    display: flex;
    justify-content: center;
}

/* fin tips*/

/* siwper personas */

.contenedor-interno-swiper .swiper-slide {
    height: initial;
    display: flex;
    align-items: stretch;
}

.equipo-swiper-cnt {
    background-color: var(--color-blanco);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    border-radius: 10px;
    padding: 1rem;
    height: -webkit-fill-available;
}

.equipo-cnt-foto {
    height: -webkit-fill-available;
    max-height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    padding: 0rem;
    margin: 1rem;
    margin: auto;
}

.equipo-cnt-foto figure {
    width: 100%;
    height: -webkit-fill-available;
}

.equipo-cnt-foto figure img {
    height: 100%;
    width: -webkit-fill-available;
    object-fit: cover;
}

.equipo-swiper-cnt .swiper-titulo {
    display: block;
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: bold;
    font-size: var(--texto-tam);
}

.equipo-swiper-cnt .swiper-subtitulo {
    display: block;
    font-weight: 500;
}

.equipo-swiper-cnt .swiper-texto {
    font-size: medium;
    font-weight: 300;
    display: block;
    padding-top: .2rem;
}

/* fin siwper personas */

/* Animaciones */

#equipo_container_secundario .cnt-frase
{
    animation-name: show;
    view-timeline-name: --div;
    animation-timeline: --div;
    view-timeline-axis: block;
    animation-range: entry 25% cover 50%;
}

#equipo_container_secundario .cnt-tip-item
{
    animation-name: show;
    view-timeline-name: --div;
    animation-timeline: --div;
    view-timeline-axis: block;
    animation-range: entry 0% cover 50%;
}

/* FIN Animaciones */