/* ── Contato Page — Metelogo ─────────────────────────────────────────────── */

.contato-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.contato-hero {
    text-align: center;
    padding: 30px 0 20px;
}
.contato-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.contato-hero p {
    color: #9a93ab;
    font-size: 15px;
    margin: 0;
}

/* ── Grid ────────────────────────────────────────────────────────────────── */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 10px;
}

/* ── Form ────────────────────────────────────────────────────────────────── */
.contato-form-section {
    background: #1e1a26;
    border-radius: 8px;
    padding: 28px;
    border: 1px solid #282232;
}
.contato-form-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #9a93ab;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: #15111d;
    border: 1px solid #282232;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23a0a5b5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    background: rgba(168, 85, 247,0.08);
    border: 1px solid rgba(168, 85, 247,0.2);
    border-radius: 6px;
    padding: 10px 14px;
    color: #d8b4fe;
    font-size: 13px;
    margin-bottom: 14px;
}
.form-success {
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 6px;
    padding: 10px 14px;
    color: #7be8a0;
    font-size: 13px;
    margin-bottom: 14px;
}

.btn-contato-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: #a855f7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.btn-contato-submit:hover {
    background: #7e22ce;
}
.btn-contato-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Info Sidebar ────────────────────────────────────────────────────────── */
.contato-info-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contato-info-card {
    background: #1e1a26;
    border: 1px solid #282232;
    border-radius: 8px;
    padding: 18px;
}
.contato-info-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}
.contato-info-card p {
    font-size: 13px;
    color: #9a93ab;
    margin: 0;
    line-height: 1.5;
}
.contato-info-card a {
    color: #a855f7;
    text-decoration: none;
}
.contato-info-card a:hover {
    text-decoration: underline;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contato-form-section {
        padding: 20px 16px;
    }
    .contato-hero {
        padding: 20px 0 10px;
    }
    .contato-hero h1 {
        font-size: 24px;
    }
}
