/* ==========================================================================
   Gerente 360 — Sales Page
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop)
   ========================================================================== */

:root {
  --navy: #14213D;
  --navy-2: #1C2C4F;
  --navy-3: #22335A;
  --orange: #DD6B3E;
  --orange-dark: #C25A31;
  --bg-light: #F5F6F8;
  --bg-card: #FFFFFF;
  --text-dark: #1B2333;
  --text-gray: #5C6472;
  --text-light-on-navy: #C7CEDD;
  --border-light: #E4E7ED;
  --green: #2E8B57;
  --amber: #C98A1F;
  --red: #C0392B;
  --radius: 14px;
  --max-width: 1120px;
  --shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-card);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--text-gray); }

a { color: inherit; }

img, svg { max-width: 100%; display: block; }

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

.section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .section { padding: 88px 0; }
}

.section-dark {
  background: var(--navy);
  color: var(--text-light-on-navy);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
  color: #FFFFFF;
}

.section-dark p { color: var(--text-light-on-navy); }

.section-light { background: var(--bg-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.eyebrow.center { justify-content: center; }

.cta-wrap.left { text-align: left; }
.cta-wrap.left .btn-sub { text-align: left; }

.section-head {
  max-width: 680px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 { font-size: 28px; }

@media (min-width: 768px) {
  .section-head h2 { font-size: 36px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}

@media (min-width: 540px) {
  .btn { width: auto; }
}

.btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(221, 107, 62, 0.35);
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #FFFFFF;
}

.btn-outline:hover { border-color: #FFFFFF; }

.btn-block { width: 100%; }

.btn-sub {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 10px;
}

.section-dark .btn-sub { color: var(--text-light-on-navy); }

.cta-wrap { text-align: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 33, 61, 0.96);
  backdrop-filter: blur(6px);
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.logo span { color: var(--orange); }

.site-header .btn {
  padding: 10px 18px;
  font-size: 14px;
  width: auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 56px;
}

.hero .container {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.hero-rings {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 {
  font-size: 30px;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 42px; }
}

.hero .lead {
  font-size: 17px;
  color: var(--text-light-on-navy);
  max-width: 560px;
}

.trust-bar {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  color: var(--text-light-on-navy);
  letter-spacing: 0.03em;
}

.trust-bar strong { color: #FFFFFF; }

/* ---------- Book mockup (CSS-only cover) ---------- */

.book-mockup {
  position: relative;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  border-radius: 18px;
  padding: 34px 28px;
  min-height: 380px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.book-mockup::before,
.book-mockup::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(221, 107, 62, 0.35);
}

.book-mockup::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
}

.book-mockup::after {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -140px;
  border-color: rgba(255,255,255,0.12);
}

.book-mockup .dot {
  position: absolute;
  top: -18px;
  right: 40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
}

.book-mockup .kicker {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 60px;
}

.book-mockup .title {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #FFFFFF;
  line-height: 1;
}

.book-mockup .title .num { color: var(--orange); font-size: 54px; display: block; }

.book-mockup .rule {
  position: relative;
  width: 46px;
  height: 3px;
  background: var(--orange);
  margin: 18px 0;
}

.book-mockup .subtitle {
  position: relative;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.book-mockup .desc {
  position: relative;
  color: var(--text-light-on-navy);
  font-size: 13px;
  max-width: 260px;
}

.book-mockup .tag {
  position: relative;
  margin-top: 22px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  border: 1px solid rgba(221,107,62,0.5);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ---------- Grids & Cards ---------- */

.grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}

.card p:last-child { margin-bottom: 0; }

.badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.badge-num.on-dark { background: rgba(255,255,255,0.08); color: var(--orange); }

/* Pain cards on dark section */
.pain-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
}

.pain-card p { color: #FFFFFF; font-size: 15.5px; margin: 0; }

.pain-card .mark { color: var(--orange); font-weight: 700; margin-right: 6px; }

/* Pillar cards */
.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.pillar-card h3 { font-size: 19px; margin-bottom: 8px; }

.pillar-card .pillar-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Quote block */
.quote-block {
  background: var(--navy);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 34px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

@media (min-width: 768px) {
  .quote-block { font-size: 24px; padding: 44px 48px; }
}

.quote-block::before {
  content: "\201C";
  color: var(--orange);
  font-size: 60px;
  font-family: Georgia, serif;
  position: absolute;
  top: 8px;
  left: 20px;
  opacity: 0.5;
}

/* For whom */
.audience-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.audience-card .head {
  background: var(--navy);
  color: #FFFFFF;
  padding: 18px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.audience-card .body {
  padding: 22px;
  background: var(--bg-card);
}

.audience-card ul {
  margin: 0;
  padding-left: 18px;
}

.audience-card li { margin-bottom: 10px; color: var(--text-gray); }

.audience-card li:last-child { margin-bottom: 0; }

/* Modules grid */
.module-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.module-card .badge-num { margin: 0 auto 14px; }

.module-card h3 { font-size: 17px; margin: 0; }

.module-card .module-label {
  display: block;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-strip {
  margin-top: 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px dashed var(--border-light);
}

.bonus-strip h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 14px;
}

.bonus-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .bonus-strip ul { grid-template-columns: repeat(2, 1fr); }
}

.bonus-strip li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-dark);
}

.bonus-strip li::before {
  content: "+";
  color: var(--orange);
  font-weight: 700;
}

/* ---------- Offer / Price ---------- */

.offer-box {
  background: var(--navy);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 36px 26px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(20,33,61,0.35);
}

@media (min-width: 768px) {
  .offer-box { padding: 48px 44px; }
}

.stack-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14.5px;
}

.stack-list li span:first-child { color: var(--text-light-on-navy); }
.stack-list li span:last-child { color: #FFFFFF; font-weight: 600; white-space: nowrap; }

.stack-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-weight: 600;
  color: var(--text-light-on-navy);
}

.stack-total .value { text-decoration: line-through; color: var(--text-light-on-navy); }

.price-today {
  text-align: center;
  margin: 22px 0 26px;
}

.price-today .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}

.price-today .amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #FFFFFF;
}

.price-note {
  font-size: 12.5px;
  color: var(--text-light-on-navy);
  text-align: center;
  margin-top: 4px;
}

/* ---------- Guarantee ---------- */

.guarantee {
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px 24px;
}

@media (min-width: 768px) {
  .guarantee { grid-template-columns: 120px 1fr; padding: 40px; }
}

.guarantee .seal {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto;
  border: 3px solid var(--orange);
}

.guarantee h3 { margin-bottom: 10px; }

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] summary .icon { transform: rotate(45deg); }

.faq-item p {
  margin: 14px 0 0;
  font-size: 15px;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
}

.final-cta h2 { color: #FFFFFF; max-width: 640px; margin-left: auto; margin-right: auto; }

.final-cta .lead {
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--text-light-on-navy);
  padding: 40px 0 24px;
  font-size: 13px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer .links a { text-decoration: none; color: var(--text-light-on-navy); }
.site-footer .links a:hover { color: #FFFFFF; }

.site-footer .disclaimer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(199,206,221,0.7);
}

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content ul, .legal-content ol {
  color: var(--text-gray);
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-content li { margin-bottom: 8px; }

.legal-content strong { color: var(--text-dark); }

.legal-updated {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

/* ---------- Copy toast ---------- */

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 100;
  user-select: none;
}
