/* css/modulos/contacto.css - Estilos vista Contacto + Captcha */

/* Contenedor principal */
.contacto-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contacto-header {
    text-align: center;
    margin-bottom: 25px;
}

.contacto-header h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #2d5a27;
    margin-bottom: 10px;
}

.contacto-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilos de Formulario (Reutilizando limpieza de Colabora) */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d5a27;
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    background: #fafafa;
    box-sizing: border-box;
    color: #333;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #2d5a27;
    background: #fff;
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- CAPTCHA MATEMÁTICO --- */
.captcha-container {
    background: #f1f8e9; /* Fondo verde muy claro */
    border: 1px dashed #a5d6a7;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-label {
    font-weight: 800;
    color: #2d5a27;
    font-size: 1.1rem;
    white-space: nowrap;
}

.captcha-input {
    width: 80px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #a5d6a7;
    border-radius: 10px;
    padding: 8px;
    font-size: 1.1rem;
}

/* Botones */
.btn-submit-contacto {
    background: #2d5a27;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 0 #1e3d1a;
    text-transform: uppercase;
    transition: transform 0.1s;
}

.btn-submit-contacto:active {
    transform: translateY(2px);
    box-shadow: none;
}

.btn-back-contacto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 20px;
    background: none;
    border: none;
    padding: 0;
}
.btn-back-contacto:hover { color: #2d5a27; }

/* Mensajes Feedback */
.msg-feedback {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.msg-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.msg-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.msg-close {
    background: transparent; border: none; font-size: 1.2rem;
    cursor: pointer; color: inherit; opacity: 0.6; padding: 0 0 0 15px;
}