/* === Variáveis de Cor === */
:root {
  --navy: #1b2a47;
  --blue: #007aff;
  --green: #22c55e;
  --green-hover: #16a34a;
  --yellow: #f59e0b;
  --purple: #8b5cf6;
  --white: #ffffff;
  --text: #334155;
  --bg-cards: #ffffff;
}

/* === Reset e Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background-color: var(--navy); 
}

/* === Seção Hero === */
.hero {
  min-height: 100vh;
  width: 100%;
  background-image: url('https://vootlkuyzwzvpxcfkfzk.supabase.co/storage/v1/object/public/public-files/1786515868168-9pmvy.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* === Header Desktop === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.logo img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.btn-nav {
  background-color: var(--blue);
  color: var(--white);
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.btn-nav:hover {
  background-color: #0062cc;
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.mobile-menu-btn {
  display: none; 
}

/* === Hero Content Container === */
.hero-container {
  display: flex;
  flex: 1;
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
}

/* === Coluna Esquerda === */
.hero-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Headline */
.headline {
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: -1.5px;
  max-width: 700px;
}

.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }

/* Subtítulo */
.subtitle {
  font-size: 24px;
  color: var(--navy);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* === Cards de Benefícios === */
.benefits-grid {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
  width: 100%;
}

.benefit-card {
  flex: 1;
  background: var(--bg-cards);
  border-radius: 18px;
  max-width: 175px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 10px;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.icon-green { background: #eaf9f0; color: var(--green); }
.icon-blue { background: #eaf3ff; color: var(--blue); }
.icon-yellow { background: #fff8e6; color: var(--yellow); }
.icon-purple { background: #f4ecff; color: var(--purple); }

.benefit-card p {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

/* === Botão CTA === */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--green);
  color: var(--white);
  text-decoration: none;
  height: 74px;
  width: 100%;
  max-width: 600px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
  transition: all 0.3s;
  padding: 0 32px;
  margin-top: 32px;
  letter-spacing: -0.5px;
}

.cta-btn:hover {
  background-color: var(--green-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.45);
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.cta-icon-left, .cta-icon-right {
  font-size: 26px;
  display: flex;
  align-items: center;
}

.cta-text {
  flex: 1;
  text-align: center;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

/* === Coluna Direita === */
.hero-right {
  width: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 100%;
}

.main-image {
  width: 95%;
  max-width: 850px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
  transform: translateX(20px);
  margin-bottom: 0;
}

/* === Seção 2: Mostrar Resultado === */
.section-result {
  background-color: #F8FAFC;
  width: 100%;
  padding: 80px 5% 100px;
}

.result-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill {
  background-color: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.result-headline {
  text-align: center;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  max-width: 1000px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.result-subtitle {
  text-align: center;
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 50px;
}

.result-image-wrapper {
  width: 100%;
  max-width: 1250px;
  margin-bottom: -35px;
  display: flex;
  justify-content: center;
}

.result-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  object-fit: cover;
}

.highlight-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.highlight-text-1 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
}

.highlight-text-2 {
  font-size: 26px;
  color: var(--blue);
  font-weight: 800;
}

.highlight-text-2 i {
  margin-right: 8px;
  color: var(--yellow);
}

.categories-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.category-chip {
  background: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-chip i {
  color: var(--blue);
}

/* === Seção 3: Menos Tela, Mais Criação === */
.section-creation {
  background-color: #F0F6FF;
  /* Fundo premium com iluminação radial suave e padrão de bolinhas lúdicas */
  background-image: 
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.6) 0%, transparent 60%),
    radial-gradient(#D0E3FF 3px, transparent 3px),
    radial-gradient(#D0E3FF 3px, transparent 3px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 0 0, 20px 20px;
  width: 100%;
  padding: 80px 5% 100px;
}

.creation-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.creation-pain-block {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.pain-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pain-headline {
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 30px;
  max-width: 700px;
}

.screens-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.screen-card {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  min-width: 110px;
}
.screen-card i {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 8px;
}
.screen-card p {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.pain-right {
  width: 450px;
  display: flex;
  justify-content: center;
}
.child-phone-img {
  width: 100%;
  max-width: 450px;
  object-fit: contain;
}

.pain-conclusion {
  font-size: 24px;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

.transition-banner {
  background-color: #EAF9F0;
  padding: 20px 40px;
  border-radius: 50px;
  margin-bottom: 60px;
}
.transition-banner p {
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
}

.creation-turn-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.turn-subtitle {
  font-size: 20px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 12px;
}

.turn-headline {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 50px;
  text-align: center;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 50px;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  width: 180px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
}
.step-number {
  position: absolute;
  top: -12px;
  background: var(--green);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.step-card i {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-card p {
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
}

.step-arrow {
  color: #CBD5E1;
  font-size: 24px;
}

.process-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 60px;
}

.process-img {
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.img-printed { width: 25%; }
.img-assembly { width: 30%; }
.img-ready { width: 45%; }

.process-arrow {
  color: #CBD5E1;
  font-size: 32px;
}

.closure-card {
  background-color: #EAF3FF;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
.closure-text-1 {
  font-size: 28px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}
.closure-text-2 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
}
.closure-text-2 i {
  color: var(--blue);
  margin-right: 8px;
}

/* === Seção 4: Como Funciona === */
.section-how-it-works {
  background-color: var(--white);
  width: 100%;
  padding: 100px 5%;
}

.how-it-works-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-headline {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.how-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 800px;
  text-align: center;
  margin-bottom: 60px;
}

.how-cards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 60px;
}

.how-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
  min-height: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  position: relative;
}

.how-card-featured {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: scale(1.02);
}

.how-card-number {
  background: var(--green);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}
.how-card-featured .how-card-number {
  background: var(--blue);
}

.how-card-title {
  font-size: 22px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}

.how-card-text {
  font-size: 15px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}

.how-card-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.how-arrow {
  color: #CBD5E1;
  font-size: 28px;
}

.how-closure-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}
.how-closure-icon {
  font-size: 40px;
  color: var(--green);
}
.how-closure-text-1 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}
.how-closure-text-2 {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

.mobile-closure {
  display: none;
}

/* === Seção 5: O Que Vem no Kit === */
.bg-textured-alt {
  background-color: #F4F8FC;
  background-image: 
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 60%),
    radial-gradient(#D6E6FF 3px, transparent 3px),
    radial-gradient(#D6E6FF 3px, transparent 3px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 20px 20px, 0 0;
}

.section-whats-inside {
  width: 100%;
  padding: 100px 5%;
}

.whats-inside-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whats-headline {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.whats-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 800px;
  text-align: center;
  margin-bottom: 60px;
}

/* Composition Grid */
.whats-composition {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 60px;
}

.whats-comp-main {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid #E2E8F0;
}

.img-city-ready {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
}

.whats-comp-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.whats-comp-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E8F0;
}
.whats-comp-boy {
  padding-top: 20px;
  align-items: flex-end;
}
.img-boy-playing {
  width: 100%;
  object-fit: contain;
  margin-bottom: -20px;
}

.whats-comp-pieces {
  padding: 0;
}
.img-kit-pieces {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lists */
.whats-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.whats-list-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  border: 1px solid #E2E8F0;
}

.list-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 12px;
}

.list-card-header i {
  font-size: 24px;
  color: var(--blue);
}

.list-card-header h3 {
  font-size: 19px;
  color: var(--navy);
  font-weight: 800;
}

.whats-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whats-list-card li {
  font-size: 15px;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whats-list-card li i {
  color: var(--green);
  font-size: 14px;
}

/* Closure Card */
.whats-closure-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.whats-closure-icon {
  font-size: 44px;
  color: var(--blue);
}
.whats-closure-text-1 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}
.whats-closure-text-2 {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

.mobile-whats-closure {
  display: none;
}

/* === Seção 6: Benefícios para Seu Filho === */
.section-benefits {
  background-color: var(--white);
  width: 100%;
  padding: 100px 5%;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-headline {
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.1;
}
.benefits-headline .highlight {
  color: var(--blue);
}
.mobile-only {
  display: none;
}

.benefits-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 800px;
  text-align: center;
  margin-bottom: 60px;
}

.benefits-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  margin-bottom: 60px;
}

.benefits-img-wrapper {
  width: 40%;
  display: flex;
  justify-content: center;
}

.benefits-main-img {
  width: 100%;
  max-width: 550px;
  object-fit: contain;
}

.benefits-grid-2x4 {
  width: 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.icon-blue {
  background-color: #EBF4FF;
  color: var(--blue);
}
.icon-green {
  background-color: #EAF9F0;
  color: var(--green);
}

.benefit-item-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-item-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.4;
  margin: 0;
}

/* Closure Card */
.benefits-closure-card {
  background-color: #F0F6FF;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
}

.benefits-closure-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits-closure-p1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}
.benefits-closure-p2 {
  font-size: 18px;
  color: #475569;
  font-weight: 500;
}

.benefits-closure-badge {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
}
.benefits-closure-badge i {
  font-size: 18px;
}

.mobile-benefits-closure {
  display: none;
}

/* === Seção 7: Dinheiro da Cidade === */
.section-money {
  padding: 100px 5%;
  width: 100%;
}

.money-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.money-headline {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.money-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 900px;
  text-align: center;
  margin-bottom: 24px;
}

.money-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.money-chip {
  background: var(--white);
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
}
.money-chip i {
  color: var(--green);
}

.money-intro-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 60px;
}

.money-composition {
  display: grid;
  grid-template-columns: 55% 42%;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  gap: 3%;
}

.money-comp-left {
  width: 100%;
}
.img-realistic-money {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.money-comp-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.money-transparent-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.img-transparent-money {
  width: 100%;
  max-width: 450px;
  object-fit: contain;
}

.money-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.money-mini-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #F1F5F9;
}
.mini-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #EAF9F0;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.money-mini-card:nth-child(even) .mini-card-icon {
  background: #EBF4FF;
  color: var(--blue);
}

.mini-card-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.mini-card-content p {
  font-size: 13px;
  color: #475569;
  line-height: 1.3;
}

/* Highlight Card */
.money-highlight-card {
  background: var(--white);
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}
.money-highlight-icon {
  font-size: 40px;
  color: var(--green);
}
.money-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.money-highlight-card .highlight-p1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.money-highlight-card .highlight-p2 {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

.mobile-money-highlight {
  display: none;
}

.money-example-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.money-example-chips span {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #CBD5E1;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
}

/* === Seção 8: Desafios da Cidade === */
.section-challenges {
  background-color: var(--white);
  padding: 100px 5%;
  width: 100%;
}

.challenges-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.challenges-headline {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.challenges-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 800px;
  text-align: center;
  margin-bottom: 30px;
}

.challenges-question {
  background: var(--navy);
  padding: 16px 40px;
  border-radius: 50px;
  margin-bottom: 60px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.challenges-question h3 {
  font-size: 24px;
  color: var(--white);
  font-weight: 800;
  margin: 0;
}

.challenges-composition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-bottom: 40px;
}

.challenges-comp-left {
  width: 46%;
  display: flex;
  justify-content: center;
}
.img-challenge-cards {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
}

.challenges-comp-right {
  width: 54%;
}
.img-challenge-action {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.challenges-info-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 60px;
}
.info-card-icon {
  font-size: 36px;
  color: var(--blue);
}
.info-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-p1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.info-p2 {
  font-size: 16px;
  color: #475569;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.challenge-mini-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.chal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.icon-red { background: #FEF2F2; color: #EF4444; }
.icon-blue { background: #EFF6FF; color: var(--blue); }
.icon-yellow { background: #FEFCE8; color: #EAB308; }
.icon-orange { background: #FFF7ED; color: #F97316; }
.icon-green { background: #F0FDF4; color: var(--green); }
.icon-purple { background: #FAF5FF; color: #A855F7; }

.chal-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.chal-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

/* Closure */
.challenges-closure-card {
  background: #EBF4FF;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  text-align: center;
  border: 1px solid #D6E6FF;
}
.closure-p1 {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.closure-p2 {
  font-size: 18px;
  color: #334155;
  font-weight: 500;
}
.highlight-green {
  color: var(--green);
  font-weight: 800;
}

.mobile-challenges-closure {
  display: none;
}

/* === Seção 9: O Que Você Recebe === */
.section-what-you-get {
  padding: 100px 5%;
  width: 100%;
}

.get-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get-composition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-bottom: 60px;
}

.get-comp-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.get-headline {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.get-subtitle {
  font-size: 20px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 30px;
}

.get-badge {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.badge-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.badge-subtitle {
  font-size: 14px;
  color: #CBD5E1;
  font-weight: 500;
}

.get-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.get-category-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
}
.get-category-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.get-category-card h4 i {
  color: var(--blue);
}
.get-category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.get-category-card li {
  font-size: 14px;
  color: #475569;
  position: relative;
  padding-left: 14px;
}
.get-category-card li::before {
  content: '•';
  color: var(--green);
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 14px;
}

.get-comp-right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.img-product-kit {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
}

.delivery-bar {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 2px solid #E2E8F0;
  margin-bottom: 40px;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.delivery-icon {
  width: 50px;
  height: 50px;
  background: #EAF9F0;
  color: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.delivery-item:nth-child(3) .delivery-icon {
  background: #FEFCE8;
  color: #EAB308;
}
.delivery-item:nth-child(5) .delivery-icon {
  background: #EBF4FF;
  color: var(--blue);
}

.delivery-text h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.delivery-text p {
  font-size: 14px;
  color: #475569;
}
.delivery-divider {
  width: 2px;
  height: 40px;
  background: #E2E8F0;
}

.get-closure-card {
  text-align: center;
}
.get-closure-p1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.get-closure-p2 {
  font-size: 18px;
  color: #475569;
  font-weight: 500;
}

.mobile-get-closure { display: none; }

/* === Seção 10: Certificado === */
.section-certificate {
  background-color: var(--white);
  padding: 100px 5%;
  width: 100%;
}

.cert-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-composition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-bottom: 60px;
}

.cert-comp-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cert-headline {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.highlight-blue {
  color: var(--blue);
}

.cert-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 40px;
}

.cert-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.cert-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.cert-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cert-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cert-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.3;
}

.cert-comp-right {
  width: 45%;
  display: flex;
  justify-content: center;
}
.img-certificate {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
}

.cert-closure-card {
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}
.cert-closure-icon {
  font-size: 40px;
  color: #F59E0B;
}
.cert-closure-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cert-closure-p1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.cert-closure-p2 {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

.mobile-cert-closure { display: none; }

/* === Seção 11: Oferta === */
.section-offer {
  padding: 100px 5%;
  width: 100%;
}

.offer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-headline {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 900;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.offer-subtitle {
  font-size: 22px;
  color: #475569;
  font-weight: 500;
  max-width: 900px;
  text-align: center;
  margin-bottom: 50px;
}

.offer-composition {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.offer-comp-left {
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-img-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.img-offer-product {
  width: 155%;
  max-width: none;
}

.offer-comp-right {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.offer-card {
  background: var(--white);
  border: 2px solid #E0F2FE;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.08);
  display: flex;
  flex-direction: column;
}

.offer-card-top h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.offer-card-top p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
}

.offer-includes {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}
.offer-includes h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.offer-includes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-includes li {
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.offer-includes li i {
  color: var(--green);
  font-size: 16px;
}

.offer-price-block {
  text-align: center;
  margin-bottom: 24px;
}
.price-normal {
  font-size: 18px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-normal .strike {
  text-decoration: line-through;
  color: #94A3B8;
  margin-left: 6px;
}
.price-today {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.today-label {
  font-size: 14px;
  font-weight: 800;
  background: #FEFCE8;
  color: #B45309;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.today-value {
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.price-payment .pay-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 2px;
}
.price-payment .pay-sub {
  font-size: 13px;
  color: #64748B;
}

.offer-delivery-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.del-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.del-indicator i {
  font-size: 20px;
  color: #0EA5E9;
  width: 24px;
  text-align: center;
}
.del-text {
  display: flex;
  flex-direction: column;
}
.del-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.del-text span {
  font-size: 13px;
  color: #475569;
}

.offer-reinforcement {
  font-size: 15px;
  color: #334155;
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 0 10px;
}

.cta-offer {
  width: 100%;
  height: 80px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 12px;
  text-align: center;
}
.cta-offer:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.4);
}

.offer-microcopy {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: #64748B;
  margin-bottom: 30px;
}
.offer-microcopy i {
  color: #94A3B8;
}

.offer-guarantee {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.guar-icon {
  font-size: 28px;
  color: var(--green);
  margin-top: 4px;
}
.guar-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.guar-text p {
  font-size: 13px;
  color: #334155;
  line-height: 1.4;
}

/* === Seção 12: FAQ === */
.section-faq {
  background-color: var(--white);
  padding: 100px 5%;
  width: 100%;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-headline {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 900;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.faq-subtitle {
  font-size: 20px;
  color: #475569;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question span {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px 24px;
  font-size: 17px;
  color: #334155;
  line-height: 1.5;
}

.faq-note {
  font-size: 14px !important;
  color: #64748B !important;
  margin-top: -12px;
}

.faq-item.active {
  border-color: #BAE6FD;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.05);
}

.faq-item.active .faq-icon {
  background: #DCFCE7;
  color: var(--green);
}

.faq-final-block {
  width: 100%;
  background: #F0F9FF;
  border: 1px solid #E0F2FE;
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-final-block h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-final-block p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
  font-weight: 500;
}

.cta-final {
  width: 100%;
  max-width: 480px;
  height: 72px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.cta-final:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.4);
}

.final-microcopy {
  font-size: 15px;
  color: #475569;
  font-weight: 600;
}

/* ========================================= */
/* === RESPONSIVIDADE === */
/* ========================================= */

/* Desktop Grande (min-width: 1600px) */
@media (min-width: 1600px) {
  .header, .hero-container {
    max-width: 1520px;
  }
  .logo img {
    width: 280px;
  }
  .headline {
    font-size: 66px;
  }
  .benefit-card {
    height: 150px;
  }
  .main-image {
    width: 100%;
    max-width: 900px;
  }
}

/* Desktop Padrão (1200px - 1599px) */
@media (max-width: 1599px) and (min-width: 1200px) {
  .header, .hero-container {
    max-width: 1380px;
  }
}

/* === Tablet (768px até 1199px) === */
@media (max-width: 1199px) {
  .hero-container {
    gap: 30px;
  }
  .headline {
    font-size: 46px;
  }
  .subtitle {
    font-size: 20px;
  }
  .benefits-grid {
    flex-wrap: wrap;
  }
  .benefit-card {
    min-width: 145px;
    height: 140px;
  }
  .cta-btn {
    font-size: 18px;
    height: 68px;
    padding: 0 24px;
  }
  .cta-icon-left, .cta-icon-right {
    font-size: 22px;
  }
  .main-image {
    width: 110%;
    transform: translateX(0);
  }
  .header {
    width: calc(100% - 40px);
  }
  .hero-container {
    width: calc(100% - 40px);
  }
  .desktop-nav ul {
    gap: 16px;
  }
  .logo img {
    width: 220px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding-top: 40px;
    gap: 20px;
  }
  .hero-left {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-right {
    width: 100%;
  }
  .main-image {
    width: 80%;
    max-width: 500px;
  }
}

/* === Mobile (até 767px) === */
@media (max-width: 767px) {
  .hero {
    background-image: url('https://vootlkuyzwzvpxcfkfzk.supabase.co/storage/v1/object/public/public-files/1786515591637-6qmps.png');
    background-position: center bottom;
  }
  
  .hero-left, .hero-right {
    display: contents;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 5%;
    gap: 0;
  }

  /* Header Mobile */
  .header {
    height: 72px;
    width: 100%;
    padding: 0 5%;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .logo img {
    width: 155px;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--blue);
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Elementos Reordenados */
  .headline {
    order: 1;
    text-align: center;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.0;
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: -1px;
    max-width: 100%;
  }

  .subtitle {
    order: 2;
    text-align: center;
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 14px;
  }

  /* Cards Mobile 2x2 */
  .benefits-grid {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 8px;
    margin-bottom: 0;
  }

  .benefit-card {
    width: 100%;
    max-width: none;
    height: 100px;
    padding: 10px;
    border-radius: 16px;
    gap: 0;
  }

  .benefit-card .icon {
    width: 42px; 
    height: 42px;
    font-size: 20px;
    margin-bottom: 6px;
  }

  .benefit-card p {
    font-size: 14px; 
    line-height: 1.1;
  }

  /* Imagem Principal Mobile */
  .main-image {
    order: 4;
    width: 92%; 
    max-width: 440px;
    margin: 0;
    margin-top: -15px;
    margin-bottom: 0;
    transform: none;
  }

  /* CTA Mobile */
  .cta-btn {
    order: 5;
    width: 90%;
    height: 68px; 
    font-size: 19px; 
    padding: 0 16px;
    margin-top: 8px;
    margin-bottom: 30px;
    border-radius: 34px;
  }
  
  .cta-icon-left, .cta-icon-right {
    font-size: 22px;
  }
  /* === Section 2 Mobile === */
  .section-result {
    padding: 60px 4% 80px;
  }
  .result-headline {
    font-size: clamp(34px, 8vw, 40px);
    line-height: 1.05;
  }
  .result-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .result-image-wrapper {
    margin-bottom: 0;
  }
  .result-image {
    width: calc(100% - 32px);
    border-radius: 20px;
  }
  .highlight-card {
    padding: 20px 24px;
    border-radius: 20px;
    width: 95%;
    margin-top: 24px;
    margin-bottom: 30px;
  }
  .highlight-text-1 {
    font-size: 16px;
  }
  .highlight-text-2 {
    font-size: 20px;
  }
  .categories-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .category-chip {
    padding: 12px 10px;
    font-size: 15px;
    justify-content: center;
    height: 75px;
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
  /* === Section 3 Mobile === */
  .section-creation {
    padding: 60px 4% 80px;
  }
  .creation-pain-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    gap: 0;
  }
  .pain-left, .pain-right { display: contents; }
  
  .pain-headline {
    order: 1;
    font-size: 34px;
    line-height: 1.05;
    text-align: center;
    margin-bottom: 20px;
  }
  .child-phone-img {
    order: 2;
    width: 65%;
    margin-bottom: 24px;
  }
  .screens-grid {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .screen-card {
    min-width: 0;
    height: 80px;
    padding: 10px;
  }
  .screen-card:last-child {
    grid-column: span 2;
  }
  
  .pain-conclusion {
    font-size: 19px;
    margin-bottom: 40px;
  }
  .transition-banner {
    padding: 16px 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  .transition-banner p { font-size: 15px; }
  
  .turn-subtitle { font-size: 18px; text-align: center; }
  .turn-headline { font-size: 30px; margin-bottom: 30px; }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }
  .step-arrow { display: none; }
  .step-card {
    width: 100%;
    height: 95px;
  }
  .step-card i { font-size: 26px; margin-bottom: 6px; }
  .step-card p { font-size: 14px; }
  
  .step-card:last-child {
    grid-column: span 2;
    width: 60%;
    justify-self: center;
  }
  
  .process-images {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  .process-img {
    height: auto;
    border-radius: 18px;
  }
  .img-printed { width: 85%; }
  .img-assembly { width: 90%; }
  .img-ready { width: 100%; }
  
  .process-arrow {
    transform: rotate(90deg);
    font-size: 24px;
    margin: -4px 0;
  }
  
  .closure-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .closure-text-1 { font-size: 22px; }
  .closure-text-2 { font-size: 18px; }
  /* === Section 4 Mobile === */
  .section-how-it-works {
    padding: 60px 4% 70px;
  }
  .how-headline {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .how-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .how-cards-grid {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .desktop-only {
    display: none;
  }
  .how-card {
    width: 100%;
    min-height: auto;
    padding: 24px 20px;
  }
  .how-card-featured {
    transform: none;
  }
  .how-card-img {
    height: 180px;
    margin-top: 10px;
  }
  .desktop-closure {
    display: none;
  }
  .mobile-closure {
    display: flex;
    flex-direction: column;
    background: #F8FAFC;
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
  }
  .mobile-closure .how-closure-text-1 {
    font-size: 20px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
  }
  .mobile-closure .how-closure-text-2 {
    font-size: 16px;
    color: #475569;
  }
  /* === Section 5 Mobile === */
  .section-whats-inside {
    padding: 60px 4% 80px;
  }
  .whats-headline {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .whats-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .whats-composition {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .whats-comp-main {
    padding: 20px;
    order: 1; /* Cidade pronta primeiro */
  }
  .whats-comp-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 2;
  }
  .whats-comp-boy {
    order: 1; /* Criança montando */
  }
  .img-boy-playing {
    margin-bottom: -10px;
  }
  .whats-comp-pieces {
    order: 2; /* Peças do kit */
  }
  .whats-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }
  .whats-list-card {
    padding: 16px 14px;
  }
  .list-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .list-card-header h3 {
    font-size: 16px;
  }
  .whats-list-card li {
    font-size: 13px;
    gap: 6px;
  }
  .desktop-whats-closure {
    display: none;
  }
  .mobile-whats-closure {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 0;
  }
  .mobile-whats-closure .whats-closure-text-1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .mobile-whats-closure .whats-closure-text-2 {
    font-size: 16px;
  }
  /* === Section 6 Mobile === */
  .section-benefits {
    padding: 60px 4% 70px;
  }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .benefits-headline {
    font-size: clamp(32px, 8vw, 38px);
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .benefits-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .benefits-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .benefits-img-wrapper {
    width: 100%;
  }
  .benefits-main-img {
    width: 95%;
  }
  .benefits-grid-2x4 {
    width: 100%;
    gap: 12px;
  }
  .benefit-item-card {
    padding: 16px 14px;
    border-radius: 16px;
  }
  .benefit-item-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .benefit-item-title {
    font-size: 15px;
  }
  .benefit-item-text {
    font-size: 14px;
  }
  
  @media (max-width: 400px) {
    .benefits-grid-2x4 {
      grid-template-columns: 1fr;
    }
  }

  .desktop-benefits-closure {
    display: none;
  }
  .mobile-benefits-closure {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #F0F6FF;
    padding: 24px 20px;
    border-radius: 20px;
    gap: 12px;
  }
  .mobile-benefits-closure .benefits-closure-p1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
  }
  .mobile-benefits-closure .benefits-closure-p2 {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
  }
  /* === Section 7 Mobile === */
  .section-money {
    padding: 60px 4% 80px;
  }
  .money-headline {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .money-subtitle {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .money-chips {
    gap: 8px;
    margin-bottom: 20px;
  }
  .money-chip {
    font-size: 13px;
    padding: 6px 12px;
  }
  .money-intro-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .money-composition {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .money-comp-left {
    order: 1; /* Foto realista primeiro */
  }
  .img-realistic-money {
    border-radius: 18px;
  }
  .money-comp-right {
    order: 2;
    gap: 20px;
  }
  .money-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .money-mini-card {
    flex-direction: column;
    padding: 16px;
  }
  .desktop-money-highlight {
    display: none;
  }
  .mobile-money-highlight {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 30px;
  }
  .mobile-money-highlight .highlight-p1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
  }
  .mobile-money-highlight .highlight-p2 {
    font-size: 15px;
    color: #475569;
  }
  .money-example-chips span {
    font-size: 13px;
    padding: 6px 14px;
  }
  /* === Section 8 Mobile === */
  .section-challenges {
    padding: 60px 4% 80px;
  }
  .challenges-headline {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .challenges-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .challenges-question {
    padding: 12px 30px;
    margin-bottom: 40px;
  }
  .challenges-question h3 {
    font-size: 20px;
  }
  .challenges-composition {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  .challenges-comp-left {
    width: 100%;
    order: 1; /* Cartas primeiro */
  }
  .img-challenge-cards {
    width: 95%;
  }
  .challenges-comp-right {
    width: 100%;
    order: 2; /* Cidade com problema depois */
  }
  .img-challenge-action {
    border-radius: 18px;
  }
  .challenges-info-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
    margin-bottom: 40px;
  }
  .info-p1 {
    font-size: 18px;
  }
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }
  .challenge-mini-card {
    padding: 16px 14px;
  }
  .chal-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .chal-content h4 {
    font-size: 14px;
  }
  .chal-content p {
    font-size: 13px;
  }
  @media (max-width: 400px) {
    .challenges-grid {
      grid-template-columns: 1fr;
    }
  }
  .desktop-challenges-closure {
    display: none;
  }
  .mobile-challenges-closure {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    background: #EBF4FF;
    border-radius: 20px;
    border: 1px solid #D6E6FF;
  }
  .mobile-challenges-closure .closure-p1 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 900;
    color: var(--navy);
  }
  .mobile-challenges-closure .closure-p2 {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
  }
  /* === Section 9 Mobile === */
  .section-what-you-get {
    padding: 60px 4% 80px;
  }
  .get-composition {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .get-comp-left, .get-comp-right {
    display: contents;
  }
  
  .get-headline {
    order: 1;
    font-size: 34px;
    text-align: center;
  }
  .get-subtitle {
    order: 2;
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
  }
  .get-badge {
    order: 3;
    margin: 0 auto 30px auto;
    text-align: center;
    align-items: center;
  }
  .img-product-kit {
    order: 4;
    width: 100%;
    margin-bottom: 40px;
  }
  .get-categories-grid {
    order: 5;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
  
  @media (max-width: 400px) {
    .get-categories-grid {
      grid-template-columns: 1fr;
    }
  }

  .delivery-bar {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    align-items: flex-start;
  }
  .delivery-divider {
    width: 100%;
    height: 1px;
  }
  .delivery-item {
    justify-content: flex-start;
    width: 100%;
  }

  .desktop-get-closure { display: none; }
  .mobile-get-closure {
    display: block;
    margin-top: 30px;
  }
  .mobile-get-closure .get-closure-p1 {
    font-size: 22px;
  }
  .mobile-get-closure .get-closure-p2 {
    font-size: 16px;
  }
  /* === Section 10 Mobile === */
  .section-certificate {
    padding: 60px 4% 80px;
  }
  .cert-composition {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
  .cert-comp-left, .cert-comp-right {
    display: contents;
  }
  
  .cert-comp-left .pill {
    order: 1;
    margin: 0 auto 16px auto;
  }
  .cert-headline {
    order: 2;
    font-size: 34px;
    text-align: center;
    margin-top: 0;
  }
  .cert-subtitle {
    order: 3;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  .img-certificate {
    order: 4;
    width: 95%;
    margin: 0 auto 40px auto;
  }
  .cert-benefits-list {
    order: 5;
    gap: 12px;
  }
  
  .cert-benefit-item {
    padding: 16px;
  }
  .cert-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .cert-text h4 {
    font-size: 14px;
  }
  .cert-text p {
    font-size: 13px;
  }

  .desktop-cert-closure { display: none; }
  .mobile-cert-closure {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }
  .mobile-cert-closure .cert-closure-p1 {
    font-size: 20px;
  }
  /* === Section 11 Mobile === */
  .section-offer {
    padding: 60px 4% 80px;
  }
  .offer-composition {
    flex-direction: column;
    gap: 0;
  }
  .offer-comp-left, .offer-comp-right {
    display: contents;
  }
  
  .offer-container > .pill {
    order: 1;
    margin: 0 auto 16px auto;
  }
  .offer-headline {
    order: 2;
    font-size: 34px;
    line-height: 1.05;
    margin-top: 0;
  }
  .offer-subtitle {
    order: 3;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .offer-img-wrapper {
    order: 4;
    width: 100%;
    margin-bottom: 24px;
  }
  .offer-card {
    order: 5;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .offer-card-top h3 {
    font-size: 22px;
  }
  .offer-card-top p {
    font-size: 15px;
  }
  .offer-includes ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .offer-price-block {
    margin-bottom: 24px;
  }
  .price-today {
    margin-bottom: 4px;
  }
  .today-value {
    font-size: clamp(50px, 12vw, 60px);
  }
  
  /* MOBILE — Reorder within the card */
  .offer-card {
    display: flex;
    flex-direction: column;
  }
  .offer-card-top { order: 1; }
  .offer-includes { order: 2; }
  .offer-price-block { order: 3; margin-bottom: 16px; }
  .cta-offer { 
    order: 4; 
    height: 72px;
    font-size: 17px;
    padding: 0 16px;
    margin-bottom: 12px;
  }
  .offer-microcopy { order: 5; flex-wrap: wrap; margin-bottom: 24px; }
  .offer-reinforcement { order: 6; margin-bottom: 24px; }
  .offer-delivery-indicators { order: 7; margin-bottom: 24px; }
  .offer-guarantee { order: 8; }
  /* === Section 12 Mobile === */
  .section-faq {
    padding: 60px 5% 80px;
  }
  .faq-headline {
    font-size: 32px;
    line-height: 1.05;
    margin-top: 0;
  }
  .faq-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .faq-accordion {
    gap: 10px;
    margin-bottom: 50px;
  }
  .faq-question {
    padding: 18px;
  }
  .faq-question span {
    font-size: 16px;
  }
  .faq-answer p {
    padding: 0 18px 18px 18px;
    font-size: 15px;
    line-height: 1.45;
  }
  .faq-note {
    font-size: 13px !important;
  }
  
  .faq-final-block {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .faq-final-block h3 {
    font-size: 26px;
  }
  .faq-final-block p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .cta-final {
    max-width: none;
    height: 70px;
    font-size: 18px;
    border-radius: 18px;
    padding: 0 16px;
    line-height: 1.2;
    text-align: center;
  }
  .final-microcopy {
    font-size: 14px;
  }
}
