/* INTA Marketing Site — kit styles
   Loaded by ui_kits/website/index.html and component examples.
   All tokens come from colors_and_type.css. */

@import url("colors_and_type.css");

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

html, body {
  background: var(--ivory);
  color: var(--clay);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

.inta-w {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---- WhatsApp floating button ---- */
.inta-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px 13px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 80;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.inta-whatsapp-fab:hover {
  background: #1EBE5A;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
.inta-whatsapp-fab svg { width: 26px; height: 26px; flex-shrink: 0; }

/* ---- Header / nav ---- */
.inta-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  background: rgba(240, 234, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(212, 196, 168, 0.4);
}
.inta-nav__brand {
  display: flex; align-items: center; gap: 12px;
}
.inta-nav__brand img { height: 28px; width: auto; }
.inta-nav__brand .wm {
  font-weight: 700; letter-spacing: 0.20em;
  color: var(--forest); font-size: 13px;
  text-transform: uppercase;
}
.inta-nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--clay);
}
.inta-nav__links a:hover { color: var(--forest); }

/* ---- Buttons ---- */
.inta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 13px 22px; border-radius: 999px;
  transition: transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1), background 180ms ease, border-color 180ms ease;
}
.inta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.inta-btn:active { transform: translateY(0) scale(0.97); box-shadow: none; }
.inta-btn--primary { background: var(--forest); color: var(--ivory); }
.inta-btn--primary:hover { background: #3F5349; }
.inta-btn--secondary { border: 1.5px solid var(--clay); color: var(--clay); }
.inta-btn--secondary:hover { background: rgba(184,137,110,0.08); }
.inta-btn--ghost { color: var(--sage); }
.inta-btn--ghost:hover { background: rgba(143,168,160,0.10); }

/* ---- Section ---- */
.inta-sec {
  padding: 64px 0;
}
.inta-sec--tight { padding: 40px 0; }
.inta-sec--forest {
  background: var(--forest); color: var(--ivory);
}
.inta-sec__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--sand);
}

/* ---- Type ---- */
.inta-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--forest);
  text-wrap: pretty;
}
.inta-h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700; letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--clay);
}
.inta-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--clay);
  max-width: 60ch;
}

/* ---- Card ---- */
.inta-card {
  background: #F7F2E9;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(46,61,56,0.09);
  box-shadow: 0 4px 14px rgba(46,61,56,0.07);
}

/* ---- Ribbon rule ---- */
.inta-ribbon {
  width: 80px; height: 3px;
  background: var(--clay);
  border-radius: 999px;
}
