/* ============================== */
/* 🎨 ESTILOS GENERALES            */
/* ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* ============================== */
/* 📌 CONTENEDOR DE CONTACTO       */
/* ============================== */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.contact-form, .contact-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ✅ Estilos del formulario */
.contact-form {
    flex: 2;
}

.contact-form h2 {
    color: #0071e3;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form p {
    color: #555;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #0071e3;
    outline: none;
}

button {
    background-color: #0071e3;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #005bb5;
}

/* ✅ Información de contacto */
.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ============================== */
/* 📱 RESPONSIVE                  */
/* ============================== */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
