/* ================================
   INÍCIO — Estilos
   ================================ */

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 40%, #fff 100%);
  padding: 60px 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 420px;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-title span { color: var(--teal); }
.hero-sub  { font-size: 16px; color: var(--text-muted); line-height: 1.6; max-width: 440px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-btns a { text-decoration: none; }

/* ── STAT CARDS ── */
.hero-visual { flex: 0 0 280px; display: flex; flex-direction: column; gap: 12px; }
.stat-card   { background: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: 0 4px 20px rgba(0,180,198,0.12); display: flex; align-items: center; gap: 14px; }
.stat-icon   { width: 44px; height: 44px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-num    { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal-dark); }
.stat-lbl    { font-size: 12px; color: var(--text-muted); }

/* ── POR QUE NÓS ── */
.why-section { background: #f9fefe; }
.why-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.why-card    { background: #fff; border-radius: 16px; padding: 24px 20px; border: 1px solid #d0f0f4; }
.why-icon    { font-size: 28px; margin-bottom: 12px; }
.why-name    { font-weight: 500; font-size: 15px; margin-bottom: 6px; }
.why-desc    { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-box label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.modal-box input,
.modal-box textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.modal-error {
  color: #d32f2f;
  font-size: 13px;
}

.modal-botoes {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.btn-confirmar {
  flex: 1;
  padding: 12px;
  background: #0d9488; /* teal, ajusta pra tua cor de marca */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-cancelar {
  flex: 1;
  padding: 12px;
  background: #eee;
  color: #333;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}