.contacto {
    background-color: rgb(54, 51, 51);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-image: url(../../../assets/images/paisaje-scaled.jpg);
    background-size: cover;
    background-blend-mode: multiply;
    background-position: center center;
    padding: 2rem;
}

.contacto__titulo {
    margin-top: 1.25rem;
    font-size: 3rem;
    color: white;
}

.contacto__parrafo {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

form {
    text-align: start;
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: bold;
    width: 100%;
    max-width: 25rem; 
}

form input {
    height: 2.5rem; 
    width: 100%;
    border: none;
    border-radius: 0.3125rem; 
    margin-top: 0.3125rem; 
    margin-bottom: 0.625rem;
    padding: 0.5rem; 
}

textarea {
    resize: none;
    margin-bottom: 0.9375rem; 
    border-radius: 0.3125rem;
    padding: 0.5rem; 
}

.btn-contacto {
    background-color: #6AB165;
    width: 7.5rem;
    height: 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.3125rem;
    border: none;
    margin: 0 auto 1.875rem;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.btn-contacto:hover {
    background-color: #57bb4f;
    transform: scale(1.05);
}
