@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;800&display=swap');

:root {
  --bg-color: #0b0c10;
  --accent-color: #e86507;
  --accent-light: #ff9900;
  --accent-glow: rgba(232, 101, 7, 0.4);
  --gradient-accent: linear-gradient(135deg, #e86507 0%, #ff9900 100%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition-speed: 0.8s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: #fff;
  overflow-x: hidden;
  height: 100vh;
}

main {
  width: 100%;
}

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Fade Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.glow-text {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px var(--accent-glow));
  font-weight: 800;
}

/* Slide 1 - Cover (Capa) */
#cover {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  mix-blend-mode: soft-light;
  /* Soft light for a subtle glow */
  opacity: 0.8;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /* Allows interactivity through layers */
  z-index: 3;
}

.center-logo {
  max-width: 65%;
  max-height: 70%;
  object-fit: contain;
  /* Glow removed as per request */
  animation: float 5s ease-in-out infinite;
  transform: scale(0.85);
  /* Initial scale for animation */
  opacity: 0;
  /* Start invisible for script to animate */
}

.bottom-fade {
  position: absolute;
  bottom: -2px;
  /* Pull slightly down to avoid gap */
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 4;
}

.headline-capa {
  position: absolute;
  bottom: 15%;
  /* High enough to be above logos */
  left: 50%;
  transform: translateX(-50%);
  max-width: 610px;
  width: 50%;
  object-fit: contain;
  z-index: 5;
}

.bottom-logos {
  position: absolute;
  bottom: 8%;
  /* Relative bottom position */
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
  /* Reduced from 500px */
  width: 25%;
  /* Reduced from 40% */
  object-fit: contain;
  z-index: 5;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1.1);
  }

  50% {
    transform: translateY(-20px) scale(1.15);
  }
}

/* Slide 2 - Quem Somos */
#about {
  background: #000;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.content-container {
  max-width: 950px;
  /* Reduced from 1300px for larger margins */
  width: 90%;
  position: relative;
  z-index: 2;
}

/* Center Planet 3-Column Layout */
.planet-center-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  margin: 3rem 0;
}

.side-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  max-width: 380px;
}

.center-planet-container {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-planet {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(232, 101, 7, 0.4));
  animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.modern-card {
  position: relative;
  text-align: left;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.12) 0%, rgba(100, 100, 100, 0.05) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 153, 0, 0.2);
  border-left: 1px solid rgba(255, 153, 0, 0.1);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modern-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.15) 0%, rgba(100, 100, 100, 0.08) 100%);
  border-top: 1px solid rgba(255, 153, 0, 0.5);
  border-left: 1px solid rgba(255, 153, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(232, 101, 7, 0.2);
}


/* Counters Section - Estatísticas */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  width: 360px;
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.12) 0%, rgba(100, 100, 100, 0.05) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: 20px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.15) 0%, rgba(100, 100, 100, 0.08) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 101, 7, 0.3);
  border-top: 1px solid rgba(255, 153, 0, 0.8);
}

.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.stat-prefix {
  font-size: 1.2rem;
  color: #ff9900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 900;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Media Grid Section */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  align-items: center;
}

.media-card {
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.12) 0%, rgba(100, 100, 100, 0.05) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 153, 0, 0.4);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.media-card:hover {
  transform: translateY(-15px) scale(1.03) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 101, 7, 0.3);
  border-top: 1px solid rgba(255, 153, 0, 0.8);
  z-index: 10;
}

/* Cascading layout */
.media-card:nth-child(2) {
  transform: translateY(-25px);
}

/* Carousel Section Title */
.carousel-title-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}

.carousel-title-container h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 0 10px rgba(232, 101, 7, 0.3);
}

.orange-check {
  width: 28px;
  height: 28px;
  color: #ff9900;
  filter: drop-shadow(0 0 10px rgba(255, 153, 0, 0.6));
}

/* Slide 2 - Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
  /* Increased significantly to accommodate larger 4:5 items with zoom */
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0rem 0 0 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  align-items: center;
  gap: 2.5rem;
  /* Larger gap for visibility */
}

.carousel-item {
  min-width: 280px;
  /* Base width for larger carousel */
  max-width: 280px;
  height: 350px;
  /* 4:5 Aspect Ratio (280 * 1.25 = 350) */
  transition: all 0.5s ease;
  filter: blur(10px);
  /* completely blurred */
  opacity: 0;
  /* Hidden cleanly */
  transform: scale(0.7);
  pointer-events: none;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.carousel-item.active {
  filter: blur(0) !important;
  opacity: 1 !important;
  transform: scale(1.35) !important;
  /* Zoom in */
  z-index: 10;
  pointer-events: auto;
}

.carousel-item.side {
  filter: blur(4px) !important;
  /* Slight blur */
  opacity: 0.5 !important;
  transform: scale(0.95) !important;
  /* Slightly smaller than normal */
  pointer-events: auto;
}

.modern-card h3 {
  color: var(--accent-light);
  font-size: 1.1rem;
  /* Slightly smaller title */
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.modern-card p {
  font-size: 0.88rem;
  /* Slightly smaller text */
  line-height: 1.45;
  opacity: 0.9;
}

.modern-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 1024px) {
  .flex-layout {
    flex-direction: column;
  }

  .image-side {
    order: -1;
    margin-bottom: 2rem;
  }

  .info-grid.dual-col {
    grid-template-columns: 1fr;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-top: 2rem;
}

/* Slide 3 - Process Flow */
#how-it-works {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  overflow: hidden;
  padding: 5rem 0;
}

.process-track {
  position: relative;
  width: 100%;
  max-width: 1100px;
  /* Limit width to keep grid nicely packed */
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 68px;
  /* Aligned behind the smaller icons at the feet of the numbers */
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9900, #e86507, transparent);
  z-index: 0;
  opacity: 0.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.process-card {
  position: relative;
  text-align: left;
  /* Changed from center */
  padding: 3rem 2rem;
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.12) 0%, rgba(100, 100, 100, 0.05) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 153, 0, 0.3);
  border-left: 1px solid rgba(255, 153, 0, 0.1);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Changed from center */
  height: 100%;
}

.process-card:hover {
  transform: translateY(-15px);
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.15) 0%, rgba(100, 100, 100, 0.08) 100%);
  border-top: 1px solid rgba(255, 153, 0, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(232, 101, 7, 0.3);
}


.step-indicator {
  display: flex;
  align-items: flex-end;
  /* Icon aligns to the bottom */
  width: 100%;
  height: 90px;
  margin-bottom: 1.5rem;
  position: relative;
}

.step-num {
  font-weight: 900;
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(255, 153, 0, 0.12);
  /* Baixa opacidade conforme solicitado */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* Atrás do ícone */
}

.step-icon {
  width: 44px;
  height: 44px;
  color: #ff9900;
  position: relative;
  z-index: 1;
  /* Sobreposto ao número */
  margin-left: 35px;
  /* Aos pés do número */
  margin-bottom: 5px;
  filter: drop-shadow(0 0 15px rgba(232, 101, 7, 0.6));
}

.process-card h3 {
  color: var(--accent-light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  font-weight: 300;
}

/* Slide 4 - Benefit Chart Section */
#benefit {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  overflow: hidden;
  padding: 5rem 0;
}

.benefit-layout {
  display: flex;
  gap: 3rem;
  align-items: center;
  /* keep them vertically centered */
  width: 100%;
}

.benefit-text {
  flex: 1;
  padding: 3.5rem;
  text-align: left;
}

.benefit-chart {
  flex: 1.5;
  padding: 1rem;
  /* Reduced to tightly frame the image */
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.08) 0%, rgba(100, 100, 100, 0.03) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 153, 0, 0.3);
  border-left: 1px solid rgba(255, 153, 0, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-chart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Upward moving background effect */
.benefit-chart::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to top, transparent, rgba(255, 153, 0, 0.15), transparent);
  animation: moveUpConstant 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes moveUpConstant {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-150%);
  }
}

.chart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 360px;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.chart-grid-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

/* Line Chart SVG */
.line-chart-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

/* Upward SVG Background specific layer */
.chart-bg-anim {
  animation: fadePulse 3s ease-in-out infinite alternate;
}

@keyframes fadePulse {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 0.6;
  }
}

.chart-area {
  opacity: 0;
  animation: fadeInArea 2s ease forwards 0.5s;
}

/* Stroke animation (Draw curved line) */
.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInArea {
  to {
    opacity: 1;
  }
}

.chart-point {
  fill: #000;
  stroke: #ff9900;
  stroke-width: 3;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.chart-point.highlight-point {
  fill: #e86507;
  stroke: #fff;
  stroke-width: 4;
}

.chart-point.p1 {
  animation-delay: 0.2s;
}

.chart-point.p2 {
  animation-delay: 0.6s;
}

.chart-point.p3 {
  animation-delay: 1.0s;
}

.chart-point.p4 {
  animation-delay: 1.4s;
}

.chart-point.p5 {
  animation-delay: 1.8s;
}

/* Labels Layout */
.chart-labels-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}

.chart-col {
  position: relative;
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.chart-val {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.chart-val.highlight-val {
  font-size: 1.6rem;
  color: #e86507;
  text-shadow: 0 0 15px rgba(232, 101, 7, 0.8);
}

.chart-desc {
  position: absolute;
  bottom: -35px;
  font-size: 0.85rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.chart-col:nth-child(1) .chart-val {
  animation-delay: 0.4s;
}

.chart-col:nth-child(2) .chart-val {
  animation-delay: 0.8s;
}

.chart-col:nth-child(3) .chart-val {
  animation-delay: 1.2s;
}

.chart-col:nth-child(4) .chart-val {
  animation-delay: 1.6s;
}

.chart-col:nth-child(5) .chart-val {
  animation-delay: 2.0s;
}

/* Organic Streams Stack Section */
#organic-streams {
  padding: 10rem 2rem 6rem 2rem;
  /* Increased top padding for breathing room */
}

.organic-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Centralize items in the stack */
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.organic-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 3rem !important;
  text-align: left !important;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 160px;
}

.organic-item:hover {
  transform: translateX(15px);
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.15) 0%, rgba(100, 100, 100, 0.08) 100%);
  border-top: 1px solid rgba(255, 153, 0, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 101, 7, 0.2);
}

.organic-number {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 153, 0, 0.08);
  /* Low opacity background number */
  z-index: 0;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.organic-icon-wrapper {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.organic-icon {
  width: 100%;
  height: 100%;
  color: #ff9900;
  filter: drop-shadow(0 0 15px rgba(232, 101, 7, 0.6));
}

.organic-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.organic-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  font-weight: 300;
}

/* Slide 9 - Reorganized Demand Layout */
#market-demand {
  padding: 12rem 2rem 8rem;
  /* Increased top padding from 8rem */
  background: #000;
}

.demand-reorganized-layout {
  max-width: 1000px;
  margin: 0 auto;
}

/* Stats atop the pillars */
.demand-top-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.demand-top-stats .stat-card {
  flex: 1;
  max-width: 450px;
  padding: 3rem 2rem !important;
  text-align: center !important;
}

.demand-top-stats .stat-value {
  font-size: 2.2rem;
  /* Reduced from 3.2rem */
  text-align: center;
  margin-bottom: 0.3rem;
}

.demand-top-stats p {
  font-size: 1.1rem;
  opacity: 0.8;
  color: #ff9900;
  font-weight: 600;
}

/* Vertically stacked pillars */
.demand-stacked-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  /* Center the individual cards */
}

.stacked-pillar-card {
  position: relative;
  padding: 3rem 4rem !important;
  /* Side padding for better text balance */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  /* Narrower for better centering feel */
  transition: all 0.4s ease;
}

.pillar-ghost-num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 153, 0, 0.05);
  /* Very low opacity ghost num */
  font-family: 'Outfit', sans-serif;
  pointer-events: none;
  z-index: 0;
}

.pillar-content-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.pillar-text {
  flex: 1;
  text-align: left;
}

.pillar-text h4 {
  font-size: 1.6rem;
  color: #ff9900;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.pillar-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.85;
  font-weight: 300;
  max-width: 100%;
  /* Fill the 900px card */
}

.highlight-stacked {
  background: rgba(255, 153, 0, 0.05) !important;
  border: 1px solid rgba(255, 153, 0, 0.2) !important;
}

.highlight-stacked .pillar-icon-box {
  background: #ff9900;
  color: #000;
}

@media (max-width: 768px) {
  .demand-top-stats {
    flex-direction: column;
    align-items: center;
  }

  .pillar-content-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pillar-ghost-num {
    font-size: 6rem;
  }
}

/* Slide 10 - Exclusive Section */

/* Rotating Favicon Animation (Reused from Slide 2) */
.rotating-icon-container {
  animation: rotateFast 15s linear infinite;
  filter: drop-shadow(0 0 20px rgba(255, 153, 0, 0.3));
}

@keyframes rotateFast {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 968px) {
  .demand-split-grid {
    grid-template-columns: 1fr;
  }
}

/* Slide 10 - Exclusive Section */

/* Slide 7/8 - Exclusive Section */
#digital-assets {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
}

/* Highlight with Shine Effect */
.orange-highlight {
  color: #ff9900;
  position: relative;
  display: inline-block;
}

.shine-effect {
  background: linear-gradient(to right,
      #ff9900 20%,
      #ffcc33 40%,
      #ffffff 50%,
      #ffcc33 60%,
      #ff9900 80%);
  background-size: 200% auto;
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine-sweep 3s linear infinite;
}

@keyframes shine-sweep {
  to {
    background-position: 200% center;
  }
}

/* Reusable Border Beam Effect */
.border-beam-card {
  position: relative;
  overflow: hidden !important;
  border: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.border-beam-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      transparent 15%,
      rgba(255, 204, 51, 0.5) 20%,
      /* Light orange beam brightness */
      #ffcc33 25%,
      /* Peak light orange/yellow brightness */
      rgba(255, 204, 51, 0.5) 30%,
      /* Shimmer end */
      transparent 35%,
      transparent 100%);
  animation: rotate-beam 6s linear infinite;
  z-index: 0;
}

.border-beam-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(10, 10, 10, 0.92);
  /* Dark obsidian background for clarity */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: inherit;
  z-index: 1;
}

@keyframes rotate-beam {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Ensure content stays above effect */
.border-beam-card>* {
  position: relative;
  z-index: 10;
}

/* Specific Card Rules */
.digital-assets-card {
  max-width: 1000px !important;
  margin: 0 auto;
  padding: 6rem 4rem !important;
}

.stat-card.border-beam-card {
  flex: 1;
  min-width: 300px;
  padding: 3rem 2rem !important;
}

.card-content-pillar {
  text-align: center;
}

.accent-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(232, 101, 7, 0.2) 0%, transparent 100%);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff9900;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.accent-icon-box svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px #ff9900);
}

.text-group p {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}


.pulsing-bg {
  animation: blinkBackground 8s ease-in-out infinite;
}

@keyframes blinkBackground {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
    /* Breathing between 0.3 and 0.7 */
  }
}

/* Slide 8 - Exclusive Section */
#exclusive-slide {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exclusive-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.exclusive-pulse-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.exclusive-logo {
  max-width: 500px;
  /* Reduced to avoid upscaling */
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  /* Sharper rendering */
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 25px rgba(232, 101, 7, 0.5));
}

.exclusive-footer {
  margin-top: 2rem;
  opacity: 0.8;
  display: flex;
  justify-content: center;
}

.footer-logos {
  max-width: 280px;
  width: 100%;
  object-fit: contain;
}

@keyframes pulseLogo {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(232, 101, 7, 0.3));
  }

  50% {
    transform: scale(1.08);
    /* Slow subtle pulse */
    filter: drop-shadow(0 0 60px rgba(232, 101, 7, 0.6));
  }
}

/* Global Section Headlines */
.section-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  /* Reduced from 2.2rem */
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  /* Animated Light Gradient */
  background: linear-gradient(90deg,
      #e86507 0%,
      #ff9900 35%,
      #ffffff 50%,
      /* Shimmer light */
      #ff9900 65%,
      #e86507 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  text-shadow: 0 0 20px rgba(232, 101, 7, 0.4);
}


/* Slide 10 - Value Funnel Triangle */
#ecosystem-sync {
  padding: 6rem 2rem;
  background: #000;
  position: relative;
  overflow: hidden;
}

.sync-container.triangle-layout {
  position: relative;
  max-width: 1000px;
  height: 600px;
  /* Defined height for triangle positioning */
  margin: 0 auto;
}

.sync-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
  width: 280px;
  text-align: center;
}

/* Position the 3 nodes in a triangle */
.instagram-node {
  top: 50px;
  left: 50px;
}

.spotify-node {
  top: 50px;
  right: 50px;
}

.pix-node {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.node-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-values {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.node-main-val {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.highlighted-val {
  color: #ff9900;
  text-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
}

.node-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  font-weight: 600;
  margin-top: 2px;
}

/* Energy Flow SVG Triangular */
.energy-flow-svg.triangular-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.energy-particle {
  filter: blur(2px) drop-shadow(0 0 12px #ff9900);
}

/* High-Impact Reaction Pulse (Synced with JS) */
.node-pulse-active .node-icon-wrapper {
  transform: scale(1.25);
  box-shadow: 0 0 70px rgba(255, 153, 0, 0.5);
  border-color: #ff9900 !important;
  background: rgba(255, 153, 0, 0.15) !important;
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.node-pulse-active h3,
.node-pulse-active .node-main-val {
  color: #ff9900;
  transform: scale(1.05);
  transition: all 0.1s ease;
}

/* Responsive Triangle */
@media (max-width: 900px) {
  .sync-container.triangle-layout {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 4rem 0;
  }

  .sync-node {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .energy-flow-svg {
    display: none;
  }

  /* Hide complex SVG on mobile for simplicity */
}

/* Fix for icons */
.section-icon {
  width: 32px;
  height: 32px;
  color: #ff9900;
  filter: drop-shadow(0 0 15px rgba(232, 101, 7, 0.6));
}

/* Slide 4 (New) - O Impacto da Nossa Entrega */
#impact {
  padding: 6rem 2rem;
  background: #000;
}

.impact-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.impact-bullets {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.impact-bullet-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 3rem !important;
  text-align: left !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 140px;
}

.impact-bullet-card:hover {
  transform: translateX(15px);
  background: linear-gradient(145deg, rgba(200, 200, 200, 0.15) 0%, rgba(100, 100, 100, 0.08) 100%);
  border-top: 1px solid rgba(255, 153, 0, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 101, 7, 0.2);
}

.bullet-num {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 153, 0, 0.12);
  line-height: normal;
  flex-shrink: 0;
}

.bullet-text h3 {
  color: #ff9900;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bullet-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
  font-weight: 300;
}

.impact-carousel-wrapper {
  flex: 1.2;
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.impact-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.impact-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
  padding: 1.5rem;
}

.impact-img.active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ff9900;
  transform: scale(1.2);
}

@media (max-width: 968px) {
  .impact-layout {
    flex-direction: column;
  }

  .impact-carousel-wrapper {
    width: 100%;
    height: 400px;
  }
}

/* Slide 11 - O Novo Líder do Mercado */
#new-leader {
  padding: 8rem 2rem;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-layout {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.leader-text-card {
  flex: 1;
  text-align: left !important;
  padding: 4rem 3.5rem !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(40px) !important;
  -webkit-backdrop-filter: blur(40px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top: 1px solid rgba(255, 153, 0, 0.3) !important;
}

.leader-desc {
  margin-top: 2rem;
}

.leader-desc p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.leader-desc strong {
  color: #fff;
  font-weight: 700;
}

.leader-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-beam-container {
  position: relative;
  padding: 4px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  max-width: 750px;
  width: 100%;
}

.image-beam-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      transparent 20%,
      rgba(255, 153, 0, 0.5) 25%,
      #ffcc33 30%,
      rgba(255, 153, 0, 0.5) 35%,
      transparent 40%,
      transparent 100%);
  animation: rotate-beam 5s linear infinite;
  z-index: 0;
}

.image-beam-container::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #000;
  border-radius: inherit;
  z-index: 1;
}

.leader-img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

@media (max-width: 1024px) {
  .leader-layout {
    flex-direction: column;
    gap: 4rem;
  }
}

.section-description {
  color: #fff;
  max-width: 900px;
  margin: -1rem auto 4rem auto;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0.95;
  text-align: center;
  position: relative;
  z-index: 10;
}

.section-description strong {
  color: #fff;
  font-weight: 700;
}

.section-description em {
  font-style: italic;
  color: #ff9900;
}

/* Slide 12 - Escolha 2 Caminhos */
#two-paths {
  min-height: 100vh;
  width: 100%;
  padding: 8rem 2rem;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.paths-headline {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg,
      #e86507 0%,
      #ff9900 35%,
      #ffffff 50%,
      #ff9900 65%,
      #e86507 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  text-shadow: 0 0 20px rgba(232, 101, 7, 0.4);
}

.paths-cards-container {
  display: flex;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.path-card {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 3rem !important;
  min-height: 250px;
  overflow: hidden;
}

.path-num {
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 153, 0, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: 'Outfit', sans-serif;
}

.path-card:nth-child(1) .path-num {
  left: 20px;
  right: auto;
}

.path-content {
  position: relative;
  z-index: 10;
}

.path-content h3 {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Helper Class for Mobile Line Breaks */
.mobile-br {
  display: none;
}

@media (max-width: 768px) {

  /* Globais e Espaçamentos */
  section {
    padding: 4rem 1.5rem !important;
  }

  .content-container {
    width: 100% !important;
    padding: 0 !important;
  }

  .glass-card {
    padding: 1.8rem 1.5rem !important;
    margin: 0 auto;
    max-width: 100%;
  }

  /* Títulos e Textos */
  .section-headline {
    font-size: 1.4rem !important;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .section-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  /* Slide 1 - Capa */
  .center-logo {
    max-width: 90%;
  }

  .headline-capa {
    width: 90%;
    bottom: 22%;
  }

  .bottom-logos {
    width: 60%;
    bottom: 8%;
  }

  .bottom-fade {
    transform: scaleY(5);
    transform-origin: bottom;
  }

  /* Slide 2 - Quem Somos / Estatísticas / Midia */
  .planet-center-layout {
    flex-direction: column;
    gap: 2rem;
    margin: 1.5rem 0;
    text-align: center;
  }

  .center-planet-container {
    flex: 0 0 200px;
  }

  .rotating-planet {
    max-width: 220px;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .stat-card {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .media-card:nth-child(2) {
    transform: none !important;
  }

  /* Slide 2 - Carousel */
  .carousel-container {
    height: 450px;
  }

  .carousel-item {
    min-width: 220px;
    max-width: 220px;
    height: 275px;
  }

  /* Slide 3 - Processo */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-line {
    display: none;
  }

  .process-card {
    text-align: center !important;
    align-items: center !important;
  }

  .step-indicator {
    justify-content: center;
    height: 75px;
  }

  .step-num {
    font-size: 6rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-icon {
    margin-left: 0;
  }

  /* Slide 4 (Impacto) */
  .impact-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .impact-bullet-card {
    flex-direction: column;
    text-align: center !important;
    gap: 1rem;
  }

  .bullet-num {
    font-size: 4rem;
    margin-bottom: 0.5rem;
  }

  .impact-carousel-wrapper {
    width: 100%;
    height: 350px;
  }

  /* Slide 5 - Chart */
  .benefit-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .benefit-text {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .benefit-text h3 {
    font-size: 1.6rem !important;
  }

  .chart-container {
    height: 250px;
  }

  .chart-val {
    font-size: 0.9rem;
  }

  .chart-val.highlight-val {
    font-size: 1.2rem;
  }

  .chart-desc {
    font-size: 0.7rem;
    bottom: -25px;
  }

  /* Slide 6 - Organico */
  .organic-stack {
    gap: 1.5rem;
    padding: 0 !important;
  }

  .organic-item {
    flex-direction: column;
    text-align: center !important;
    padding: 2.5rem 1.5rem !important;
    gap: 1.5rem;
  }

  .organic-number {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    font-size: 5rem;
    line-height: 1;
  }

  .organic-icon-wrapper {
    margin: 0 auto;
  }

  /* Slide 7 - Parte Exclusiva */
  .exclusive-logo {
    max-width: 95%;
  }

  /* Slide 8 / 13 - Ativos / Final */
  .digital-assets-card {
    padding: 3rem 1.5rem !important;
    align-items: center;
    text-align: center;
  }

  .card-content-pillar h2 {
    font-size: 1.2rem !important;
  }

  .card-content-pillar p {
    font-size: 2.2rem !important;
  }

  #final-logos .digital-assets-card img {
    max-width: 85% !important;
  }

  /* Slide 9 - Demanda */
  .demand-top-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .demand-top-stats .stat-value {
    font-size: 2rem;
  }

  .mobile-br {
    display: block;
  }

  .stacked-pillar-card {
    padding: 2rem 1.5rem !important;
  }

  .pillar-content-row {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .pillar-text h4 {
    font-size: 1.4rem;
  }

  .pillar-ghost-num {
    font-size: 6rem;
    right: 10px;
    top: -5px;
  }

  /* Slide 10 - Sinergia */
  .sync-container.triangle-layout {
    height: auto;
    gap: 2rem;
    padding: 2rem 0;
  }

  .sync-node {
    position: static;
    transform: none !important;
    width: 100%;
  }

  .energy-flow-svg {
    display: none;
  }

  .node-icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .node-main-val {
    font-size: 1.6rem;
  }

  /* Slide 11 - Líder */
  .leader-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .leader-text-card {
    padding: 2.5rem 1.5rem !important;
    text-align: center !important;
  }

  .leader-desc {
    margin-top: 1.5rem;
  }

  /* Slide 12 - 2 Caminhos */
  .paths-headline {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .paths-cards-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
  }

  .path-card {
    padding: 2.5rem 1.5rem !important;
    min-height: auto;
  }

  .path-content h3 {
    font-size: 1.15rem;
  }

  .path-num {
    font-size: 8rem;
    top: -15px;
    right: 15px;
  }

  .path-card:nth-child(1) .path-num {
    left: 15px;
  }
}