* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

body{
    background-color: oklch(20.5% 0 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.main-divide{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    min-height: 100vh;
}

.section-logo-menu{
    flex: 1 1 0%;
    place-items: center;
    border-right: 1px solid rgb(74, 74, 74);
    padding: 1rem;
}

.section-explicacao{
    flex: 3 1 0%;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 2rem;

}

.texto-deslizar {
  animation: deslizarEsquerda 1s ease-out forwards;
}

@keyframes deslizarEsquerda {
  from {
    opacity: 0;
    transform: translateX(200px); /* Começa 100px para a direita */
  }
  to {
    opacity: 1;
    transform: translateX(0);    /* Termina na posição original */
  }
}


.project-logo{
    place-items: center;
    position: sticky;
    top: 1rem;

}

.menu-section-list{
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    

}

.menu-link-container{
    margin-top: 10px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-link-container a{
    text-align: start;
    color: oklch(70.7% .165 254.624);
    margin-top: 5px;
    text-decoration: none;
    font-size: calc(1rem + 0.5vw);
}

.menu-link-container a:hover{
    text-decoration: underline;
}

.saira-stencil-font-cors {
  font-family: "Saira Stencil", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: white;
  font-size: 10vh;
  line-height: 1;
}

.saira-stencil-font-playground {
  font-family: "Saira Stencil", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 5vh;
  color: white;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.topic-title{
    font-size: 3rem ;
    color: #E1E1E1;
}

.sub-topic-title{
  font-size: 2rem ;
  color: #E1E1E1;
}

.text-section{
    padding: 20px 20px;
    width: min(920px, 92%);
    margin: 0 auto;
    margin-bottom: 1.5em;
}

p{
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #E1E1E1;
    text-align: justify;
    text-wrap: pretty;
    margin-bottom: 1.5em;
}

.div-img{
  display: flex;
  justify-content: center;
  width: 100%;   /* Metade da largura do elemento pai */
  height: auto;
  
  
}

.div-img img{
  width: min(70%, 100%);
  max-width: 100%;
  border: 1px solid rgb(255, 255, 164);
}

.countries{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.countries a{
  width: 20px;
  height: 20px;
}

.unordered-list-items{
  list-style: none;
  padding: 0;
  max-width: 400px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 1.5em;
}

.unordered-list-items li {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid #6366f1; /* Cor da barrinha lateral */
  color: #374151;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: justify;
}

.unordered-list-items li span {
  display: inline;
  color: #6366f1;
  text-decoration: underline;
  font-size: 1.5rem;
}



/* Efeito ao passar o mouse */
.unordered-list-items li:hover {
  transform: translateX(10px);
  background: #f5f3ff;
  border-left-color: #4f46e5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Opcional: Adicionando um check ou ícone antes do texto */
.unordered-list-items li::before {
  content: "✦";
  margin-right: 12px;
  color: #6366f1;
  font-weight: bold;
}

.details-design{
  color: #374151;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  margin-bottom: 1em;
}

p span{
  color: #6366f1;
  font-weight: bold;
  font-size: 1em;
  
}

div .fonte{
  display: flex;
  justify-content: center;
  font-size: 0.8em;
  color: #6366f1;
  
}

@media (max-width: 1024px) {
  .main-divide {
    flex-direction: column;
    overflow: visible;
  }

  .section-logo-menu {
    border-right: none;
    border-bottom: 1px solid rgb(74, 74, 74);
  }

  .section-explicacao {
    height: auto;
    overflow-y: visible;
  }

  .project-logo {
    position: static;
  }

  .menu-link-container {
    width: 100%;
    gap: 0.3rem;
  }

  .menu-link-container a {
    text-align: center;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  }

  .saira-stencil-font-cors {
    font-size: clamp(4rem, 11vw, 7rem);
    text-align: center;
  }

  .saira-stencil-font-playground {
    font-size: clamp(2rem, 6vw, 3.2rem);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .topic-title {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    line-height: 1.2;
  }

  .sub-topic-title {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }

  p {
    font-size: 1.4rem;
  }

  .text-section {
    width: 94%;
    padding: 1rem 0.4rem;
  }

  .div-img img {
    width: 100%;
  }

  .unordered-list-items {
    max-width: 100%;
  }

  .unordered-list-items li {
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
  }
}


