/* ===================================================
   FORA DO CICLO — CSS RESPONSIVO DA LANDING PAGE
   foradociclo.com.br
   =================================================== */

:root {
  --bg:           #0b1020;
  --bg-soft:      #111827;
  --bg-card:      rgba(17, 24, 45, 0.85);
  --line:         rgba(255, 255, 255, 0.08);
  --text:         #eef2ff;
  --muted:        #94a3b8;
  --primary:      #f59e0b;
  --primary-h:    #ffb938;
  --green:        #22c55e;
  --yellow:       #facc15;
  --orange:       #fb923c;
  --red:          #ef4444;
  --shadow-card:  0 24px 64px rgba(0, 0, 0, 0.40);
  --shadow-btn:   0 12px 28px rgba(245, 158, 11, 0.25);
  --radius-xl:    28px;
  --radius-lg:    22px;
  --radius-md:    16px;
  --radius-sm:    12px;
  --container:    1180px;
  --transition:   0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at top left,    rgba(245,158,11,.09) 0%, transparent 36%),
    radial-gradient(ellipse at bottom right, rgba(59,130,246,.07) 0%, transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

/* ---- LAYOUT ---- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section        { padding: 88px 0; }
.section-alt    { background: rgba(255,255,255,.025); }

/* ---- GLOWS ---- */
.bg-glow {
  position: fixed; z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}
.bg-glow-1 { width: 320px; height: 320px; top: 60px;  left: -80px;  background: #f59e0b; }
.bg-glow-2 { width: 280px; height: 280px; bottom: 80px; right: -60px; background: #3b82f6; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -.02em; }
.section-heading { max-width: 800px; margin-bottom: 40px; }
.section-heading h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-heading p  { color: var(--muted); font-size: 17px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-h));
  color: #0f172a;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(245,158,11,.35); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(245,158,11,.35);
}
.btn-outline:hover { border-color: var(--primary); }

.btn-dark {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-dark:hover { background: rgba(255,255,255,.10); }

.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn.full { width: 100%; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex; align-items: center;
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 700;
}
.badge-orange  { background: rgba(251,146,60,.16); color: #fbd38d; }
.badge-red     { background: rgba(239,68,68,.16);  color: #fca5a5; }
.badge-outline {
  background: transparent;
  border: 1px solid rgba(245,158,11,.35);
  color: #fde68a;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(11,16,32,.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
}
.brand-mark { color: var(--primary); font-size: 20px; }

.nav { display: flex; gap: 24px; flex-wrap: wrap; }
.nav a { color: var(--muted); font-size: 14px; transition: color var(--transition); }
.nav a:hover { color: var(--text); }

.header-actions { display: flex; gap: 12px; align-items: center; }

/* ===================================================
   HERO
   =================================================== */
.hero { padding: 96px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 22px;
}
.hero h1 .highlight { color: #fbbf24; }
.hero-text { color: var(--muted); font-size: 18px; margin-bottom: 30px; max-width: 680px; }
.hero-text strong { color: var(--text); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-support  { color: var(--muted); font-size: 14px; margin-bottom: 30px; max-width: 600px; }

.hero-highlights {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.highlight-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.highlight-card strong { display: block; margin-bottom: 6px; font-size: 15px; }
.highlight-card span   { display: block; color: var(--muted); font-size: 13px; }

/* Dashboard preview card */
.hero-panel { display: flex; justify-content: center; }
.dashboard-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.dashboard-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.mini-label { color: var(--muted); font-size: 12px; }
.dashboard-question { font-size: 18px; margin-bottom: 22px; font-weight: 600; line-height: 1.3; }
.metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.metric-card {
  border-radius: var(--radius-sm);
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.metric-label { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.metric-value { display: block; font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.metric-meta  { font-size: 12px; font-weight: 700; }
.metric-meta.warning { color: #fcd34d; }
.metric-meta.success { color: #86efac; }
.dashboard-alert {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 18px; padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.18);
}
.alert-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  margin-top: 7px; flex-shrink: 0;
}
.dashboard-alert p { font-size: 14px; color: #fca5a5; }

/* ===================================================
   COMO FUNCIONA
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.step-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-number {
  display: inline-block; margin-bottom: 14px;
  color: #fbbf24; font-size: 13px; font-weight: 800;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ===================================================
   PARA QUEM É
   =================================================== */
.audience-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.audience-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform var(--transition);
}
.audience-card:hover { transform: translateY(-4px); }
.audience-icon { font-size: 32px; margin-bottom: 16px; }
.audience-card h3 { font-size: 19px; margin-bottom: 10px; }
.audience-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ===================================================
   QUEM SOU
   =================================================== */
.about-grid {
  display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: start;
}
.about-left h2 { font-size: clamp(26px, 3.5vw, 40px); margin-top: 8px; }
.about-highlight {
  font-size: 24px; font-weight: 500; line-height: 1.45;
  color: #fde68a; margin-bottom: 24px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-content strong { color: var(--text); }
.about-signature {
  display: flex; flex-direction: column; gap: 4px;
  margin: 24px 0 16px;
}
.about-signature strong { font-size: 18px; color: var(--text); }
.about-signature span   { color: var(--muted); font-size: 14px; }
.text-link { color: #fbbf24; font-weight: 600; font-size: 15px; transition: opacity var(--transition); }
.text-link:hover { opacity: .8; }

/* ===================================================
   PLANOS
   =================================================== */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.pricing-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(245,158,11,.4);
  box-shadow: 0 0 0 1px rgba(245,158,11,.15), var(--shadow-card);
}
.featured-badge {
  position: absolute; top: -14px; right: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-h));
  color: #0f172a; font-size: 12px; font-weight: 800;
  padding: 6px 16px; border-radius: 999px;
}
.pricing-tag {
  display: inline-flex; margin-bottom: 16px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted); font-size: 12px; font-weight: 700;
}
.pricing-tag-gold {
  background: rgba(245,158,11,.15);
  color: #fde68a;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 20px; }
.price-block     { margin-bottom: 6px; }
.price-main      { font-size: 44px; font-weight: 800; line-height: 1; }
.price-sub       { color: var(--muted); font-size: 14px; margin-top: 4px; }
.installments    { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.installments strong { color: #fbbf24; }
.pricing-description { color: var(--muted); margin-bottom: 22px; font-size: 15px; }

.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  position: relative; padding-left: 22px;
  margin-bottom: 10px; color: var(--text); font-size: 15px;
}
.feature-list li::before {
  content: "●"; position: absolute; left: 0;
  color: var(--primary); font-size: 10px; top: 5px;
}

/* ===================================================
   ACESSO / LOGIN
   =================================================== */
.access-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.access-copy h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.access-copy p  { color: var(--muted); margin-bottom: 22px; }
.access-note {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px; border-radius: var(--radius-md);
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.16);
}
.access-note strong { color: #fde68a; font-size: 14px; }
.access-note span   { color: var(--muted); font-size: 14px; }

.login-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.login-top { margin-bottom: 20px; }
.login-top h3 { font-size: 22px; margin-top: 10px; }

.login-form { display: grid; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input {
  height: 52px; padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text); font-size: 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder { color: var(--muted); }
.form-group input:focus {
  border-color: rgba(245,158,11,.5);
  box-shadow: 0 0 0 4px rgba(245,158,11,.09);
}
.login-feedback {
  min-height: 20px; font-size: 14px;
  color: #fca5a5;
}
.login-feedback.success { color: #86efac; }

/* ===================================================
   CONTATO / CTA FINAL
   =================================================== */
.contact-box {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.contact-copy h2 { font-size: clamp(20px, 2.8vw, 32px); margin-bottom: 12px; }
.contact-copy p  { color: var(--muted); }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  margin-bottom: 28px;
}
.footer-brand strong { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.footer-brand p      { color: var(--muted); font-size: 14px; margin-top: 8px; max-width: 520px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ===================================================
   MODAL
   =================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,8,18,.75);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 50;
}
.modal-backdrop.show { display: flex; }
.modal-card {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  padding: 30px;
  position: relative;
  animation: modal-in .22s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted); font-size: 22px; line-height: 1;
  cursor: pointer; transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.10); color: var(--text); }
.modal-card h3   { font-size: 22px; margin: 10px 0 8px; }
.modal-text      { color: var(--muted); font-size: 14px; margin-bottom: 22px; }

/* ===================================================
   RESPONSIVE — TABLET (≤ 1080px)
   =================================================== */
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .access-grid,
  .pricing-grid,
  .steps-grid,
  .audience-grid { grid-template-columns: 1fr; }

  .hero-highlights { grid-template-columns: 1fr; }

  .contact-box { flex-direction: column; align-items: flex-start; }

  .dashboard-card { max-width: 680px; }

  .desktop-nav { display: none; }

  .hero { padding: 60px 0 48px; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 640px)
   =================================================== */
@media (max-width: 640px) {
  :root { --container: 100%; }

  .container { width: calc(100% - 32px); }

  .section { padding: 60px 0; }

  .site-header { position: sticky; top: 0; }
  .header-inner { min-height: 64px; }
  .header-actions .btn-outline { display: none; }

  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 32px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .metric-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metric-value { font-size: 22px; }

  .steps-grid,
  .audience-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px; }

  .contact-box  { padding: 24px; }
  .contact-actions .btn { width: 100%; }

  .login-card { padding: 22px; }

  .footer-inner { flex-direction: column; }

  .about-highlight { font-size: 19px; }
}
