/* =========================================================
   Locaí Estética — Design System
   Cores extraídas do site atual (Wix): navy #0D2D40 · teal #1AB1AB
   ========================================================= */

:root {
  --navy: #0d2d40;
  --navy-light: #14425c;
  --teal: #1ab1ab;
  --teal-dark: #148f8a;
  --teal-tint: #e7f7f6;
  --white: #ffffff;
  --text: #1c2b33;
  --text-muted: #5c6b73;
  --border: #e1e8eb;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(13, 45, 64, 0.1);
  --container: 1160px;
  --font: "Montserrat", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 700; margin: 0 0 16px; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.4vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 8px 20px rgba(26, 177, 171, 0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.logo span {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 10px;
}
.logo img { height: 46px; width: auto; }
.footer-logo { height: 38px; width: auto; margin-bottom: 14px; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 8px; }
.hero .subline { font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 24px; }
.hero p.lead { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual {
  background: none;
  border-radius: 24px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual .badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

/* Big Place accessory callout — photo + label, floating near the machine like the original site */
.bigplace-tag {
  position: absolute;
  top: 6px; right: -4px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bigplace-tag img {
  width: 168px;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.3));
}
.bigplace-tag span {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--teal-tint); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.75); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { margin-bottom: 10px; }

/* ---------- Equipment icon (fallback, CSS-drawn) ---------- */
.equip-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-size: 30px;
  margin-bottom: 18px;
}
.card-navy .equip-icon { background: rgba(26,177,171,0.16); color: var(--teal); }

/* ---------- Equipment product photos ---------- */
.equip-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  margin: 0 auto 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.equip-photo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.equip-card .equip-photo { max-width: 210px; margin-bottom: 16px; }

/* Hero product photo — no boxed panel, just the machine with a drop-shadow for impact */
.hero-visual .equip-photo {
  background: transparent;
  border: none;
  aspect-ratio: 3/4;
  max-width: none;
  width: 92%;
  margin: 0;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.28));
}
.hero-visual .equip-photo img { max-width: 100%; max-height: 100%; }

/* ---------- Cards: crio equipment (2-col) ---------- */
.crio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .crio-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card-navy {
  background: var(--navy-light);
  border-color: transparent;
  color: var(--white);
}
.card-navy h3 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,0.75); }
.card ul.spec-list { margin-top: 14px; }
.card ul.spec-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.card-navy ul.spec-list li { color: rgba(255,255,255,0.8); }
.card ul.spec-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- Feature grid (why rent) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  text-align: left;
}
.feature .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}

/* ---------- Equipment catalog grid ---------- */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 960px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .equip-grid { grid-template-columns: 1fr; } }
.equip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.equip-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  width: fit-content;
}
.equip-card .field { font-size: 14px; margin-bottom: 6px; }
.equip-card .field strong { color: var(--text); }
.equip-card { align-items: center; text-align: center; }
.equip-card .tag { align-self: center; }
.equip-card .field { align-self: stretch; text-align: left; }
.equip-card .btn { align-self: center; margin-top: auto; }

/* ---------- Lead form (CTA section) ---------- */
.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .lead-form-wrap { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.form-card h3 { color: var(--navy); }

.field-group { margin-bottom: 16px; }
.field-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.field-group input, .field-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
}
.field-group input:focus, .field-group select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 4px;
}
.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--teal);
}
.consent-row label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-row label a { color: var(--teal-dark); text-decoration: underline; }

/* ---------- Página de política de privacidade ---------- */
.policy-content { max-width: 760px; margin: 0 auto; padding: 56px 0 80px; }
.policy-content h1 { color: var(--navy); margin-bottom: 6px; }
.policy-content .updated { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }
.policy-content h2 { color: var(--navy); font-size: 19px; margin: 32px 0 10px; }
.policy-content p, .policy-content li { color: var(--text-muted); line-height: 1.7; }
.policy-content ul { margin: 0 0 16px; padding-left: 20px; }
.policy-content li { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 5px 0; color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.social-row a:hover { background: var(--teal); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 400;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ---------- Pop-up (lead magnet e-book) ---------- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(13, 45, 64, 0.65);
  display: none;
  align-items: center; justify-content: center;
  z-index: 900;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: popupIn 0.25s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
.popup-box .eyebrow { color: var(--teal-dark); }
.popup-box h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.popup-value { margin: 16px 0; }
.popup-value li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.popup-value li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--teal);
  font-weight: 800;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.small { font-size: 13px; color: var(--text-muted); }
