/* ── SHARED STYLES — OhMyBox site ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background: #fff; color: #1A1A1A; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

:root {
  --red:      #FF2B56;
  --red-dark: #D42348;
  --teal:     #9CD8DA;
  --teal-dark:#2a9da0;
  --teal-bg:  #addfe1;
  --dark:     #1A1A1A;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #BBBBBB;
  --gray-100: #EFEFEF;
  --gray-50:  #FAFAFA;
  --white:    #FFFFFF;
}

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.07); transition: box-shadow .2s ease; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-login { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--gray-700); padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--gray-100); transition: border-color .15s, color .15s; white-space: nowrap; }
.btn-login:hover { border-color: var(--red); color: var(--red); }
.btn-assinar { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: #fff; background: var(--red); padding: 9px 20px; border-radius: 8px; transition: background .15s; white-space: nowrap; }
.btn-assinar:hover { background: var(--red-dark); }

/* PAGE WRAPPER */
.page-body { margin-top: 68px; }

/* INPUTS */
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; font-weight: 600; color: var(--gray-500); letter-spacing: .02em; }
.field input, .field select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-100); border-radius: 9px; font-size: 14px; font-family: 'Roboto', sans-serif; color: var(--dark); background: #fff; outline: none; transition: border-color .15s; }
.field input:focus, .field select:focus { border-color: var(--red); }
.field input.error { border-color: #f87171; }
.field .hint { font-size: 11px; color: var(--gray-300); }

/* CARDS */
.card { background: #fff; border: 1.5px solid var(--gray-100); border-radius: 16px; padding: 24px; }
.card-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

/* BTN */
.btn-primary { display: block; width: 100%; text-align: center; background: var(--red); color: #fff; font-size: 15px; font-weight: 700; padding: 14px; border-radius: 10px; border: none; cursor: pointer; font-family: 'Roboto', sans-serif; transition: background .15s; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { display: block; width: 100%; text-align: center; background: transparent; color: var(--red); font-size: 14px; font-weight: 700; padding: 12px; border-radius: 10px; border: 1.5px solid var(--red); cursor: pointer; font-family: 'Roboto', sans-serif; transition: background .15s, color .15s; }
.btn-secondary:hover { background: var(--red); color: #fff; }

/* FOOTER */
.site-footer { background: var(--teal-bg); padding: 40px 32px 24px; }
.site-footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer-links a { font-size: 12px; color: rgba(0,80,82,0.6); transition: color .15s; }
.site-footer-links a:hover { color: #005052; }
.site-footer p { font-size: 12px; color: rgba(0,80,82,0.5); }

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .btn-login { display: none; }
}
