/* ============================================================
   PÁGINA DE CONTACTOS
   ============================================================ */
.contact { padding-top: var(--header-h); }

/* Cabeçalho */
.contact__head {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse 55% 100% at 78% 0%, rgba(224,86,26,.12), transparent 62%),
        var(--bg-2);
}
.contact__title {
    font-size: clamp(34px, 5.5vw, 60px);
    margin: 16px 0 18px;
}
.contact__lead {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-soft);
    max-width: 560px;
}

/* Grelha principal */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    padding-top: 72px;
    padding-bottom: 80px;
    align-items: start;
}

/* ── Coluna info ────────────────────────────────────────── */
.contact__phone-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: linear-gradient(135deg, rgba(224,86,26,.12), rgba(201,146,42,.06));
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    transition: transform var(--tr), box-shadow var(--tr);
    margin-bottom: 32px;
}
.contact__phone-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(224,86,26,.2);
}
.contact__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--ember), var(--gold));
    border-radius: 12px;
    color: #120d08;
    flex-shrink: 0;
}
.contact__phone-label {
    display: block;
    font-family: var(--font-util);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.contact__phone-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}

.contact__list {
    border-top: 1px solid var(--border);
    margin-bottom: 32px;
}
.contact__list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}
.contact__list-label {
    font-family: var(--font-util);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact__list a { color: var(--text-soft); transition: color var(--tr); }
.contact__list a:hover { color: var(--gold-lt); }
.contact__list strong { color: var(--text); font-weight: 600; }

.contact__delivery { margin-bottom: 28px; }
.contact__delivery-label {
    display: block;
    font-family: var(--font-util);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.contact__delivery .delivery-logos { justify-content: flex-start; }
.contact__delivery .delivery-logo { height: 42px; padding: 0 18px; }

.contact__social { display: flex; gap: 10px; }
.contact__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    transition: all var(--tr);
}
.contact__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #120d08;
    transform: translateY(-2px);
}

/* ── Formulário ─────────────────────────────────────────── */
.contact__form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.contact__form-title {
    font-size: 26px;
    margin-bottom: 28px;
}
.contact__field { margin-bottom: 20px; }
.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact__field label {
    display: block;
    font-family: var(--font-util);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.contact__field label span {
    color: var(--muted-dk);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}
.contact__field input,
.contact__field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--tr), background var(--tr);
}
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: var(--muted-dk); }
.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-2);
}
.contact__field textarea { resize: vertical; min-height: 120px; }

.contact__submit { width: 100%; justify-content: center; margin-top: 8px; }

.contact__privacy {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
}
.contact__privacy a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot escondido */
.tdg-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Alertas */
.contact__alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}
.contact__alert--ok {
    background: rgba(6,193,103,.1);
    border: 1px solid rgba(6,193,103,.3);
    color: #7be0a8;
}
.contact__alert--erro {
    background: rgba(224,86,26,.1);
    border: 1px solid rgba(224,86,26,.3);
    color: #f4a072;
}
.contact__alert strong { display: block; margin-bottom: 2px; }

/* ── Mapa grande ────────────────────────────────────────── */
.contact__map-full {
    position: relative;
    height: 460px;
    border-top: 1px solid var(--border);
}
.contact__map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.3) invert(.9) hue-rotate(180deg) brightness(.9) contrast(.9);
}
.contact__map-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-family: var(--font-util);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    transition: all var(--tr);
}
.contact__map-btn:hover {
    background: var(--gold);
    color: #120d08;
    border-color: var(--gold);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .contact__grid { grid-template-columns: 1fr; gap: 44px; }
    .contact__form-wrap { padding: 28px; }
}
@media (max-width: 520px) {
    .contact__row { grid-template-columns: 1fr; }
    .contact__list li { grid-template-columns: 1fr; gap: 4px; }
    .contact__map-full { height: 340px; }
    .contact__phone-number { font-size: 24px; }
}
