@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;
  min-height: 100vh; /* Changed from fixed height to min-height */
}

main {
  width: 100%;
}

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* overflow removed to prevent clipping on long content */
  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-video {
  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;
}

/* Initial scale for animation */

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



.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: flex;
  justify-content: center;
  flex-wrap: wrap;
  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 {
  max-width: 320px;
  width: 100%;
}

.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;
}



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

.carousel-title-container h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff9900;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

.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: 250px;
  /* Reduced height for smaller logo items */
  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: 180px;
  /* Reduced width for logos */
  max-width: 180px;
  height: 120px;
  /* Horizontal aspect ratio for logos */
  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: contain;
  filter: brightness(0) invert(1);
  /* Make logos white */
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.carousel-item img[src*="agencia-alien"] {
  filter: none !important;
  /* Keep original colors for Alien */
}

.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 10 - Exclusive Section */

/* Slide 2.5 - Nossa Localização */
#location-section {
  padding: 8rem 2rem;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.location-image-container {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1);
  transition: all 0.5s ease;
}

.location-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 101, 7, 0.2);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: inherit;
}

.location-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.address-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.address-main {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #ff9900;
  text-transform: uppercase;
}

.address-reference {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
  font-weight: 300;
  font-style: italic;
}

.address-street {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 1;
}

@media (max-width: 768px) {
  .location-img {
    height: 350px;
  }

  .address-main {
    font-size: 1.6rem;
  }

  .address-reference {
    font-size: 1rem;
  }

  .address-street {
    font-size: 1.1rem;
  }
}

/* Slide 2.7 - Fundadores */
#founders-section {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #000, #0a0a0a);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 4 / 5;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.founder-image-wrapper:hover .founder-img {
  transform: scale(1.05);
}

.founder-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: inherit;
  z-index: 2;
}

.founder-info {
  text-align: left;
}

.founder-names {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.founder-bio {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #bbb;
  font-weight: 300;
  max-width: 500px;
}

@media (max-width: 992px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .founder-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .founder-names {
    font-size: 2.2rem;
  }

  .founder-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
}



/* 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);
}




/* 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;
  }
}



.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;
}



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

@media (max-width: 768px) {

  /* Globais e Espaçamentos */
  section {
    padding: 3rem 1.2rem !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 100vh !important;
    justify-content: flex-start !important;
  }

  #cover {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 56.25% !important; /* 16:9 ratio */
    position: relative !important;
    overflow: hidden !important;
  }

  .background-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
  }

  /* Adjust spacing for subsequent sections since cover is now shorter */
  #about {
    margin-top: 0;
  }

  .impact-carousel-wrapper {
    height: 480px !important; /* Extra room for mobile dots */
    margin-top: 1rem;
  }

  .impact-bullet-card {
    padding: 1.5rem !important;
    width: 100%;
  }

  .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 {
    max-width: 100%;
  }

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

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

  .carousel-item {
    min-width: 140px;
    max-width: 140px;
    height: 100px;
  }

  /* 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%;
  }
}