    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fff;
      transition: 0.5s ease;
    }

    /* Cabeçalho */
    header {
      background-color: #0e4eac;
      color: white;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 20px 30px;
      position: relative;
    }

    .btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      z-index: 1000;
    }

    header h1 {
      margin: 10px;
      font-size: 25px;
    }

    .search-bar {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-bar input {
      padding: 6px 12px;
      width: 320px;
      border-radius: 50px;
      border: none;
      outline: none;
      background-color: #91bdfe;
    }

    .search-bar input::placeholder {
      color: #052d67;
    }

    /*Footer*/
    footer {
      background-color: #0e4eac;
      /* Azul de fundo */
      color: white;
      padding: 20px;
      font-family: Arial, sans-serif;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    footer h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    footer p {
      margin: 5px 0;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    /* Navegação */
    nav {
      display: flex;
      gap: 10px;
      padding: 10px 20px;
      background-color: transparent;
    }

    nav a {
      text-decoration: none;
      background: #074093;
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      transition: background 0.3s;
    }

    nav a:hover {
      background: #003d99;
    }

    nav button {
      text-decoration: none;
      background: #074093;
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      transition: background 0.3s;
      cursor: pointer;
    }

    .home{
      background-color:#91bdfe;
      color:black;
    }

    /* Seções */
    section {
      padding: 20px;
    }

    section h2 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 20px;
      margin-bottom: 15px;
    }

    .card-container {
      display: flex;
      flex-wrap: nowrap;
      /* não deixar quebrar */
      overflow-x: auto;
      /* rolagem horizontal */
      gap: 15px;
      padding-bottom: 10px;
      scrollbar-width: thin;
      /* opcional */
    }


    .card {
      width: 200px;
      background: #f8f8f8;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    }

    .card img {
      width: 200px;
      height: 110px;
      object-fit: cover;
    }

    .card p {
      margin: 8px 0;
      font-size: 14px;
      font-weight: normal;
    }

    .mostrar {
      font-size: 14px;
      color: black;
      cursor: pointer;
    }
    
    .mostrar:hover {
      text-decoration: underline;
    }

    .circle {
      float: right;
      width: 50px;
      height: 50px;
      border: 1px solid white;
      border-radius: 50%;
    }

    .menu-lateral {
      width: 250px;
      /* Largura do menu */
      /* Fundo azul: cor principal #1976D2 é um bom azul escuro */
      background: linear-gradient(to bottom, #074093 75%, #1565C0 100%);
      color: white;
      padding-top: 20px;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
      display: none;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      box-sizing: border-box;
    }

    .menu-lateral.ativo {
      left: 0;
      display: block;
    }

    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      /* Inicialmente oculto */
      justify-content: center;
      align-items: center;
      z-index: 1000;
      /* Garantir que fique sobre o conteúdo */
    }

    .popup-window {
      width: 650px;
      height: 700px;
      background-color: white;
      border-radius: 20px;
      position: relative;
    }

    .popup-frame {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 20px;
    }

    /* Botão fechar */
    .popup-close {
      position: absolute;
      top: -35px;
      right: 0;
      background: #b71c1c;
      color: white;
      border: none;
      padding: 8px 12px;
      font-size: 18px;
      border-radius: 8px;
      cursor: pointer;
    }

    a {
      text-align: none;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #ffffff;
      font-weight: 600;
      font-size: 30px;
    }

    /* Responsividade para telas pequenas */
@media (max-width: 600px) {

  /* Barra de pesquisa */
  .search-bar {
    position: relative;
    transform: translateX(0);
    width: 45%;
    margin-top: 10px;
    left: 20px;
  }

  .search-bar input {
    width: 80%; /* Tira a largura fixa e usa uma porcentagem */
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 50px;
  }

  .search-bar button {
    font-size: 18px;
    padding: 8px;
  }
}