:root {
  --orange: #F94E03;
  --orange-light: #FF6B35;
  --orange-dark: #D63E00;
  --bg-light: #F5F0E8;
  --bg-light-2: #FFFDF9;
  --bg-dark: #111111;
  --bg-dark-2: #1A1A1A;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --muted-dark: rgba(255, 255, 255, 0.65);
  --muted-light: rgba(0, 0, 0, 0.62);
  --border-light: rgba(0, 0, 0, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --max-width-narrow: 820px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ========== TOP BAR ========== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
  z-index: 100;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 4px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 90;
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  height: 38px;
  width: auto;
}

.nav-cta {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 78, 3, 0.4);
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.container.narrow {
  max-width: var(--max-width-narrow);
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.section-light + .section-light {
  padding-top: 0;
}

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

.section-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--text-light);
}

/* Subtle grid bg */
.section-light::before,
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 78, 3, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 78, 3, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.section-dark::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

/* ========== GLOWS ========== */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 78, 3, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.glow-tr { top: -200px; right: -200px; }
.glow-bl { bottom: -200px; left: -200px; }
.glow-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
}

.section-dark .glow {
  background: radial-gradient(circle, rgba(249, 78, 3, 0.22) 0%, transparent 70%);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: inherit;
}

h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 28px;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 14px;
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
}

p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--muted-light);
  margin-bottom: 18px;
}

.section-dark p,
.section-orange p {
  color: var(--muted-dark);
}

.section-orange p {
  color: rgba(255, 255, 255, 0.92);
}

strong {
  color: inherit;
  font-weight: 700;
}

.section-light strong {
  color: var(--text-dark);
}

em {
  font-style: italic;
  color: var(--orange);
}

.section-orange em {
  color: var(--text-light);
}

/* Highlights */
.hl {
  color: var(--orange);
  font-weight: 900;
}

.section-dark .hl {
  color: var(--orange-light);
}

.hl-block {
  display: block;
  color: var(--orange);
  font-weight: 900;
}

.hl-white {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

/* Labels */
.label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(249, 78, 3, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(249, 78, 3, 0.2);
}

.label-orange {
  color: var(--orange-light);
  background: rgba(249, 78, 3, 0.12);
  border-color: rgba(249, 78, 3, 0.3);
}

.label-white {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 720px;
  margin: 0 auto;
}

.prose p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.prose-orange p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.big-quote {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--text-dark) !important;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 32px 0 !important;
}

.section-dark .big-quote {
  color: var(--text-light) !important;
}

.big-quote-white {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--text-light) !important;
  border-left: 4px solid rgba(255, 255, 255, 0.7);
  padding-left: 24px;
  margin: 32px 0 !important;
}

/* ========== HERO ========== */
.hero {
  padding: 100px 0 80px 0;
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 78, 3, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 78, 3, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 78, 3, 0.08);
  border: 1px solid rgba(249, 78, 3, 0.25);
  color: var(--orange-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto 28px auto;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 40px auto;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--muted-light);
}

.hero-sub strong {
  color: var(--text-dark);
}

.hero-ctas {
  margin-bottom: 60px;
}

.hero-meta {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-light);
}

.hero-thales {
  max-width: 360px;
  margin: 0 auto;
  position: relative;
}

.hero-thales::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(249, 78, 3, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.hero-thales img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(249, 78, 3, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(249, 78, 3, 0.5);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 16px;
}

.btn-xl {
  padding: 26px 52px;
  font-size: 18px;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
}

/* ========== NEWS STRIP ========== */
.news-strip {
  background: var(--bg-light-2);
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.news-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 30px;
}

.news-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
}

.news-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.news-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ========== PILLARS (MECHANISM) ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.pillar {
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar:hover {
  border-color: rgba(249, 78, 3, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.pillar h3 {
  margin-bottom: 14px;
}

.pillar p {
  font-size: 15px;
  line-height: 1.6;
}

.mechanism-callout {
  background: rgba(249, 78, 3, 0.06);
  border: 1.5px solid rgba(249, 78, 3, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mechanism-callout p {
  font-size: clamp(16px, 1.3vw, 19px);
  margin: 0;
  line-height: 1.7;
}

/* ========== ENCONTROS ========== */
.encontros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.encontro {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.encontro:hover {
  background: rgba(249, 78, 3, 0.08);
  border-color: rgba(249, 78, 3, 0.4);
  transform: translateY(-3px);
}

.encontro-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(249, 78, 3, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.encontro-date {
  display: block;
  font-size: 13px;
  color: var(--muted-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.encontro h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.3;
}

.encontro p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.extra-card {
  background: rgba(249, 78, 3, 0.08);
  border: 1.5px solid rgba(249, 78, 3, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.extra-icon {
  width: 64px;
  height: 64px;
  background: rgba(249, 78, 3, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  color: var(--orange-light);
}

.extra-card h4 {
  margin-bottom: 10px;
  color: var(--text-light);
}

.extra-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ========== WHATSAPP TESTIMONIALS ========== */
.wa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.wa-grid img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wa-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========== PRA QUEM É ========== */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.for-card {
  background: var(--bg-light-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
}

.for-card-yes {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, var(--bg-light-2) 100%);
}

.for-card-no {
  border-color: rgba(239, 68, 68, 0.25);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, var(--bg-light-2) 100%);
}

.for-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.for-icon {
  width: 44px;
  height: 44px;
  background: rgb(34, 197, 94);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.for-icon-no {
  background: rgb(239, 68, 68);
}

.for-head h3 {
  margin: 0;
  font-size: 22px;
}

.for-card ul {
  list-style: none;
  padding: 0;
}

.for-card li {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted-light);
  border-bottom: 1px solid var(--border-light);
}

.for-card li:last-child {
  border-bottom: none;
}

.for-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.for-card-yes li::before {
  background: rgb(34, 197, 94);
}

.for-card-no li::before {
  background: rgb(239, 68, 68);
}

/* ========== STACK / OFERTA ========== */
.stack {
  max-width: 760px;
  margin: 0 auto 50px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(10px);
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-dark);
}

.stack-item:last-of-type {
  border-bottom: none;
}

.stack-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stack-text strong {
  font-size: 17px;
  color: var(--text-light);
  font-weight: 700;
}

.stack-text span {
  font-size: 13px;
  color: var(--muted-dark);
}

.stack-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  white-space: nowrap;
  text-align: right;
  min-width: 110px;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-decoration-thickness: 2px;
}

.stack-bonus {
  background: rgba(249, 78, 3, 0.05);
  border-radius: 12px;
  margin: 4px 0;
  border-bottom: 1px solid rgba(249, 78, 3, 0.15) !important;
}

.bonus-tag {
  display: inline-block;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-light) !important;
  background: rgba(249, 78, 3, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 4px;
  width: fit-content;
}

.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-top: 2px dashed rgba(249, 78, 3, 0.3);
  margin-top: 8px;
}

.stack-total span {
  font-size: 15px;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.stack-total strong {
  font-size: 32px;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-decoration-thickness: 3px;
}

/* Price Box */
.price-box {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(249, 78, 3, 0.15) 0%, rgba(249, 78, 3, 0.05) 100%);
  border: 2px solid rgba(249, 78, 3, 0.4);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(249, 78, 3, 0.2);
}

.price-overline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 18px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-light);
}

.price-x {
  font-size: 40px;
  font-weight: 800;
}

.price-value {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-value sup {
  font-size: 0.4em;
  font-weight: 800;
  vertical-align: super;
}

.price-cash {
  font-size: 17px;
  margin-bottom: 32px !important;
  color: var(--muted-dark) !important;
}

.price-cash strong {
  color: var(--text-light);
  font-size: 19px;
}

.price-meta {
  margin-top: 18px !important;
  font-size: 14px !important;
  color: var(--muted-dark) !important;
}

.link-secondary {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.warning {
  text-align: center;
  margin-top: 40px !important;
  font-size: 15px !important;
  color: var(--muted-dark) !important;
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
}

/* ========== GUARANTEE ========== */
.guarantee-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-light-2);
  border: 2px solid rgba(249, 78, 3, 0.25);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
}

.guarantee-seal {
  display: flex;
  justify-content: center;
}

.guarantee-seal-inner {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 50px rgba(249, 78, 3, 0.4);
  position: relative;
  border: 6px solid var(--bg-light);
  outline: 2px dashed var(--orange);
  outline-offset: -14px;
}

.g-num {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
}

.g-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-top: 4px;
}

.g-text-sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
}

.guarantee-content h2 {
  margin-bottom: 18px;
}

/* ========== FAQ ========== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(249, 78, 3, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 0.8;
}

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

.faq-item p {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.65;
}

/* ========== CLOSING ========== */
.closing {
  padding: 140px 0;
}

.closing-thales {
  max-width: 200px;
  margin: 0 auto 40px auto;
  position: relative;
}

.closing-thales::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: radial-gradient(circle, rgba(249, 78, 3, 0.3) 0%, transparent 70%);
  filter: blur(30px);
}

.closing-thales img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.closing h2 {
  text-align: center;
  margin-bottom: 50px;
}

.closing-cta {
  text-align: center;
  margin-top: 50px;
}

.closing-meta {
  margin-top: 22px !important;
  font-size: 14px !important;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark-2);
  color: var(--muted-dark);
  padding: 60px 0 40px 0;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 24px auto;
  opacity: 0.85;
}

.footer p {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--muted-dark);
}

.footer-links a {
  color: var(--orange-light);
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  box-shadow: 0 -10px 30px rgba(249, 78, 3, 0.3);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: white;
}

.sticky-cta strong {
  font-size: 17px;
  font-weight: 900;
}

.sticky-cta span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
}

/* ========== REVEAL ON SCROLL ========== */
.js-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .closing { padding: 100px 0; }

  .for-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 36px 30px;
    gap: 30px;
    text-align: center;
  }

  .guarantee-content h2 {
    text-align: center;
  }

  .news-logos {
    gap: 32px;
  }

  .news-logos img {
    height: 26px;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
  }

  .nav-logo { height: 32px; }

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

  .badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero-thales {
    max-width: 260px;
  }

  .stack-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    padding: 18px 16px;
  }

  .stack-value {
    text-align: left;
    min-width: auto;
  }

  .stack-total {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 20px 16px;
  }

  .stack-total strong {
    font-size: 26px;
  }

  .price-box {
    padding: 36px 24px;
  }

  .price-x {
    font-size: 30px;
  }

  .btn-xl {
    font-size: 15px;
    padding: 22px 28px;
  }

  .guarantee-seal-inner {
    width: 160px;
    height: 160px;
  }

  .g-num { font-size: 64px; }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .wa-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .pillars,
  .encontros,
  .extras-grid {
    grid-template-columns: 1fr;
  }
}
