/* =====================================================
   CONTATO PAGE – ESTILOS ESPECÍFICOS
   Extraído de contato.html
===================================================== */

body {
  background: #f0f2f7;
  color: var(--color-black);
}

/* Header light */
.main-header {
  background: rgba(240, 242, 247, 0.9);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-links a { color: rgba(29,29,31,0.7); }
.nav-links a:hover { color: var(--color-black); opacity: 1; }

/* ── HERO LAYOUT ── */
.contact-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  gap: 48px;
}

/* Ambient blobs */
.contact-page-blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.12;
  z-index: 0;
}
.contact-page-blob-1 {
  width: 500px; height: 500px;
  background: #0071E3;
  top: -10%; left: -10%;
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.contact-page-blob-2 {
  width: 350px; height: 350px;
  background: #7c6aff;
  bottom: 10%; right: -5%;
  animation: blobDrift 16s ease-in-out infinite alternate-reverse;
}
@keyframes blobDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(4%, 5%) scale(1.08); }
}

/* ── LEFT COLUMN ── */
.contact-pitch {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,113,227,0.08);
  border: 1px solid rgba(0,113,227,0.2);
  color: #0055b3;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: #4cd964;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,217,100,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(76,217,100,0); }
}
.contact-pitch h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-bottom: 20px;
}
.contact-pitch h1 .highlight {
  background: linear-gradient(90deg, #0071E3, #7c6aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-pitch .lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(29,29,31,0.55);
  margin-bottom: 48px;
  max-width: 420px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.process-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071E3, #7c6aff);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}
.process-step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(0,113,227,0.4), rgba(124,106,255,0.2));
  margin-top: 6px;
}
.process-step:last-child .process-step-line { display: none; }
.process-step-body { padding-top: 8px; }
.process-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}
.process-step-desc {
  font-size: 14px;
  color: rgba(29,29,31,0.55);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 16px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,113,227,0.13);
  border-color: rgba(0,113,227,0.25);
}
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star-row svg {
  fill: #f59e0b;
  stroke: none;
}
.testimonial-card .quote-mark {
  font-size: 40px;
  color: rgba(0,113,227,0.35);
  line-height: 1;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(29,29,31,0.65);
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071E3, #7c6aff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.testimonial-avatar.green { background: linear-gradient(135deg, #25D366, #0aac4b); }
.testimonial-info strong {
  display: block; font-size: 13px; color: var(--color-black); font-weight: 600;
}
.testimonial-info span {
  font-size: 11px; color: rgba(29,29,31,0.4);
}

/* ── RIGHT COLUMN ── */
.contact-form-col {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0,30,100,0.12), 0 4px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
.contact-form-card:focus-within {
  box-shadow: 0 32px 80px rgba(0,30,100,0.16), 0 0 0 1px rgba(0,113,227,0.2), 0 4px 16px rgba(0,0,0,0.05);
}

/* Stepper */
.form-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.form-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.form-step.active .form-step-num {
  background: #0071E3;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,113,227,0.35);
}
.form-step.done .form-step-num {
  background: #4cd964;
  color: #fff;
}
.form-step.inactive .form-step-num {
  background: rgba(0,0,0,0.07);
  color: rgba(29,29,31,0.4);
}
.form-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.form-step.active .form-step-label { color: #0071E3; }
.form-step.done .form-step-label { color: #3aac4b; }
.form-step.inactive .form-step-label { color: rgba(29,29,31,0.35); }
.form-step-connector {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.08);
  margin: 0 12px;
  position: relative;
}
.form-step-connector.done {
  background: #4cd964;
}

.form-header {
  margin-bottom: 28px;
}
.form-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.form-header p {
  font-size: 13px;
  color: rgba(29,29,31,0.42);
}

/* Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(29,29,31,0.5);
  margin-bottom: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--color-black);
  background: #f8f9fb;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  transition: all 0.2s ease;
  outline: none;
  caret-color: #0071E3;
}
.form-control::placeholder { color: rgba(29,29,31,0.25); }
.form-control:hover {
  background: #f2f4f8;
  border-color: rgba(0,0,0,0.15);
}
.form-control:focus {
  background: #fff;
  border-color: #0071E3;
  box-shadow: 0 0 0 4px rgba(0,113,227,0.1);
}
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(29,29,31,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select.form-control option { background: #fff; color: var(--color-black); }
textarea.form-control { resize: none; min-height: 106px; line-height: 1.6; }
.char-counter {
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  color: rgba(29,29,31,0.3);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

/* Step panels */
.form-step-panel { display: none; }
.form-step-panel.active { display: block; }

/* Next / Submit buttons */
.btn-contact {
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, #0071E3 0%, #0055b3 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
  margin-top: 8px;
}
.btn-contact::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.btn-contact:hover::before { left: 100%; }
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,113,227,0.4);
}
.btn-contact:active { transform: translateY(0); }
.btn-contact .arrow { transition: transform 0.2s ease; }
.btn-contact:hover .arrow { transform: translateX(4px); }

.btn-back {
  width: 100%;
  padding: 13px 28px;
  background: transparent;
  color: rgba(29,29,31,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}
.btn-back:hover {
  border-color: rgba(0,0,0,0.2);
  color: var(--color-black);
}

.form-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 18px;
  font-size: 11px;
  color: rgba(29,29,31,0.35);
  font-family: 'Inter', sans-serif;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.success-icon {
  width: 68px; height: 68px;
  background: rgba(76,217,100,0.12);
  border: 2px solid rgba(76,217,100,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.form-success h3 { font-size: 20px; color: var(--color-black); margin-bottom: 6px; }
.form-success p  { font-size: 13px; color: rgba(29,29,31,0.5); }

/* ── CHANNELS ── */
.channels-strip {
  background: linear-gradient(135deg, rgba(0,113,227,0.04), rgba(100,60,255,0.025), transparent);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 48px 0;
}
.channels-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.channel-item {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.channel-item:hover {
  border-color: rgba(0,113,227,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,113,227,0.12);
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon.whatsapp  { background: rgba(37,211,102,0.12); }
.channel-icon.email     { background: rgba(0,113,227,0.1); }
.channel-icon.linkedin  { background: rgba(0,119,181,0.1); }
.channel-info small {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(29,29,31,0.38); margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}
.channel-info strong {
  display: block; font-size: 14px; font-weight: 600; color: var(--color-black);
}
.channel-item:hover .channel-info strong { color: #0071E3; }

/* ── FOOTER ── */
.contact-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.contact-footer p {
  font-size: 12px;
  color: rgba(29,29,31,0.38);
  font-family: 'Inter', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .contact-pitch h1 { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .channels-inner { grid-template-columns: 1fr; gap: 12px; }
}
