
.contacto-section {
    background-color: #f3f3f3;
    text-align: center;
    padding: 40px 0;
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(to left, rgba(78, 55, 197, 0.7), rgba(50, 30, 150, 0.7)), url(../img/Fondo_1.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.contacto-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: hsl(0, 0%, 100%);
}

.contacto-form {
    display: inline-block;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.form-horizontal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f7f9fc;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 10px;
    gap: 10px;
}

.form-group span.icon {
    font-size: 1.2rem;
    color: #777;
}

.form-group input,
.form-group textarea {
    border: none;
    background: none;
    width: 100%;
    font-size: 1rem;
    outline: none;
}

.mensaje {
    width: 100%;
    display: flex;
    align-items: flex-start;
    min-height: 120px;
}

.mensaje textarea {
    resize: none;
    height: 80px;
}
 
.btn-container {
    display: flex;
    justify-content: flex-start;
}

.btn-enviar {
    background-color: #4E37C5;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: #22126e;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }