/* ============================================================
   Furushima | Pagina de Contato
   Complementa furu-site.css (reusa furu-container, furu-card,
   furu-btn, tokens de cor). So classes novas aqui.
   ============================================================ */

/* Esconde o selo flutuante do reCAPTCHA (nao colidir com o botao
   flutuante de WhatsApp). A obrigacao legal fica no texto do form. */
.grecaptcha-badge { visibility: hidden; }

/* ---------- Botao SOS de emergencia (no topo, sozinho) ----------
   Precisa de especificidade alta: o "CSS Adicional" do Personalizar
   tem .furu-btn{color:#04121c!important} e carrega depois do nosso. */
.furu-sos-wrap { position: relative; z-index: 3; margin-top: -2.4rem; display: flex; justify-content: center; }
.furu-sos-wrap a.furu-btn.furu-btn--sos {
  display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap;
  background: linear-gradient(135deg, #FF2323 0%, #C40000 100%) !important;
  color: #fff !important; text-decoration: none !important;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .015em;
  padding: 1.05rem 2.3rem; border-radius: 16px;
  box-shadow: 0 12px 30px rgba(200, 0, 0, .48);
  animation: furu-sos-beat 1.8s ease-in-out infinite;
}
.furu-sos-wrap a.furu-btn.furu-btn--sos:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(200, 0, 0, .68) !important; }
.furu-sos-wrap a.furu-btn.furu-btn--sos svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
@keyframes furu-sos-beat {
  0%, 100% { box-shadow: 0 12px 30px rgba(200, 0, 0, .48); }
  50%      { box-shadow: 0 15px 46px rgba(255, 20, 20, .78); }
}
@media (max-width: 560px) {
  .furu-sos-wrap a.furu-btn.furu-btn--sos { white-space: normal; text-align: center; width: 100%; justify-content: center; padding: 1rem 1.2rem; }
}
@media (prefers-reduced-motion: reduce) { .furu-sos-wrap a.furu-btn.furu-btn--sos { animation: none; } }

/* ---------- Grid: formulario + canais ---------- */
.furu-contact-grid {
  display: grid; grid-template-columns: 1.4fr .95fr; gap: 1.6rem; align-items: start;
}
@media (max-width: 900px) { .furu-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Card do formulario ---------- */
.furu-formcard {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-2xl);
  padding: 2.2rem 2.1rem; box-shadow: var(--shadow);
}
@media (max-width: 520px) { .furu-formcard { padding: 1.6rem 1.3rem; } }
.furu-formcard__title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 0 0 .5rem; letter-spacing: -.01em; }
.furu-formcard__lead { color: var(--gray-500); font-size: .97rem; line-height: 1.6; margin: 0 0 1.5rem; }

.furu-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .furu-form__row { grid-template-columns: 1fr; } }
.furu-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.furu-field label { font-weight: 600; font-size: .82rem; color: var(--gray-700); letter-spacing: .01em; }
.furu-field .req { color: #EF4444; }
.furu-field input,
.furu-field select,
.furu-field textarea {
  width: 100%; box-sizing: border-box; font: inherit; font-size: .95rem; color: var(--gray-900);
  padding: .8rem .9rem; background: var(--gray-50);
  border: 1.5px solid var(--gray-200); border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.furu-field textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.furu-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 18px; padding-right: 2.6rem;
}
.furu-field input:focus,
.furu-field select:focus,
.furu-field textarea:focus {
  outline: none; background: #fff; border-color: var(--furushima-green);
  box-shadow: 0 0 0 3px rgba(70, 193, 170, .16);
}
.furu-field input::placeholder, .furu-field textarea::placeholder { color: var(--gray-400); }

/* honeypot: fora da tela, sem display:none (bots ignoram os visiveis) */
.furu-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.furu-form__submit { margin-top: .4rem; width: 100%; padding: 1rem 1.7rem; font-size: 1rem; }
/* Vence o .furu-btn{color:#04121c!important} do CSS Adicional (carrega depois). */
.furu-formcard .furu-form__submit { color: #fff !important; }
.furu-form__submit.is-loading { opacity: .7; cursor: progress; }
.furu-form__legal { margin: 1rem 0 0; font-size: .78rem; color: var(--gray-400); line-height: 1.5; }
.furu-form__legal a { color: var(--gray-500); }

/* Aviso de sucesso / erro */
.furu-formmsg {
  display: flex; gap: .75rem; align-items: flex-start;
  border-radius: 14px; padding: 1rem 1.1rem; margin-bottom: 1.4rem; font-size: .93rem; line-height: 1.5;
}
.furu-formmsg svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.furu-formmsg b { font-weight: 700; }
.furu-formmsg--ok  { background: #ECFDF5; border: 1px solid rgba(16, 185, 129, .3); color: #065F46; }
.furu-formmsg--ok svg  { stroke: #10B981; }
.furu-formmsg--err { background: #FEF2F2; border: 1px solid rgba(239, 68, 68, .3);  color: #991B1B; }
.furu-formmsg--err svg { stroke: #EF4444; }

/* ---------- Canais (WhatsApp / e-mail / redes) ---------- */
.furu-channels { display: flex; flex-direction: column; gap: 1.1rem; }
.furu-ch {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 1.35rem 1.4rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.furu-ch:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(70, 193, 170, .45); }
.furu-ch__ic {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.furu-ch__ic svg { width: 24px; height: 24px; }
.furu-ch__ic--wa   { background: linear-gradient(135deg, #25D366, #12B34F); }
.furu-ch__ic--wa svg   { fill: #fff; }
.furu-ch__ic--mail { background: var(--gradient-primary); }
.furu-ch__ic--mail svg { fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.furu-ch__ic--net  { background: linear-gradient(135deg, #156391, #07C0EA); }
.furu-ch__ic--net svg  { fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.furu-ch__bd { min-width: 0; }
.furu-ch__bd h4 { margin: 0 0 .25rem; font-size: 1.02rem; font-weight: 700; color: var(--gray-900); }
.furu-ch__bd p  { margin: 0 0 .5rem; color: var(--gray-500); font-size: .89rem; line-height: 1.5; }
.furu-ch__bd a  { color: var(--furushima-dark); font-weight: 600; font-size: .92rem; }
/* !important porque algo do tema sublinha links de conteudo por cima do nosso reset. */
.furu-channels .furu-ch__bd a { text-decoration: none !important; }
.furu-channels .furu-ch__bd a:hover { text-decoration: underline !important; }
.furu-ch__lines a { display: inline-block; }

/* Botoes das redes (logos de marca) */
.furu-soc-row { display: flex; gap: .65rem; margin-top: .3rem; }
.furu-soc {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.furu-soc svg { width: 22px; height: 22px; fill: #fff; }
.furu-soc:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 20px rgba(0, 0, 0, .22); }
.furu-soc--in { background: #0A66C2; }
.furu-soc--ig { background: radial-gradient(circle at 30% 107%, #FDF497 0%, #FD5949 45%, #D6249F 60%, #285AEB 90%); }
@media (prefers-reduced-motion: reduce) { .furu-ch:hover, .furu-soc:hover { transform: none; } }
