/* ============================================
   CONTACTO EVH — DISEÑO PROFESIONAL
============================================ */

.section-contact-bg {
    background: #0c314f;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffd54f;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* CONTENEDOR PRINCIPAL */
.contact-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* INFORMACIÓN */
.contact-info {
    flex: 1;
    min-width: 280px;
    background: rgba(0,0,0,0.35);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.45;
}

/* FORMULARIO */
#form-contacto {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#form-contacto label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

#form-contacto input,
#form-contacto textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}

#form-contacto textarea {
    height: 140px;
    resize: vertical;
}

#form-contacto input:focus,
#form-contacto textarea:focus {
    border-color: #d4a017;
    box-shadow: 0 0 4px rgba(212,160,23,0.4);
    outline: none;
}

/* BOTÓN */
#form-contacto button.btn {
    background: #b30000;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.25s ease;
}

#form-contacto button.btn:hover {
    background: #8a0000;
}

/* MENSAJE */
#mensaje-estado {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px 0;
    background: #001f33;
    color: #fff;
    margin-top: 40px;
}

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

    #form-contacto,
    .contact-info {
        padding: 20px;
    }
}
/* Texto del input file */
input[type="file"] {
    color: #000 !important;
    background-color: #fff;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Texto del placeholder del textarea */
textarea::placeholder {
    color: #000 !important;
    opacity: 0.7;
}

/* Texto del input normal */
input::placeholder {
    color: #000 !important;
    opacity: 0.7;
}