/* ============================================================
   base.css — Reset e estilos globais
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-base); cursor: pointer; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Seções ── */
section { padding: 80px 0; }

/* ── Helpers de texto ── */
.text-center { text-align: center; }
.text-center .sec-text { margin: 0 auto; }

/* ── Section badge ── */
.sec-badge {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-badge.inv { background: rgba(247,148,29,0.2); }

/* ── Section title ── */
.sec-title {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 14px;
}
.sec-title span  { color: var(--primary); }
.sec-title.wh    { color: var(--white); }

/* ── Section text ── */
.sec-text {
  color: var(--gray);
  line-height: 1.85;
  max-width: 600px;
  font-size: 14px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: var(--tr);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(247,148,29,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  transition: var(--tr);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
}

/* ── Floating WhatsApp ── */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 999;
}
.float-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--tr);
}
.float-wa a:hover { transform: scale(1.12); }
.float-wa img { width: 36px; }
