<style>

   .header {
      text-align: center;
      padding: 60px 20px 20px;

    }



    .header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3em;
      margin: 0;

    }



    .header p {
      font-size: 1.2em;
      color: #777;
      margin-top: 10px;

    }

      

    .header .responsive {
        width: 60%;
        height: auto;

    }



    .cover {
      text-align: center;
      margin: 40px 0;

    }



    .cover img {
      max-width: 90%;
      height: auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    }



    .highlights {
      max-width: 960px;
      margin: 60px auto;
      padding: 0 20px;

    }



    .highlights h2 {
      text-align: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 2em;
      margin-bottom: 30px;

    }



    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;

    }

    .grid-item {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s;

    }

    .grid-item:hover {
      transform: scale(1.02);

    }

    .grid-item img {

      width: 100%;
      height: 160px;
      object-fit: cover;

    }

    .grid-item p {
      padding: 15px;
      font-size: 0.95em;

    }

    /* teste */

    .footer-content {
      display: flex;
      justify-content: center;
      justify-items: center;
      align-items: center;
      padding: 20px;

}

.footer-logo {
  /* Estilos para o logotipo */
  width: 100px; /* Exemplo de largura */
  height: 40px; /* Exemplo de altura */

}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Mantém a proporção da imagem */

}

.menu-link {
  justify-items: center;

      }

/* slide */
.carousel-inner img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
    }
    .carousel {
      max-width: 800px;
      margin: 0 auto;
    }

    </style>