#contacto-wj {
    max-width: 539px;
    width: 100%;
    margin: auto;
    padding: 30px 0;
    box-sizing: border-box;
}

#contacto-wj input {
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    width: 100%;
    height: 50px;
    padding: 6px 29px;
    margin-bottom: 20px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    box-sizing: border-box;
}

#contacto-wj input::placeholder {
    color: #999999;
    font-size: 13px;
}

#contacto-wj button {
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    display: inline-flex;
    height: 50px;
    padding: 6px 40px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 35%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contacto-wj button:hover:not(:disabled) {
    opacity: 0.9;
}

#contacto-wj button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.mensaje-exito {
    color: #4CAF50;
    font-size: 14px;
    display: none;
    margin-top: 10px;
    text-align: center;
}

.mensaje-exito.mostrar {
    display: block;
}

.error-message {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: none;
    text-align: left;
}

.error-message.mostrar {
    display: block;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}