/* ─── FALE CONOSCO PAGE ─── */

/* Hero */
.fc-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 40px 64px;
  text-align: center;
}
.fc-hero-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fc-hero-h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}
.fc-hero-sub {
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

/* Main layout */
.fc-main {
  background: var(--bg);
  padding: 64px 40px 96px;
}
.fc-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Form */
.fc-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.fc-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
}
.fc-form-sub {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 32px;
}
.fc-form { display: flex; flex-direction: column; gap: 20px; }
.fc-row { display: flex; gap: 16px; }
.fc-row-2 > .fc-field { flex: 1; }
.fc-field { display: flex; flex-direction: column; gap: 6px; }
.fc-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.fc-field input,
.fc-field select,
.fc-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}
.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,0,254,.08);
}
.fc-field input::placeholder,
.fc-field textarea::placeholder { color: #b0b7cc; }
.fc-field select { cursor: pointer; 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='%234e5573' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.fc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}
.fc-submit:hover { background: #222; }
.fc-submit:disabled { opacity: .6; cursor: not-allowed; }

.fc-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
}

/* Contact sidebar */
.fc-contacts { display: flex; flex-direction: column; gap: 20px; }

.fc-contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.fc-contact-block h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
}
.fc-contact-block p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 16px;
}

.fc-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 10px;
}
.fc-contact-item:last-child { margin-bottom: 0; }
.fc-contact-item:hover {
  border-color: rgba(0,0,254,.15);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateX(2px);
}
.fc-wa:hover { border-color: rgba(37,211,102,.3); }
.fc-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-contact-label { font-size: 11px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: .05em; }
.fc-contact-val { font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.fc-contact-hint { font-size: 11px; color: var(--text); margin-top: 1px; }
.fc-contact-arrow { color: var(--text); margin-left: auto; flex-shrink: 0; }

.fc-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  width: 100%;
  justify-content: center;
}
.fc-demo-btn:hover { background: #222; }

/* FAQ mini links */
.fc-faq-mini { display: flex; flex-direction: column; gap: 0; }
.fc-faq-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, gap .2s;
}
.fc-faq-link:last-child { border-bottom: none; }
.fc-faq-link:hover { color: var(--blue); gap: 12px; }
.fc-faq-link svg { color: var(--text); flex-shrink: 0; }
.fc-faq-link:hover svg { color: var(--blue); }

/* No-form layout */
.fc-main-noform {
  padding: 64px 40px 96px;
}
.fc-contacts-center {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
}
.fc-card-text { flex: 1; }
.fc-card-static {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.fc-card-static h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
}
.fc-contact-item.fc-card { margin-bottom: 0; }

/* Responsive */
@media (max-width: 900px) {
  .fc-main-inner { grid-template-columns: 1fr; }
  .fc-hero-h1 { font-size: 36px; }
  .fc-hero { padding: 48px 20px 40px; }
  .fc-main { padding: 40px 20px 64px; }
}
@media (max-width: 540px) {
  .fc-row-2 { flex-direction: column; }
  .fc-form-wrap { padding: 24px 20px; }
  .fc-hero-h1 { font-size: 28px; }
}
