/* Formulários Contato/Erro - CSS Mínimo */
.cont-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cont-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cont-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cont-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cont-field label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.cont-field label small {
    font-weight: 400;
    color: #666;
    font-size: 0.8rem;
}

.cont-required {
    color: #dc3545;
}

.cont-field input[type="text"],
.cont-field input[type="email"],
.cont-field input[type="url"],
.cont-field select,
.cont-field textarea {
    padding: 0.65rem 0.85rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cont-field input:focus,
.cont-field select:focus,
.cont-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.cont-submit {
    margin-top: 0.5rem;
}

.cont-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.cont-btn:hover {
    background: #1d4ed8;
}

.cont-btn:disabled {
    background: #93c5fd;
    cursor: not-allowed;
}

.cont-message {
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.cont-message.cont-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.cont-message.cont-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Honeypot - oculto */
.cont-form input[name="cont_website"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Admin badges */
.cont-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cont-badge-contato {
    background: #dbeafe;
    color: #1e40af;
}

.cont-badge-erro {
    background: #fee2e2;
    color: #991b1b;
}
