@import url(./style.css);

main section {
    width: 100% !important;
    margin: 0;
    padding: 50px 0; 
    border: none;
    text-align: center; 
}

main section h1 {
    color: var(--marron) !important;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

main section p {
    color: var(--verde) !important;
    margin-bottom: 40px;
    font-weight: bold;
}

#contenedor-equipo {
    display: flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: wrap; 
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.Tarjeta {
    width: 30%;
    min-width: 250px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.Tarjeta img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.Tarjeta h3 {
    margin-top: 15px;
    color: var(--marron);
    font-size: 1.2rem;
}

.Tarjeta .puesto {
    color: var(--verde);
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: normal; 
}