@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================
   VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  --color-black: #000000;
  --color-bg-dark: #000000;
  --color-bg-alt: #0D0D0D;
  --color-bg-light: #F5F0E8;
  
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  
  --color-text-white: #FFFFFF;
  --color-text-black: #111111;
  --color-text-gray: #CCCCCC;
  --color-text-muted: #888888;
  
  --color-error: #FF4D4D;
  --color-success: #2ECC71;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #000000 100%);
  --gradient-gold-hover: linear-gradient(135deg, #E8C97A 0%, #C9A84C 50%, #E8C97A 100%);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.15);
  --shadow-gold-hover: 0 12px 40px rgba(201, 168, 76, 0.3);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================
   RESETS & GLOBAL SETUP
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1.05rem;
  color: var(--color-text-gray);
}

strong {
  font-weight: 700;
}

/* Gold Gradient text class for strong elements inside headers */
.title-highlight {
  font-weight: 400;
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Small section labels */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Unified nested badge capsule (matching the user print) */
.custom-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 4px 16px 4px 4px;
  gap: 12px;
  margin-bottom: 1.5rem;
  max-width: max-content;
  vertical-align: middle;
}

.badge-tag {
  background: var(--gradient-gold);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}

/* Modifier for light theme background sections (like Section 7) */
.light-theme-badge {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme-badge .badge-text {
  color: var(--color-text-black) !important;
}

/* Subheadings */
.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 1rem auto 0 auto;
}

/* ==========================================
   LAYOUT HELPER CLASSES
   ========================================== */
.section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-black);
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: max-content;
  max-width: 100%;
}

.btn-cta-text {
  background: var(--gradient-gold);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.1rem 2.2rem;
  border-radius: 9999px;
  transition: var(--transition-smooth);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.btn-cta-arrow {
  width: 52px;
  height: 52px;
  color: var(--color-gold-light);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-gold-hover);
  border-color: var(--color-gold);
}

.btn-cta:hover .btn-cta-text {
  background: var(--gradient-gold-hover);
}

.btn-cta:hover .btn-cta-arrow {
  transform: translate(2px, -2px);
  color: var(--color-text-white);
}

.btn-cta:active {
  transform: translateY(0) scale(1);
}

/* CTA Pulse Effect */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.btn-pulse {
  animation: ctaPulse 2s infinite;
}

/* ==========================================
   SECTION SEPARATORS (SVG DIVIDERS)
   ========================================== */
.svg-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 1;
}

.svg-divider-bottom {
  bottom: 0;
}

.svg-divider-top {
  top: 0;
}

.svg-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.svg-divider path {
  fill: var(--color-black);
}

/* Fine Gold separator line */
.gold-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0) 0%, rgba(201, 168, 76, 0.4) 50%, rgba(201, 168, 76, 0) 100%);
  margin: 0;
  position: relative;
}

/* ==========================================
   SCROLL ANIMATION CLASSES (Intersection Observer)
   ========================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================
   SECTION 1: HERO
   ========================================== */
#hero {
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-black);
  padding-top: 180px;
  padding-bottom: 180px;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* Default Desktop Image */
  background-image: url("image/banner hero section gui desktop.png");
}

/* Wide Screens Override */
@media (min-width: 1440px) {
  .hero-bg-wrapper {
    background-image: url("image/banner hero section gui wide.png");
  }
}

/* Mobile Screens Override */
@media (max-width: 767px) {
  .hero-bg-wrapper {
    background-image: url("image/banner hero section gui mobile.png");
    background-position: center top;
  }
}

/* Mantém o container de texto posicionado acima das imagens de fundo */
#hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px; /* Limita a largura do texto para não colidir com o banner */
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 540px;
}

.hero-cta-group {
  margin-top: 1.5rem;
}

.hero-credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-credibility span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-credibility span::before {
  content: '✦';
  color: var(--color-gold);
}

/* ==========================================
   SECTION 2: GANCHO / DOR
   ========================================== */
#dor {
  background-color: var(--color-black);
  padding-bottom: 0;
}

.dor-card-container {
  background: var(--color-bg-alt);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dor-card-body {
  padding: 4rem 4rem 2rem 4rem;
  align-items: stretch;
  gap: 60px;
}

.dor-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.section-label-pill {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold-light);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-block;
}

.dor-card-left h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.dor-card-desc {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.dor-card-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dor-capsules-container {
  background: var(--color-black);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.dor-capsule {
  background-color: var(--color-gold-light);
  color: var(--color-black);
  padding: 0.85rem 1.5rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.dor-capsule:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 15px rgba(232, 201, 122, 0.3);
}

.dor-capsule-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dor-capsule-text {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: var(--color-black) !important;
}

.dor-capsule-text strong {
  font-weight: 700;
  color: var(--color-black) !important;
}

.dor-footer-bar {
  background: #080808;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background-image: radial-gradient(ellipse at top, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.8), 0 -8px 25px rgba(0, 0, 0, 0.5);
}

.dor-marquee {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: dorMarquee 25s linear infinite;
}

.dor-marquee span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 2rem;
  color: var(--color-gold-light);
  opacity: 0.85;
  text-shadow: 0 0 8px rgba(232, 201, 122, 0.1);
}

@keyframes dorMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@media (max-width: 768px) {
  .dor-card-body {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    gap: 30px;
  }
  .dor-card-left h2 {
    font-size: 2.25rem;
  }
  .dor-card-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .dor-capsules-container {
    padding: 1.5rem;
    gap: 0.75rem;
    height: auto;
  }
  .dor-capsule {
    padding: 0.75rem 1rem;
  }
  .dor-capsule-text {
    font-size: 0.95rem;
  }
}

/* ==========================================
   SECTION 3: VIRADA / SOLUÇÃO
   ========================================== */
#virada {
  background: var(--color-black);
  padding-top: 180px;
}

#virada .container {
  align-items: stretch;
}

.virada-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.virada-left h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.virada-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
  width: 100%;
}

.virada-list-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.virada-list-item:hover {
  transform: translateX(5px);
}

.virada-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.virada-list-text {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  font-weight: 300;
}

.virada-list-text strong {
  color: var(--color-text-white);
  font-weight: 500;
}

.virada-quote-block {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.virada-quote-text {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  font-weight: 300;
}

.virada-cta-group {
  width: 100%;
}

.virada-right {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr auto;
  gap: 20px;
  align-items: stretch;
  height: 100%;
}

.virada-photo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  height: 100%;
}

.virada-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.virada-photo:hover img {
  transform: scale(1.03);
}

.virada-card-vertical {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: var(--color-black);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
  height: 100%;
}

.virada-card-vertical:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}

.virada-card-num {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.virada-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.5;
  font-weight: 300;
}

.virada-card-horizontal {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  background: var(--color-black);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.virada-card-horizontal:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}

.virada-card-horiz-text {
  text-align: left;
}

.virada-card-title-small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.virada-card-desc-large {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-white);
  line-height: 1.4;
}

.virada-card-horiz-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.virada-card-horizontal:hover .virada-card-horiz-badge {
  transform: rotate(15deg) scale(1.05);
}

@media (max-width: 768px) {
  .virada-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .virada-photo {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 280px;
  }
  .virada-card-vertical {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 2rem 1.5rem;
  }
  .virada-card-horizontal {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .virada-card-horiz-text {
    text-align: center;
  }
}

/* ==========================================
   SECTION 4: O QUE VOCÊ VAI APRENDER
   ========================================== */
#aprender {
  background-color: var(--color-black);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.1) 0%, var(--color-gold) 15%, var(--color-gold) 85%, rgba(201, 168, 76, 0.1) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 2.5rem;
  z-index: 2;
}

.timeline-item.timeline-left {
  align-self: flex-start;
  padding-right: 45px;
}

.timeline-item.timeline-right {
  align-self: flex-end;
  padding-left: 45px;
}

.timeline-node {
  position: absolute;
  top: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
  transition: var(--transition-smooth);
  color: var(--color-gold);
  padding: 11px;
}

.timeline-node svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.timeline-left .timeline-node {
  right: -23px;
}

.timeline-right .timeline-node {
  left: -23px;
}

.timeline-card {
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.timeline-left .timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 65px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
  z-index: 5;
  pointer-events: none;
}

.timeline-right .timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 65px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
  z-index: 5;
  pointer-events: none;
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: 40px;
  width: 12px;
  height: 12px;
  background: var(--color-bg-alt);
  transform: rotate(45deg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.timeline-left .timeline-card::after {
  right: -7px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-right .timeline-card::after {
  left: -7px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.1);
  background: var(--gradient-gold);
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  border-color: var(--color-gold-light);
}

.timeline-item:hover .timeline-node svg {
  stroke: var(--color-black);
}

.timeline-step {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-gold-light);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.timeline-footer {
  margin-top: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.timeline-footer-text {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-gray);
  margin: 0 auto;
}

.timeline-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ==========================================
   DIVISOR CRUZADO COM CARROSSEL CONTÍNUO
   ========================================== */
.crossed-marquee-container {
  position: relative;
  height: 200px; /* Reduz a altura para aproximar as faixas */
  background: var(--color-black);
  overflow: hidden;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.marquee-band {
  position: absolute;
  left: -10%;
  right: -10%;
  width: 120%;
  height: 74px; /* Mais larga na altura (era 58px) */
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

/* Faixa da frente (Dourada com transparência e muito Blur) */
.band-asc {
  top: calc(50% - 37px);
  transform: rotate(-1.8deg) translateZ(20px); /* Ângulo menor para ficarem mais juntas */
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.25) 50%, rgba(201, 168, 76, 0.15) 100%);
  color: var(--color-gold-light);
  z-index: 3;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(201, 168, 76, 0.05);
}

.band-asc .marquee-text-block span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light) !important;
  text-shadow: 0 0 12px rgba(232, 201, 122, 0.3);
}

/* Faixa de trás (Mais escura, desfocada com blur CSS e mais profunda) */
.band-desc {
  top: calc(50% - 37px);
  transform: rotate(1.8deg) translateZ(-50px); /* Ângulo menor para ficarem mais juntas */
  background: rgba(15, 15, 15, 0.7); /* Menos transparente */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  opacity: 0.75; /* Aumentado de 0.45 para 0.75 para melhor visibilidade */
  filter: blur(2px); /* Desfoque ligeiramente suavizado */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.band-desc .marquee-text-block span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6) !important; /* Cor com contraste melhorado */
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: crossed-marquee-scroll 35s linear infinite;
  align-items: center;
}

.band-desc .marquee-track {
  animation-direction: reverse;
  animation-duration: 40s;
}

.marquee-text-block {
  display: flex;
  flex-shrink: 0;
  gap: 2rem;
  white-space: nowrap;
}

@keyframes crossed-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}



/* ==========================================
   SECTION 5: PARA QUEM É
   ========================================== */
#para-quem {
  background-color: var(--color-black);
}

.para-quem-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.para-quem-header-left {
  max-width: 800px;
}

.para-quem-header-left p {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.para-quem-header-right {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.badge-cta-btn {
  background: var(--color-black);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--color-gold-light);
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  cursor: default;
  display: inline-block;
}

.badge-cta-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-text-white);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-1px);
}

.cyber-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.cyber-card {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.03); /* Borda geral sutil */
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Premium Top Border Highlight */
.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 80px; /* Largura do traço iluminado */
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.8), 0 0 5px rgba(201, 168, 76, 0.4);
  z-index: 5;
  pointer-events: none;
}

/* Cyber corners notch cut style using clip-path as in the reference print */
.cyber-card.card-1 {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.cyber-card.card-2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.cyber-card.card-3 {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.cyber-card.card-4 {
  border-radius: 24px; /* normal */
}

.cyber-card.card-5 {
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

.cyber-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
  transform: translateY(-5px);
}

.cyber-card.large-card {
  grid-column: span 3;
  min-height: 460px;
}

.cyber-card.small-card {
  grid-column: span 2;
  min-height: 430px;
}

.cyber-card-content {
  position: relative;
  z-index: 2;
}

.cyber-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.cyber-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.cyber-card-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}



.cyber-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.small-card .cyber-card-content {
  margin-top: auto;
}

.cyber-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.cyber-card:hover .cyber-card-img-wrapper img {
  transform: scale(1.05);
}

/* ==========================================
   SECTION 6: VOCÊ NÃO PRECISA DE...
   ========================================== */
#nao-precisa {
  background-color: var(--color-black);
  position: relative;
}

.nao-precisa-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.nao-precisa-left {
  display: flex;
  flex-direction: column;
}

.nao-precisa-left h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
}

.badge-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.badge-pill {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
}

.badge-pill.active {
  background: var(--gradient-gold);
  color: var(--color-black);
}

.badge-pill.outline {
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--color-gold);
  background: transparent;
}

.nao-precisa-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nao-precisa-bar-item {
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  transition: var(--transition-smooth);
}

.nao-precisa-bar-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(6px);
  background: rgba(201, 168, 76, 0.02);
}

.nao-precisa-bar-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-white);
  font-weight: 400;
  line-height: 1.5;
}

.nao-precisa-right {
  position: relative;
}

.nao-precisa-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nao-precisa-myth-card {
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.nao-precisa-myth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 65px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
  z-index: 5;
  pointer-events: none;
}

.nao-precisa-myth-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold-hover);
}

.myth-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myth-icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: radial-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.02) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px rgba(201, 168, 76, 0.05), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.myth-svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold-light);
}

.nao-precisa-myth-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0;
}

.nao-precisa-myth-card p {
  font-size: 0.92rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ==========================================
   SECTION 7: RESULTADOS (OFF-WHITE SECTION)
   ========================================== */
#resultados {
  background-color: var(--color-bg-light);
  color: var(--color-text-black);
}

#resultados h2 {
  color: var(--color-text-black);
}

#resultados .section-subtitle {
  color: #555555;
}

.resultados-3x2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4rem;
}

.resultado-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.25rem 2rem 2.25rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.resultado-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 65px; /* Largura do traço iluminado */
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
  z-index: 5;
  pointer-events: none;
}

.resultado-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.2);
}

/* Icon box — gold-tinted square */
.resultado-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.resultado-icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
}

.resultado-card:hover .resultado-icon-box {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}

/* Card text content */
.resultado-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resultado-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0;
}

.resultado-card-body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.65;
  margin: 0;
}

/* Image card */
.resultado-card.resultado-card-image {
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

.resultado-card.resultado-card-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border: none;
}

.resultado-card.resultado-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resultado-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.25rem;
}

.resultado-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.resultado-image-badge svg {
  color: var(--color-gold);
}

/* ==========================================
   SECTION 8: DEPOIMENTOS (CARROSSEL)
   ========================================== */
#depoimentos {
  background-color: var(--color-black);
}

#depoimentos .svg-divider-top path {
  fill: var(--color-bg-light); /* #F5F0E8 */
}

/* Header layout with navigation on the right */
.depoimentos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
}

.depoimentos-header-left {
  text-align: left;
  max-width: 75%;
}

.depoimentos-header-right {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.carrossel-viewport {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  position: relative;
  overflow: hidden;
}

.carrossel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  gap: 24px;
}

.depoimento-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tablet & Mobile responsiveness for 3-column carousel */
@media (max-width: 991px) {
  .depoimento-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
  .depoimentos-header-left {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .depoimentos-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .depoimentos-header-left {
    max-width: 100%;
  }
  .depoimentos-header-right {
    align-self: flex-end;
    padding-bottom: 0;
  }
  .depoimento-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .video-mockup {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-mockup {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #0D0D0D;
  background-image: linear-gradient(135deg, #111111 0%, #050505 100%);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.video-mockup:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.video-mockup img,
.video-mockup video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.video-mockup:hover img,
.video-mockup:hover video {
  opacity: 0.75;
  transform: scale(1.03);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: var(--transition-smooth);
}

.video-mockup:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.6);
  background: var(--gradient-gold-hover);
}

/* Quote and client name styling */
.depoimento-quote {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  max-width: 600px;
  line-height: 1.7;
  color: var(--color-text-white);
  margin-bottom: 1.5rem;
}

.depoimento-author {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Carousel navigation elements */
.carrossel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carrossel-nav-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.25rem;
}

.carrossel-nav-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.carrossel-nav-btn:active {
  transform: scale(0.95);
}

.carrossel-dots {
  display: flex;
  gap: 0.75rem;
}

.carrossel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.carrossel-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

/* ==========================================
   SECTION 9: INVESTIMENTO / OFERTA
   ========================================== */
#oferta {
  background-color: var(--color-black);
}

/* Split two-column layout */
.oferta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Outer card wrapper — the whole container becomes a card */
.oferta-card {
  background: var(--color-bg-alt);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 28px;
  padding: 4rem 4rem;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle corner gradient glow */
.oferta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- LEFT COLUMN ---- */
.oferta-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.oferta-left h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.oferta-left-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-gray);
  line-height: 1.65;
  margin: 0;
}

/* Benefit list with pill items */
.oferta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.oferta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-text-white);
  transition: var(--transition-smooth);
}

.oferta-benefits li:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.25);
}

.oferta-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oferta-benefit-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

/* ---- RIGHT COLUMN: TICKET CARD ---- */
.oferta-right {
  display: flex;
  justify-content: center;
}

.oferta-ticket {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  width: 100%;
  box-shadow:
    inset 0 1px 0 rgba(201, 168, 76, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.oferta-ticket-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.price-anchor {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.price-anchor s {
  color: var(--color-text-muted);
}

.price-main {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0.5rem 0;
}

.price-main .label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-main .value {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-main .details {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-white);
  letter-spacing: 0.06em;
}

/* Mini feature badges inside ticket */
.oferta-mini-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.oferta-mini-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-gray);
}

.oferta-mini-badges svg {
  color: var(--color-gold);
}

/* Trust seals row */
.oferta-trust-seals {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.trust-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
}

.trust-seal svg {
  color: var(--color-gold);
}

.trust-seal span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.3;
}

/* Perforated ticket divider */
.oferta-ticket-divider {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}

.ticket-notch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-black);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ticket-notch-left {
  margin-left: -10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: none;
}

.ticket-notch-right {
  margin-right: -10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
}

.ticket-dashed-line {
  flex: 1;
  border-top: 1.5px dashed rgba(201, 168, 76, 0.2);
}

/* Ticket footer */
.oferta-ticket-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.oferta-ticket-footer svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* CTA full width inside ticket */
#btn-oferta-cta {
  width: 100%;
}

/* ==========================================
   SECTION 10: GARANTIA
   ========================================== */
#garantia {
  background-color: var(--color-black);
  overflow: hidden;
}

/* Split layout: coin left, text right */
.garantia-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 0;
  min-height: 380px;
}

/* ---- LEFT: Coin column ---- */
.garantia-coin-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

/* Ambient gold glow behind the coin */
.garantia-coin-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.garantia-coin-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(201, 168, 76, 0.2));
  animation: coinFloat 4s ease-in-out infinite;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}

/* ---- RIGHT: Text column ---- */
.garantia-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0 3rem 2rem;
}

.garantia-badge {
  align-self: flex-start;
  background: rgba(201, 168, 76, 0.08) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: var(--color-gold) !important;
}

.garantia-badge .badge-text {
  color: var(--color-gold) !important;
}

.garantia-text-col h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--color-text-white);
  margin: 0;
}

.garantia-text-col p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}


/* ==========================================
   SECTION 11: DECISÃO FINAL (COMPARATIVE)
   ========================================== */
#decisao {
  background-color: var(--color-black);
}

.decisao-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch; /* Garante mesma altura para ambos os cards */
  gap: 30px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.decisao-card {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden; /* Mantém os cantos arredondados do header cortados */
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.decisao-card-sem {
  background: #111111;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Glowing top border for Sem o Método (Gray glow) */
.decisao-card-sem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  z-index: 10;
  pointer-events: none;
}

.decisao-card-com {
  background: #0d0d0d;
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.05);
}

/* Header bar like the reference */
.decisao-card-header {
  padding: 1.5rem 2rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.decisao-card-sem .decisao-card-header {
  background: #252525;
  color: #dddddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.decisao-card-com .decisao-card-header {
  background: var(--gradient-gold);
  color: var(--color-black);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.decisao-card-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
}

/* Sem o Método: Ícones e textos em tons cinza menos chamativos */
.decisao-card-sem .decisao-list-icon {
  color: #555555;
  font-weight: bold;
}
.decisao-card-sem .decisao-list-text {
  color: #888888;
}

.decisao-card-com::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, #C9A84C, transparent 50%, #E8C97A);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Com o Método: Destaque dourado nos ícones e textos */
.decisao-card-com .decisao-list-icon {
  color: var(--color-gold);
  font-weight: bold;
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

.decisao-card:hover {
  transform: translateY(-5px);
}

.decisao-card-sem:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.decisao-card-com:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

/* X Separator Styling */
.decisao-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 5;
}

.decisao-separator-line {
  width: 1px;
  flex-grow: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(201, 168, 76, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

.decisao-separator-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  margin: 1.5rem 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.decisao-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.decisao-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  line-height: 1.5;
}

.decisao-list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.decisao-list-text {
  font-size: 1.05rem;
  color: var(--color-text-gray);
  font-weight: 300;
}

.decisao-card-com .decisao-list-text {
  color: var(--color-text-white);
}

.decisao-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

/* ==========================================
   SECTION 12: FAQ (ACCORDION)
   ========================================== */
#faq {
  background-color: var(--color-black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.faq-list {
  max-width: 850px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Apenas linha divisória fina inferior */
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 2rem 1rem; /* Sem padding lateral grande */
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-text-white);
  transition: var(--transition-smooth);
  gap: 2rem;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.25rem; /* Fonte um pouco maior e mais limpa */
  font-weight: 400;
  line-height: 1.4;
  color: #eeeeee;
  transition: var(--transition-smooth);
}

.faq-trigger:hover .faq-question {
  color: var(--color-gold-light); /* Hover sutil no título */
}

.faq-icon-wrapper {
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05); /* Círculo sutil atrás do ícone */
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-trigger:hover .faq-icon-wrapper {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-icon-wrapper svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
}

/* Accordion body sliding transition container */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer {
  padding: 0 1rem 2rem 1rem; /* Alinhado perfeitamente com a pergunta */
  font-size: 1.05rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  font-weight: 300;
}

/* Active FAQ Item styling */
.faq-item.active {
  border-bottom-color: rgba(201, 168, 76, 0.3); /* Linha ativa ganha cor de destaque */
}

.faq-item.active .faq-content {
  max-height: 1000px; /* Alvo seguro para expansão flexível */
  opacity: 1;
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}
}

/* ==========================================
   FOOTER (Floating Card Layout)
   ========================================== */
footer {
  background-color: var(--color-black);
  padding: 60px 20px 80px 20px;
  position: relative;
  overflow: hidden;
}

.footer-card {
  background: var(--color-bg-alt);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(201, 168, 76, 0.08);
  margin-bottom: 20px;
}

/* Left Column: Logo */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer-brand {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  opacity: 0.8;
}

/* Middle Column: Copyright/Legal */
.footer-middle {
  flex-grow: 1;
  text-align: left;
}

.footer-middle p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-white);
  line-height: 1.4;
  margin: 0 0 0.25rem 0;
}

.footer-middle p strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.footer-sub-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  display: block;
}

/* Right Column: Instagram Link */
.footer-right {
  flex-shrink: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--color-text-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.footer-social-icon svg {
  color: var(--color-gold-light);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-1px);
}

.footer-social-link:hover .footer-social-icon {
  background: var(--gradient-gold);
}

.footer-social-link:hover .footer-social-icon svg {
  color: var(--color-black);
}

@media (max-width: 991px) {
  .footer-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-left, .footer-middle, .footer-right {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

/* ==========================================
   RESPONSIVE LAYOUTS (MOBILE-FIRST)
   ========================================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .grid-2, .grid-3, .grid-4 {
    gap: 30px;
  }
  
  .para-quem-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .cyber-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cyber-card.large-card, .cyber-card.small-card {
    grid-column: span 1;
    min-height: 420px;
  }

  .nao-precisa-wrapper {
    gap: 40px;
    grid-template-columns: 1fr 1.1fr;
  }
  
  .nao-precisa-left h2 {
    font-size: 2.25rem;
  }

  .resultados-3x2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .oferta-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .oferta-card {
    padding: 3rem 2.5rem;
  }

  .oferta-left h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --border-radius-lg: 16px;
  }
  
  .section {
    padding: 50px 16px;
  }
  
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.3rem; }
  
  .hero-content h1 {
    font-size: 2.1rem;
    word-wrap: break-word;
  }

  /* ── Mobile buttons: full-width & centered ─────────────────────────────── */
  .btn-cta {
    width: 100%;
    max-width: 100%;
    display: flex;
    box-sizing: border-box;
  }

  /* All button wrapper containers: full-width + centred */
  .hero-cta-group,
  .dor-cta-group,
  .virada-cta-group,
  .timeline-cta-wrapper,
  .para-quem-header-right,
  .decisao-cta-container,
  .virada-list + .virada-quote-block + .virada-cta-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* "Para quem é" section badge-button also full-width */
  .badge-cta-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .btn-cta-text {
    font-size: 0.82rem;
    padding: 0.85rem 1.25rem;
    letter-spacing: 0.05em;
  }

  .btn-cta-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  
  /* Prevent badge overflow */
  .custom-badge {
    max-width: 100%;
    box-sizing: border-box;
    padding: 3px 12px 3px 3px;
    gap: 8px;
    margin-bottom: 1rem;
  }
  
  .badge-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  
  .badge-text {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  #hero {
    padding-top: 260px;
    padding-bottom: 40px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-credibility {
    justify-content: center;
    gap: 0.75rem;
  }
  
  /* Capsule adjust on mobile to look good when wrapping */
  .dor-capsule {
    border-radius: 20px;
    padding: 0.85rem 1.25rem;
    gap: 0.75rem;
  }
  
  .dor-capsule-text {
    font-size: 0.92rem;
  }
  
  /* Timeline alignments */
  .timeline-line {
    left: 23px;
    transform: none;
  }
  
  .timeline-item {
    width: 100%;
    align-self: flex-start !important;
    margin-left: 0 !important;
    padding-left: 55px !important;
    padding-right: 0 !important;
    margin-bottom: 2rem;
  }

  .timeline-node {
    left: 0 !important;
    right: auto !important;
  }

  .timeline-card {
    padding: 1.75rem;
    background: rgba(13, 13, 13, 0.8) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .timeline-card::before {
    left: 1.75rem !important;
    right: auto !important;
    transform: none !important;
  }

  .timeline-card::after {
    left: -7px !important;
    right: auto !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-right: none !important;
  }
  
  /* Crossed marquee layout on mobile */
  .crossed-marquee-container {
    height: 150px;
  }
  
  .marquee-band {
    height: 58px;
    width: 140%;
    left: -20%;
  }
  
  .band-asc {
    top: calc(50% - 29px);
    transform: rotate(-2deg);
  }
  
  .band-desc {
    top: calc(50% - 29px);
    transform: rotate(2deg);
  }
  
  .band-asc .marquee-text-block span,
  .band-desc .marquee-text-block span {
    font-size: 0.9rem;
  }

  .cyber-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cyber-card.large-card, .cyber-card.small-card {
    grid-column: span 1;
    min-height: 280px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push text to bottom so it does not conflict with absolute top illustrations */
  }

  .cyber-card.large-card {
    justify-content: flex-start; /* Large card has image at bottom */
  }
  
  .large-card .cyber-card-img-wrapper {
    height: 100%;
    margin-top: 0;
  }

  .nao-precisa-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nao-precisa-left .custom-badge {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .nao-precisa-left h2 {
    font-size: 1.85rem;
    text-align: center;
  }
  
  .nao-precisa-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .resultados-3x2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .resultado-card {
    padding: 1.75rem 1.25rem 1.5rem 1.25rem;
    min-height: 180px;
  }

  .resultado-card::before {
    left: 1.25rem !important;
    transform: none !important;
  }

  .resultado-num {
    font-size: 2.75rem;
  }
  
  .decisao-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .decisao-separator {
    flex-direction: row;
    height: auto;
    width: 100%;
    margin: 10px 0;
  }
  
  .decisao-separator-line {
    width: auto;
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(201, 168, 76, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  }
  
  .decisao-separator-badge {
    margin: 0 1rem;
  }
  
  .decisao-card {
    padding: 0;
  }

  .decisao-card-body {
    padding: 2rem 1.5rem;
  }

  .oferta-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .oferta-card {
    padding: 2rem 1.25rem;
  }
  
  .oferta-left {
    align-items: center;
    text-align: center;
  }

  .oferta-left .custom-badge {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .oferta-left h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
    text-align: center;
  }

  .oferta-ticket-body {
    padding: 1.75rem 1rem;
  }

  .oferta-mini-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .oferta-ticket .btn-cta-text {
    font-size: 0.76rem;
    padding: 0.85rem 1rem;
  }

  .oferta-ticket .btn-cta-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .price-main .value {
    font-size: 3.2rem;
  }

  .garantia-split {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .garantia-coin-img {
    max-width: 240px;
  }

  .garantia-text-col {
    padding: 0 0 2rem 0;
    align-items: center;
    text-align: center;
  }

  .garantia-badge {
    align-self: center;
  }

  .garantia-text-col p {
    max-width: 100%;
  }
  
  .faq-trigger {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }
  
  .faq-question {
    font-size: 1.05rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem 1.5rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .video-mockup {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .depoimento-quote {
    font-size: 1.05rem;
    padding: 0 10px;
  }

  .depoimentos-header {
    text-align: center !important;
  }

  .depoimentos-header-left {
    text-align: center !important;
    width: 100% !important;
  }

  .depoimentos-header-left .custom-badge {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .depoimentos-header-left h2 {
    text-align: center !important;
  }

  .depoimentos-header-left .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .depoimentos-header-right {
    align-self: center !important;
    justify-content: center !important;
    display: flex !important;
    width: 100% !important;
    margin-top: 1rem;
  }

  footer {
    padding: 40px 0 80px 0 !important;
  }

  .footer-card {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}

@media (max-width: 576px) {
  .nao-precisa-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resultados-3x2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .resultado-card.resultado-card-image {
    min-height: 220px;
  }

  .resultado-num {
    font-size: 2.5rem;
  }

  .nao-precisa-myth-card {
    padding: 1.5rem;
  }

  .nao-precisa-myth-card::before {
    left: 1.5rem;
    transform: none;
  }

  .decisao-card-body {
    padding: 2rem 1.25rem;
  }

  .decisao-list-text {
    font-size: 0.9rem;
  }

  .oferta-benefits li {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }
}
