/* Estilos para el formulario de contacto */
.contacto-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contacto-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-row input:focus {
    outline: none;
    border-color: #007bff;
}

textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Mensajes de estado */
.mensaje-estado {
    display: none;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid;
    text-align: center;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contacto-section {
        padding: 40px 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
}