/*
Theme Name:  mimmu
Theme URI:   https://mimmu.com.br
Author:      mimmu Tecnologia Ltda.
Description: Tema oficial mimmu — Landing page + lista de espera.
Version:     1.0.0
License:     Proprietary
Text Domain: mimmu
*/

/* ============================================================
   RESET & ROOT
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --page-bg:       #faf7fb;
  --page-fade:     #f8f5fc;
  --ink:           #1a1820;
  --ink-soft:      #5c5668;
  --muted:         #8a8496;
  --border:        rgba(26, 24, 32, 0.09);
  --field-edge:    rgba(26, 24, 32, 0.09);
  --radius-pill:   22px;
  --radius-card:   20px;
  --radius-banner: 26px;
  --radius-field:  16px;
  --grad-btn:      linear-gradient(180deg, #1e1e25 0%, #4a3e38 100%);
  --shadow-btn:    0 14px 36px rgba(30,30,37,.42), 0 6px 16px rgba(0,0,0,.14);
  --font:          'Poppins', system-ui, -apple-system, sans-serif;
}

html, body { height: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--page-bg);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(255,210,235,.12) 0%, transparent 60%),
    radial-gradient(90% 60% at 100% 40%, rgba(220,210,255,.08) 0%, transparent 50%),
    radial-gradient(70% 50% at 0% 80%, rgba(255,245,200,.06) 0%, transparent 45%),
    linear-gradient(180deg, #fdf9fc 0%, var(--page-bg) 28%, var(--page-fade) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LOGO / HEADER COMPARTILHADO
   ============================================================ */
.page-header {
  width: 100%;
  padding: clamp(28px, 5vw, 48px) 24px clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.page-logo-link {
  display: block;
  width: min(240px, 60vw);
  line-height: 0;
}

.page-logo-link svg,
.page-logo-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   BOTÃO GRADIENTE
   ============================================================ */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--grad-btn);
  box-shadow: var(--shadow-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, filter .2s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(30,30,37,.48), 0 8px 20px rgba(0,0,0,.16);
}

.btn-gradient:active { transform: translateY(0); }
.btn-large { padding: 22px 100px; font-size: 19px; }

/* ============================================================
   FOOTER COMPARTILHADO
   ============================================================ */
.site-footer { width: 100%; margin-top: auto; }
.footer-visual { width: 100%; overflow: hidden; line-height: 0; }
.footer-banner { width: 100%; max-width: 960px; margin: 0 auto; height: auto; display: block; }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 36px);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(26,24,32,.06);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-back,
.footer-center-links a {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-center-links { display: flex; gap: 22px; align-items: center; }
.footer-end { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.social-link {
  color: var(--ink);
  display: flex;
  align-items: center;
  transition: opacity .15s;
}

.social-link:hover { opacity: .55; }
.footer-copy { font-family: inherit; font-size: 12px; font-weight: 500; color: var(--muted); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim    { animation: fadeUp .55s ease both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }

/* ============================================================
   PÁGINAS LEGAIS
   ============================================================ */
.legal-main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 40px) clamp(64px, 10vw, 96px);
  width: 100%;
}

.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.legal-main h1 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--ink);
}

.updated { font-size: 12px; color: var(--muted); margin-bottom: 40px; }

.intro-box {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  padding: 20px 24px;
  border-left: 3px solid rgba(196,181,253,.7);
  background: rgba(196,181,253,.08);
  border-radius: 0 var(--radius-field) var(--radius-field) 0;
  margin-bottom: 44px;
}

.legal-main h2 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 44px 0 14px;
}

.legal-main h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin: 22px 0 8px; }
.legal-main p  { font-size: 14px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 12px; }
.legal-main ul, .legal-main ol { padding-left: 22px; margin-bottom: 14px; }
.legal-main li { font-size: 14px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 6px; }
.legal-main a  { color: var(--ink); text-underline-offset: 3px; }
.legal-main strong { color: var(--ink); font-weight: 600; }

.legal-main table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0 24px; }
.legal-main th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(26,24,32,.04);
  font-weight: 600;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
}
.legal-main td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.7; }
.legal-main hr { border: none; border-top: 1px solid var(--border); margin: 44px 0; }

.highlight-box {
  background: rgba(110,231,183,.08);
  border: 1px solid rgba(110,231,183,.3);
  border-radius: var(--radius-field);
  padding: 18px 22px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.8;
}

.warning-box {
  background: rgba(252,165,165,0.15);
  border: 1px solid rgba(252,165,165,0.4);
  border-radius: var(--radius-field);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .legal-main table { display: block; overflow-x: auto; }
  .footer-banner { max-width: 240px; }
  .footer-bar { flex-direction: column; align-items: center; text-align: center; }
  .footer-end { justify-content: center; }
  .footer-center-links { justify-content: center; }
}

/* ============================================================
   reCAPTCHA badge oculto
   ============================================================ */
.grecaptcha-badge { visibility: hidden !important; }
