/* ============================= */
/* FONTES E VARIÁVEIS GLOBAIS    */
/* ============================= */
@font-face {
  font-family: raleway;
  src: url(../fontes/Raleway/Raleway-Italic-VariableFont_wght.ttf) format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: lovelo;
  src: url(../fontes/lovelo/lovelo_black.otf) format('opentype');
  font-weight: normal;
}

:root {
  --corescura-1: #111111ff;
  --corescura-2: #071554ff;
  --corescura-3: #212bc0ff;
  --corescura-4: #4ecaceff;
  --corescura-5: #a0dadeff;

  --branco: #ffffff;
  --preto: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: lovelo, sans-serif;
  background-color: var(--corescura-1);
}

::placeholder {
  color: var(--branco);
}

/* ================================================== */
/* ESTILOS DESKTOP (Apenas > 900px)                  */
/* ================================================== */
@media (min-width: 900px) {

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--corescura-1);
    padding: 20px 35px;
    color: var(--branco);
    position: relative;
    font-family: raleway, sans-serif;
  }

  .logo-img {
    width: 40%;
    height: 40%;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }

  .search-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .btn-tema img {
      width: 32px;
      height: auto;
      cursor: pointer;
      transition: transform 0.2s;
  }
  
  .btn-tema img:hover {
      transform: scale(1.1);
  }

  .menu-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .search {
    display: flex;
    align-items: center;
    position: relative;
  }

  .search input {
    padding: 10px 60px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: linear-gradient(to right, #00d9c0, #1d4ed8);
    color: var(--branco);
  }

  .search img {
    position: absolute;
    left: 25px;
    height: 45px;
    width: 45px;
    pointer-events: none;
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
    display: block;
  }

  .hamburguer {
    font-size: 40px;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    color: var(--branco);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.3s ease;
  }

  .hamburguer:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-lista {
    list-style: none;
    padding: 10px 0;
    margin: 0 0 0 20px;
    display: none;
    flex-direction: column;
    background-color: var(--corescura-1);
    border-radius: 8px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .menu-lista.active {
    display: flex;
  }

  .menu-item a {
    color: var(--branco);
    text-decoration: none;
    font-family: lovelo, sans-serif;
    font-size: 16px;
    display: block;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }

  .menu-item a:hover {
    background-color: var(--corescura-5);
  }

  .principal {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    min-height: 80vh;
  }

  .principal-esquerda {
    color: var(--branco);
    background-color: var(--corescura-4);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 30%;
    height: auto;
  }

  .principal-esquerda p {
    font-size: 23px;
    font-family: lovelo;
  }

  .bloco1, .bloco2, .bloco3 {
    width: 100%;
    height: auto;
    overflow-wrap: break-word;
  }

  .bloco1 {
    padding: 0 0 0 15px;
    list-style: none;
    margin: auto 0;
    text-align: left;
  }

  .bloco1 p {
    font-size: 1.8em;
    padding: 20px;
  }

  .bloco2 {
    padding: 90px 15px;
    background-color: var(--corescura-2);
    color: var(--branco);
  }

  .bloco2 h1 {
    font-family: lovelo;
    font-size: 5em;
    text-align: left;
    display: flex;
    justify-content: left;
  }

  .bloco3 img {
    width: 100%;
    height: auto;
    display: block;
  }

  .bloco3-mob, .titulo-mobile {
    display: none;
  }

  .imagem-direita {
    width: 70%;
    position: relative;
  }

  .imagem-direita h1 {
    display: none;
  }

  .imagem-direita img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .imagem-direita button {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background-color: var(--corescura-4);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--corescura-1);
    color: var(--branco);
    font-size: 30px;
    font-family: lovelo;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .imagem-direita button:hover {
    transform: scale(1.05);
  }

  .sobre {
    text-align: center;
    background: var(--corescura-1);
    color: var(--branco);
    padding-bottom: 50px;
  }
  

  .titulo1 {
    font-size: 180%;
    font-family: lovelo;
    padding-top: 2%;
  }

  .p-1 p, .p-2 p {
    padding: 5px 20%;
    text-align: justify;
    font-size: 1.5em;
    font-family: raleway;
    margin-bottom: 3%;
  }

  .Estampa-centro img {
    width: auto;
    max-width: 80%;
  }

  .titulo-2 h1 {
    font-size: 40px;
    font-family: lovelo;
    margin-top: 2%;
  }

  .noticias {
    background-color: #0d0d0d;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }

  .noticias h1 {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .noticias h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-family: lovelo;
  }

  .noticias-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }

  .card {
    background-color: var(--corescura-4);
    width: 320px;
    height: 500px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .card .card-content {
    padding: 15px;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
  }

  .card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fff;
    font-family: lovelo;
  }

  .card p {
    font-family: Raleway;
    font-size: 1.1em;
  }

  .h1-mural {
    color: var(--branco);
    font-size: 50px;
    background-color: var(--preto);
    text-align: center;
    padding: 20px 0;
    font-family: lovelo;
  }

  h1 {
    font-size: 50px;
    margin: 60px 40px;
    color: var(--branco);
  }
  .catalogo-mural {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    justify-items: center;
    background-color: var(--preto);
  }

  .foto-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--preto);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
  }

  .foto-1 img {
    width: 100%;
    max-width: 340px;
    height: 200px;
    object-fit: cover;
    border: 2px solid var(--corescura-4);
  }

  .textos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    font-family: raleway;
  }

  .textos span {
    color: #00c4c7;
    font-weight: 600;
  }

  .textos p {
    color: var(--branco);
    margin: 5px 0 0 0;
    font-size: 16px;
    font-weight: bold;
  }

  .professores {
    background-color: #0d0d0d;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .titulo {
    flex: 0 0 25%;
    max-width: 250px;
  }

  .titulo h2 {
    color: #1e90ff;
    font-family: lovelo, sans-serif;
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .titulo p {
    font-size: 1em;
    color: #999;
    font-family: raleway;
  }

  .professores-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #1e90ff #1a1a1a;
  }

  .prof-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #333;
  }

  .prof-card img {
    width: 120px;
    height: 100%;
    object-fit: cover;
  }

  .info {
    padding: 15px;
  }

  .info h3 {
    color: #1e90ff;
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-family: lovelo;
  }

  .info p {
    font-size: 0.9em;
    line-height: 1.4;
    color: #ccc;
    font-family: raleway;
  }

  .projetos-alunos {
    font-family: "lovelo";
    background-color: var(--preto);
    display: flex;
    flex-wrap: wrap;
    color: var(--preto);
    justify-content: center;
    gap: 40px;
    padding: 75px;
  }

  .projetos-alunos h1 {
    width: 100%;       
    text-align: center; 
    margin-bottom: 40px;
    font-size: 2.5rem;   
  }

  .projeto {
    background-color: var(--corescura-4);
    width: 290px;
    height: 380px; 
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .projeto:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 10;
  }

  .projeto-img-box {
    width: 100%;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .imagem-projeto {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .projeto-titulo {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .projeto-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
    margin-bottom: 20px;
  }
  
  .icons-2 {
    width: 50px;
    height: 50px;
    transition: opacity 0.2s;
  }
  
  .icons-2:hover {
    opacity: 0.8;
  }

  .barra-separacao {
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, var(--preto), var(--corescura-3), var(--corescura-4));
  }

  footer {
    color: var(--branco);
    background-color: var(--corescura-1);
    font-family: "lovelo";
  }

  footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    padding: 40px 20px;
    align-items: flex-start;
  }

  .logo-footer img {
      width: 150px;
      height: auto;
  }

  .informacoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: lovelo;
  }
  
  .icons-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  /* CORREÇÃO ÍCONES DESKTOP */
  .icons-social img.icons {
      width: 32px;
      height: 32px;
  }

  .local {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 220px;
    text-decoration: none;
    color: var(--branco);
    font-family: raleway;
  }

  .lista ul {
    list-style-type: none;
    padding: 0;
  }
  
  .lista li {
    margin-bottom: 8px;
  }

  .lista a {
    color: var(--branco);
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  .lista a:hover, .contato-link:hover {
    text-decoration: underline;
    color: var(--corescura-4);
  }
  
  .contato-link {
    color: var(--branco);
    text-decoration: none;
  }

  .creditos {
    width: 100%;
    background: linear-gradient(to right, #4556e7ff, #111111ff);
    text-align: center;
    font-size: 0.89rem;
    padding: 10px;
    font-family: raleway;
  }
}

.conteudo-sobre h1 {
  font-size: 50px;
}