/* ================= SLIDE 06: GESTÃO E TI ================= */
.slide-06-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  min-height: 100dvh;
  width: 100vw;
  position: relative;
  background-color: #0a1128;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

/* Fundo padrão Cachina */
.slide-06-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.slide-06-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

.slide-mgmt-content {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header Logo */
.mgmt-header {
  margin-bottom: 20px;
}

/* Layout Grid */
.mgmt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Título e Destaques */
.mgmt-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #e2e8f0;
}

.mgmt-title span {
  color: #0ea5e9;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  text-align: justify;
  hyphens: auto;
}

.mgmt-title .highlight-green {
  color: #10b981; /* Verde esmeralda para ROI/Custos */
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.mgmt-description {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 500px;
  text-align: justify;
  hyphens: auto;
}

/* Coluna de Features (Direita) */
.mgmt-features {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-indicator {
  width: 12px;
  height: 40px;
  background: #0ea5e9;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #e2e8f0;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #94a3b8;
}
/* ================= 6. RESPONSIVIDADE (MOBILE CORRIGIDA) ================= */
@media (max-width: 768px) {
  .slide-06-container {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 100dvh !important;
    padding: 40px 20px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    align-items: center;
  }

  /* Ajuste do Grid para coluna única */
  .mgmt-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

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

  .mgmt-title {
    font-size: 2.2rem; /* Reduz o título para caber no celular */
  }

  .mgmt-description {
    font-size: 1rem;
    margin: 20px auto 0;
  }

  /* Ajuste das Features */
  .mgmt-features {
    width: 100%;
    gap: 20px;
  }

  .feature-item {
    background: rgba(
      255,
      255,
      255,
      0.05
    ); /* Fundo leve para destacar no toque */
    padding: 15px;
    border-radius: 12px;
  }

  /* Footer Fixo no final do scroll */
  .slide-01-footer {
    position: relative !important;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
    width: 100%;
  }
}
/* =============================================================
   PÁGINA 02: VALORES (RESPONSIVIDADE BLINDADA TOTAL)
   ============================================================= */

.slide-02-container.values-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  height: 100vh;
  height: 100dvh; /* Altura dinâmica para iOS */
  width: 100vw;
  background-color: #0a1128;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* FUNDO E BRILHOS (IDÊNTICO AO SLIDE 01) */
.slide-02-container.values-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.slide-02-container.values-page::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* ... (Mantenha seus estilos de .sidebar-identity, .value-card, etc aqui) ... */

/* =============================================================
   6. RESPONSIVIDADE (VERTICAL - MOBILE & TABLET)
   ============================================================= */
@media (max-width: 1024px) {
  .slide-02-container.values-page {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    padding: 60px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  /* Remove efeitos pesados no mobile para fluidez */
  .slide-02-container.values-page::before,
  .slide-02-container.values-page::after {
    display: none;
  }

  .sidebar-identity {
    min-width: 100%;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .values-content {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .cards-wrapper {
    flex-direction: column; /* Empilha os cards */
    gap: 20px;
  }

  .value-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .slide-01-footer {
    position: relative;
    margin-top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =============================================================
   7. RESPONSIVIDADE (HORIZONTAL - LANDSCAPE)
   ============================================================= */
@media (max-height: 550px) and (orientation: landscape) {
  .slide-06-container.values-page {
    height: auto;
    min-height: 100dvh;
    padding: 30px;
    flex-direction: row; /* Volta para row para aproveitar a largura */
    align-items: flex-start;
  }

  .sidebar-identity {
    min-width: 200px;
    border-right: 1px solid rgba(14, 165, 233, 0.2);
    border-bottom: none;
    padding-bottom: 0;
  }

  .sidebar-identity .mini-logo {
    width: 120px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .cards-wrapper {
    flex-direction: row; /* Cards lado a lado no landscape */
    flex-wrap: wrap; /* Quebra se não couber */
    justify-content: center;
  }

  .value-card {
    flex: 1 1 200px; /* Base de 200px mas pode crescer */
    padding: 20px 15px;
  }

  .card-icon {
    font-size: 1.8rem;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }
}