<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vw 8vw;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000; /* Garante que o cabeÃ§alho fique acima de todo o conteÃºdo */
  }
  
  nav img {
    width: 150px;
    cursor: pointer;
  }
  
  nav .navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none; /* Remove os nÃºmeros ou marcadores */
    padding-left: 0; /* Remove o padding padrÃ£o da lista */
  }
  
  nav .navigation ul li {
    margin-left: 30px; /* Adiciona espaÃ§o entre os itens */
  }
  
  nav .navigation ul li a {
    text-decoration: none; /* Remove o sublinhado dos links */
    color: rgb(237, 237, 241); /* MantÃ©m a cor do texto padrÃ£o */
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav .navigation ul li a:hover {
    color: #fdc93b;
  }

  


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");

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

body {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* Global Tags */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

span {
  font-size: 0.9rem;
  color: #757373;
}

h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}


/* Home */
#home {
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 45, 0.7)), url(IMAGENS/back.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#home h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 20px; /* Adicionado para espaÃ§amento */
}

#home p {
  width: 50%;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.6; /* Melhora a legibilidade */
}

#home .btn {
  margin-top: 30px;
}

#home a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease; /* Adiciona transiÃ§Ã£o suave */
}

/* Estilo para o botÃ£o azul */
#home a.blue {
  color: #fff;
  background: rgb(21, 21, 100);
  border: 2px solid rgb(21, 21, 100); /* Adiciona borda para melhor contraste */
}

#home a.blue:hover {
  color: rgb(21, 21, 100);
  background: #fff;
  border-color: rgb(21, 21, 100); /* MantÃ©m a borda ao passar o mouse */
}

/* Estilo para o botÃ£o amarelo */
#home a.yellow {
  color: #fff;
  background: #fdc93b;
  border: 2px solid #fdc93b; /* Adiciona borda para melhor contraste */
}

#home a.yellow:hover {
  color: #fdc93b;
  background: #fff;
  border-color: #fdc93b; /* MantÃ©m a borda ao passar o mouse */
}

/* Responsividade */
@media (max-width: 768px) {
  #home h2 {
    font-size: 1.8rem; /* Reduz o tamanho da fonte em telas menores */
  }

  #home p {
    width: 80%; /* Aumenta a largura do texto em telas menores */
    font-size: 0.8rem; /* Reduz o tamanho da fonte */
  }

  #home a {
    padding: 10px 25px; /* Reduz o padding dos botÃµes em telas menores */
    font-size: 0.8rem;
  }
}
  
/* Features */
#features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
  }
  
  #features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem; /* EspaÃ§o entre os itens */
    margin-top: 20px;
  }
  
  #features .fea-box {
    background: #f9f9ff;
    text-align: center;
    padding: 30px 20px; /* EspaÃ§amento interno */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* TransiÃ§Ã£o suave */
  }
  
  #features .fea-box:hover {
    transform: translateY(-10px); /* Efeito de levantar ao passar o mouse */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
  }
  
  #features .fea-box i {
    font-size: 2.3rem;
    color: rgb(44, 44, 80);
    margin-bottom: 15px; /* EspaÃ§amento abaixo do Ã­cone */
  }
  
  #features .fea-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46, 46, 59);
    padding: 13px 0 7px 0;
    margin-bottom: 10px; /* EspaÃ§amento abaixo do tÃ­tulo */
  }
  
  #features .fea-box p {
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70, 70, 87);
    line-height: 1.6; /* Melhora a legibilidade */
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    #features {
      padding: 5vw 4vw 0 4vw; /* Reduz o padding em telas menores */
    }
  
    #features .fea-base {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta para telas menores */
    }
  
    #features .fea-box {
      padding: 20px 15px; /* Reduz o padding interno */
    }
  
    #features .fea-box i {
      font-size: 2rem; /* Reduz o tamanho do Ã­cone */
    }
  
    #features .fea-box h3 {
      font-size: 1.1rem; /* Reduz o tamanho da fonte do tÃ­tulo */
    }
  
    #features .fea-box p {
      font-size: 0.9rem; /* Reduz o tamanho da fonte do parÃ¡grafo */
    }
  }


/*DAQUI PRA FRENTE Ã‰ O SITE ORIGINAL*/




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
}

input#search {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

main {
    padding: 20px;
}

#law-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.law-item {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.law-item h3 {
    margin: 0;
    font-size: 18px;
}

.law-item p {
    margin: 5px 0;
}

.law-item a {
    color: #007bff;
    text-decoration: none;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 800px;
    margin: auto;
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

/* Reset bÃ¡sico para melhorar a consistÃªncia entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Centraliza os botÃµes na tela */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.button-container1 {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 20px;
}

/* EstilizaÃ§Ã£o dos botÃµes */
.button {
    background-color: black;  /* Cor principal */
    color: yellow;  /* Texto em amarelo */
    font-size: 18px;  /* Aumenta o tamanho da fonte */
    padding: 12px 24px;  /* Aumenta o espaÃ§amento interno */
    border: 2px solid yellow;  /* Borda destacada */
    border-radius: 8px;  /* Bordas arredondadas */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove o sublinhado de links */
    display: inline-block;
}

/* Efeito de hover - troca de cores */
.button:hover {
    background-color: yellow;
    color: black;
    border: 2px solid black;
    transform: scale(1.1); /* Aumenta ligeiramente ao passar o mouse */
}

/* Para telas menores (responsividade) */
@media (max-width: 600px) {
    .button {
        font-size: 16px;
        padding: 10px 20px;
    }
}


/* EstilizaÃ§Ã£o do tÃ­tulo */
.repo-title {
    color: black;  /* Texto amarelo */
    font-size: 28px;  /* Tamanho de tÃ­tulo */
    font-weight: bold; /* Negrito para destaque */
    text-transform: uppercase; /* Deixa em maiÃºsculas */
    text-align: center; /* Centraliza */
    margin-bottom: 20px; /* EspaÃ§o abaixo */
}


/* Courses */
#courses {
    padding-top: 80px; /* Ajuste conforme a altura do cabeÃ§alho */
    padding-bottom: 8vw;
    text-align: center;
    background: #f9f9ff; /* Fundo claro */
  }
  
  #courses h1 {
    font-size: 2.5rem;
    color: rgb(35, 35, 85);
    margin-bottom: 20px;
  }
  
  #courses p {
    color: #757373;
    margin-bottom: 40px;
  }
  
  #courses .course-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* EspaÃ§o entre os cursos */
  }
  
  #courses .course {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  #courses .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  #courses .course img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Garante que a imagem cubra o espaÃ§o */
  }
  
  #courses .course .details {
    padding: 20px;
    text-align: left;
  }
  
  #courses .course .details span {
    font-size: 0.9rem;
    color: #757373;
  }
  
  #courses .course .details h6 {
    font-size: 1.2rem;
    color: rgb(46, 46, 59);
    margin: 10px 0;
  }
  
  #courses .course .details .star {
    color: #fdc93b; /* Cor das estrelas */
    margin-bottom: 10px;
  }
  
  #courses .course .details .star span {
    color: #757373;
    margin-left: 10px;
  }
  
  #courses .course .cost {
    background-color: rgb(74, 74, 136);
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    #courses {
      padding: 5vw 4vw 0 4vw; /* Reduz o padding em telas menores */
    }
  
    #courses .course-box {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajuste para telas menores */
    }
  
    #courses .course img {
      height: 150px; /* Reduz a altura da imagem */
    }
  
    #courses .course .details h6 {
      font-size: 1rem; /* Reduz o tamanho da fonte do tÃ­tulo */
    }
  
    #courses .course .cost {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 1rem;
      bottom: 10px;
      right: 10px;
    }
  }
  

/*IMAGENS*/

.vendas {
    margin-top: 30px;
    text-align: center;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    animation: piscar 1s infinite alternate;
}

@keyframes piscar {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 255, 0, 1);
    }
}

.precos {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 15px;
    color: red;
    text-shadow: 2px 2px 5px yellow;
}
</pre></body></html>