/* ==========================================================
   RandAL Brindes — contato.css
   ========================================================== */

.page-hero {
    padding: 140px 0 72px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contato-hero::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(255,107,0,.08);
    border-radius: 50%;
    filter: blur(120px);
    top: -200px; right: -100px;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span:last-child { color: var(--text); }

.page-hero .section-tag { margin-bottom: 16px; }

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.page-hero p {
    font-size: 17px;
    color: var(--text);
    max-width: 580px;
    line-height: 1.8;
}

/* ===========================
   LAYOUT
=========================== */
.contato-section { padding: 64px 0 80px; }

.contato-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* ===========================
   FORM CARD
=========================== */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-card > p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.required { color: var(--primary); }
.optional { color: var(--text-muted); font-weight: 400; }

.form-input,
.form-select,
.form-textarea {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 13px 16px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--primary); }

.form-input.error,
.form-select.error,
.form-textarea.error { border-color: #ef4444; }

.form-input::placeholder { color: var(--text-muted); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-select option { background: #1a1a20; }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-error {
    font-size: 12px;
    color: #ef4444;
    font-weight: 600;
    min-height: 16px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-check input[type="checkbox"] {
    appearance: none;
    width: 18px; height: 18px;
    background: var(--surface2);
    border: 1.5px solid rgba(28,25,23,.35);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.form-check input:checked { background: var(--primary); border-color: var(--primary); }
.form-check input:checked::after {
    content: "✓";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px; font-weight: 700; color: #fff;
}

.link-inline { color: var(--primary); text-decoration: underline; }

.btn-enviar-ct {
    margin-top: 24px;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    justify-content: center;
    width: 100%;
}

/* Sucesso */
.form-sucesso {
    text-align: center;
    padding: 40px 20px;
}

.sucesso-icon {
    width: 80px; height: 80px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.form-sucesso h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.form-sucesso p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   SIDEBAR INFO
=========================== */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 108px;
}

.contato-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contato-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contato-info-item:last-child { margin-bottom: 0; }

.contato-info-icon {
    width: 40px; height: 40px;
    background: rgba(255,107,0,.1);
    border: 1px solid rgba(255,107,0,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contato-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contato-info-item a,
.contato-info-item span {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.contato-info-item a:hover { color: var(--primary); }

/* WhatsApp card */
.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(37,211,102,.08);
    border: 1px solid rgba(37,211,102,.2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: all var(--transition);
    cursor: pointer;
}

.whatsapp-card:hover {
    background: rgba(37,211,102,.14);
    border-color: rgba(37,211,102,.4);
    transform: translateY(-3px);
}

.whatsapp-card-icon {
    width: 48px; height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.whatsapp-card-text { flex: 1; }

.whatsapp-card-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.whatsapp-card-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.whatsapp-card > svg { color: var(--text-muted); flex-shrink: 0; }

/* Redes sociais */
.contato-redes {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.contato-redes h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.redes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rede-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.rede-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,107,0,.05);
}

/* FAQ */
.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.faq-card h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.faq-list { display: flex; flex-direction: column; gap: 4px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-btn:hover { color: var(--primary); }

.faq-btn svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-btn[aria-expanded="true"] { color: var(--primary); }
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-resp {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-resp.open {
    max-height: 200px;
    padding-bottom: 14px;
}

/* ===========================
   HIDDEN
=========================== */
.hidden { display: none !important; }

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 1024px) {
    .contato-layout { grid-template-columns: 1fr; }
    .contato-info { position: static; }
    .redes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 36px; }
    .form-card { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}