/* ================= SLIDE ASSESSMENT ================= */
.slide-assessment-container {
  display: flex;
  flex-direction: column;
  padding: 60px;
  height: 100vh;
  width: 100vw;
  position: relative;
  background-color: #0a1128;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow-y: auto;
  align-items: center;
}

/* Efeito de Malha (Grid) - Exatamente do seu modelo */
.slide-assessment-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;
  pointer-events: none;
  z-index: 1;
}

/* Brilho Radial Centralizado - Exatamente do seu modelo */
.slide-assessment-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.15) 0%,
    rgba(99, 102, 241, 0.12) 40%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

.assessment-header {
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.assessment-title {
  font-size: 3rem;
  font-weight: 800;
  color: #e2e8f0;
}

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

.assessment-subtitle {
  color: #94a3b8;
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 1.1rem;
}

/* Grid de Cards */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 80px;
}

/* Card Unificado com Tom de Azul da Cachina */
.assessment-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.2); /* Borda azul sutil */
  border-left: 4px solid #0ea5e9; /* Destaque azul lateral */
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.assessment-card:hover {
  transform: translateY(-5px);
  border-color: #0ea5e9;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.05);
}

.assessment-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px 0;
  color: #e2e8f0;
}

.assessment-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.card-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

/* ================= RESPONSIVIDADE (MOBILE) ================= */
@media (max-width: 1024px) {
  .assessment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .slide-assessment-container {
    padding: 40px 20px;
    height: auto;
    min-height: 100vh;
  }
  
  .slide-assessment-container::before,
  .slide-assessment-container::after {
    display: none; /* Desativa efeitos pesados no mobile como no seu modelo */
  }

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .assessment-title { font-size: 2.2rem; }
  
  .slide-01-footer {
    position: relative;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 20px;
  }
}/* =============================================================
   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-08-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;
  }
}