/* ============================================================
   Eggies — Shared Styles v2 · Fit & Wellness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-serif); color: var(--egg-brown); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { text-decoration: none; color: inherit; }

.wrap        { width: min(1200px, 92vw); margin: 0 auto; }
.wrap-narrow { width: min(800px,  92vw); margin: 0 auto; }
.wrap-wide   { width: min(1440px, 96vw); margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-serif); font-weight: 700; font-size: 15px;
  transition: background 150ms, color 150ms, transform 150ms, box-shadow 150ms;
  cursor: pointer; border: 0; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary   { background: var(--egg-terracotta); color: #fff; }
.btn-primary:hover  { background: var(--egg-brown); }
.btn-secondary { background: var(--egg-yellow); color: var(--egg-brown); }
.btn-secondary:hover { background: color-mix(in oklab, var(--egg-yellow), var(--egg-brown) 10%); }
.btn-pink      { background: var(--egg-pink); color: var(--egg-brown); font-family: var(--font-accent); font-style: italic; }
.btn-pink:hover { background: color-mix(in oklab, var(--egg-pink), var(--egg-brown) 8%); }
.btn-ghost     { background: transparent; color: var(--egg-brown); border: 1.5px solid var(--egg-brown); }
.btn-ghost:hover { background: var(--egg-brown); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }
.btn-white     { background: #fff; color: var(--egg-brown); }
.btn-white:hover { background: var(--egg-cream); }
.btn-lg  { padding: 18px 36px; font-size: 17px; }
.btn-sm  { padding: 10px 20px; font-size: 13px; }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-accent); font-weight: 700; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--egg-terracotta);
  display: block; margin-bottom: 10px;
}
.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  background: var(--egg-yellow); color: var(--egg-brown); margin-bottom: 16px;
}

/* ---- Section head ---- */
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin-left: auto; margin-right: auto; }
.sec-head h2 {
  font-family: var(--font-serif); font-weight: 700; font-size: 40px;
  line-height: 1.12; color: var(--egg-brown); margin: 8px 0 14px;
}
.sec-head p {
  font-size: 17px; line-height: 1.72; color: var(--egg-brown-soft);
  max-width: 580px; margin: 0; text-wrap: pretty;
}

/* ---- Input ---- */
.input {
  font-family: var(--font-serif); font-size: 15px; color: var(--egg-brown);
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 14px 18px; outline: none; width: 100%;
  transition: border-color 140ms, box-shadow 140ms;
}
.input::placeholder { color: rgba(92,64,60,0.38); }
.input:focus { border-color: var(--egg-yellow); box-shadow: 0 0 0 3px rgba(255,223,146,0.4); }
textarea.input { resize: vertical; min-height: 120px; }
select.input {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A56C48' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}

/* ---- Form label ---- */
.form-label {
  font-family: var(--font-accent); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--egg-terracotta);
  display: block; margin-bottom: 6px;
}

/* ---- Photo placeholder ---- */
.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; font-family: var(--font-accent); font-style: italic; font-size: 12px;
  color: rgba(92,64,60,0.4);
  background: var(--egg-cream);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(92,64,60,0.035) 8px, rgba(92,64,60,0.035) 9px);
  border-radius: 15px;
}
.ph i { font-size: 26px; opacity: 0.4; }

/* ---- Seal / badge chip ---- */
.seal {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-accent); font-weight: 700; font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.seal--yellow  { background: var(--egg-yellow);  color: var(--egg-brown); }
.seal--pink    { background: var(--egg-pink);    color: var(--egg-brown); }
.seal--brown   { background: var(--egg-brown);   color: #fff; }
.seal--terra   { background: var(--egg-terracotta); color: #fff; }
.seal--green   { background: #d6eed6; color: #2a6941; }
.seal--cream   { background: var(--egg-cream); color: var(--egg-brown); border: 1px solid var(--border-soft); }

/* ============================
   NAVBAR — sempre sólido marrom
   ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--egg-brown);
  box-shadow: 0 2px 16px rgba(92,64,60,0.28);
}
.nav-inner {
  width: min(1200px,92vw); margin: 0 auto;
  display: flex; align-items: center; height: 80px; gap: 0;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 40px; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; }

/* Links */
.nav-links { display: flex; align-items: stretch; gap: 0; flex: 1; }
.nav-links a {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  padding: 0 12px;
  display: flex; align-items: center;
  position: relative;
  transition: color 140ms;
  white-space: nowrap;
}
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a.active {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
/* marcação: linha amarela embaixo do link ativo */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 3px;
  background: var(--egg-yellow);
  border-radius: 2px 2px 0 0;
}

/* CTA Franqueado */
.nav-actions { margin-left: auto; display: flex; align-items: center; flex-shrink: 0; }
.nav-cta-franq {
  background: var(--egg-pink);
  color: var(--egg-brown);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: background 200ms;
}
.nav-cta-franq:hover { background: var(--egg-yellow); }

/* Hamburger */
.nav-ham { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; font-size: 21px; color: rgba(255,255,255,0.85); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--egg-brown);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0 18px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color 140ms;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--egg-yellow); }
.nav-mobile .nav-mob-cta { margin: 12px 24px 0; display: flex; }

@media (max-width: 940px) {
  .nav-links, .nav-actions { display: none; }
  .nav-ham { display: flex; }
}

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--egg-brown); color: #fff; padding: 64px 0 0; }
.footer-top {
  width: min(1200px,92vw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 2.2fr; gap: 56px; padding-bottom: 52px;
}
.footer-brand img  { height: 44px; margin-bottom: 16px; }
.footer-brand p    { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,0.58); max-width: 270px; margin: 0 0 20px; }
.footer-social     { display: flex; gap: 10px; }
.footer-social a   {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background 140ms, color 140ms;
}
.footer-social a:hover { background: var(--egg-yellow); color: var(--egg-brown); }
.footer-cols       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-col h5     {
  font-family: var(--font-accent); font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--egg-yellow); margin: 0 0 14px;
}
.footer-col a      { display: block; color: rgba(255,255,255,0.62); font-size: 13.5px; margin-bottom: 9px; transition: color 140ms; }
.footer-col a:hover { color: var(--egg-yellow); }
.footer-bottom {
  width: min(1200px,92vw); margin: 0 auto;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 140ms; }
.footer-bottom a:hover { color: var(--egg-yellow); }

@media (max-width: 800px) {
  .footer-top   { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols  { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- Motion ---- */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: 0ms !important; } }
