.formulario-presupuesto {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.formulario-presupuesto h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #333;
}

.formulario-presupuesto label {
    display: block;
    margin-top: 18px;
    font-weight: 600;
    color: #444;
}

.formulario-presupuesto input,
.formulario-presupuesto textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s ease;
}

.formulario-presupuesto input:focus,
.formulario-presupuesto textarea:focus {
    border-color: #d60000;
    box-shadow: 0 0 4px rgba(214,0,0,0.3);
    outline: none;
}

.formulario-presupuesto textarea {
    resize: vertical;
    min-height: 120px;
}

/* Input de archivo */
.formulario-presupuesto input[type="file"] {
    padding: 10px;
    background: #f7f7f7;
    border: 1px dashed #aaa;
    cursor: pointer;
}

/* ANTISPAM en línea y a la derecha */
.antispam-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.antispam-wrapper label {
    margin: 0;
    font-weight: 600;
}

.antispam-wrapper input {
    width: 50px;
    padding: 8px;
    text-align: center;
}

/* BOTÓN ROJO CORPORATIVO */
.btn-enviar {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #d60000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-enviar:hover {
    background: #a80000;
}
/* ANTISPAM pequeño y alineado a la derecha */
.antispam-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    gap: 8px;
}

.antispam-wrapper label {
    margin: 0;
}

.antispam-wrapper input {
    width: 45px;
    padding: 6px;
    text-align: center;
}
