/* Sección "Quiénes Somos" */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #F9F9F9;
}

.nosotros {
    padding: 2rem;
    text-align: center;
    margin-top: 50px;
}

.nosotros h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.nosotros-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.nosotros-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    text-align: center;
}

.nosotros-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #00b4d8;
}

.nosotros-item h2 {
    font-size: 1.2rem;
    color: #0077b6;
    margin: 0.5rem 0;
}

.nosotros-item p {
    font-size: 0.9rem;
    color: #555;
}

.pay-button{
    color: #F9F9F9;
}

#converter-form input,
#converter-form select,
#converter-form button {
    padding: 8px; /* Reduce el padding */
    font-size: 0.8rem; /* Reduce el tamaño de la fuente */
    width: 90% ;
    box-sizing: border-box;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nosotros-container {
        flex-direction: row;
    }
    .pay-relleno{
        margin-left: 35%;
    }
    
}