/* CONTACTO — Estilos específicos */

.contact-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}

.contact-container .subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffb400;
    outline: none;
}

.btn-submit {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

.btn-submit:hover {
    background: #e0a000;
}

/* Mensajes */
.msg-success {
    padding: 25px;
    background: #e8f5e9;
    border-radius: 10px;
    text-align: center;
    color: #2e7d32;
    font-size: 18px;
    font-weight: 600;
}

.msg-error {
    padding: 25px;
    background: #ffebee;
    border-radius: 10px;
    text-align: center;
    color: #c62828;
    font-size: 18px;
    font-weight: 600;
}

/* Honeypot oculto */
.hidden-field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
}