/* brief.css */
.brief-header {
    text-align: center;
    margin-bottom: 30px;
}

.back-btn {
    display: inline-block;
    color: #ff7b00;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.brief-form {
    background: rgba(20, 20, 20, 0.9);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 0 auto 50px;
}

fieldset {
    border: none;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    margin-bottom: 10px;
}

legend {
    color: #ff7b00;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #ccc;
}

input, select, textarea {
    background: #000;
    border: 1px solid #444;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus {
    border-color: #00d9ff;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #ff7b00;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ff9d00;
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.4);
}

/* CLASE EXCLUSIVA PARA EL TEXTO BLANCO DEL AVISO DE PRIVACIDAD */
a.enlace-privacidad {
    color: #ffffff !important; /* Fuerza el color blanco sí o sí */
    text-decoration: none !important; /* Quita la línea de subrayado */
    font-size: 11pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px; /* Le da una separación limpia abajo del botón Enviar */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center; /* Lo manda al centro horizontal de la pantalla */
    align-items: center;
    width: 100%;
    margin-top: 25px; /* Separación limpia respecto al botón de Enviar Brief */
    padding-bottom: 20px;
}

/* EFECTO CUANDO EL MAESTRO JAVO O UN CLIENTE PASEN EL MOUSE */
a.enlace-privacidad:hover {
    color: var(--orange-neon, #ff6b00) !important; /* Cambia a tu naranja neón */
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

/* Responsivo para el grid de entradas */
@media (min-width: 600px) {
    .grid-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}