/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
 
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    border: 10px solid #4544e1; /* <<< Adiciona a borda externa */
    box-sizing: border-box;
  }
  
  
  /* Header e logo */
  header {
    background-color: #4544e1;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .logo-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .logo-titulo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  
  .logo-titulo h1 {
    font-size: 2.5rem;
    color: white;
  }
  
  /* Menu de navegação */
  nav {
    display: flex;
    justify-content: center;
  }
  
  nav ul {
    max-width: 700px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 20px;
    list-style: none;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #444;
  }
  
  /* Seções */
  section.content {
    padding: 40px 20px;
    background-color: #fff;
  }
  
  h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Mensagem */
  .mensagem-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .mensagem-texto {
    flex: 1 1 300px;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .mensagem-imagem {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .mensagem-imagem img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  
  /* Áudio */
  .audio-player {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  /* Info boxes */
  .info-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
  }
  
  .info-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-align: center;
  }
  
  .info-box button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .info-box button:hover {
    background-color: #444;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
    font-size: 0.95rem;
  }
  
  /* Imagens em geral */
 img {
    max-width: 100%;
    height: auto;
    display: block;
  } 
  
  /* Responsividade */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .mensagem-container {
      flex-direction: column;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .info-box {
      width: 90%;
    }
  
    .mensagem-imagem img {
      width: 80%;
    }
  
    .logo-titulo {
      flex-direction: column;
    }
  
    .logo-titulo h1 {
      font-size: 2rem;
    }
  
    .logo-titulo img {
      width: 70px;
      height: 70px;
    }
  }
  


  /*#home {
    background-image: url('Imagem/mensagem-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh; /* ocupa 70% da altura da tela */
   /* display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  } */
  

  
  /* Ajuste para o rodapé flutuante que sobrepõe a borda inferior */
  
  .borda-inferior {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px; /* mesma altura da borda */
    background-color: #333;
    color: white;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: none; /* evita que o usuário clique nessa área */
    text-align: center;
  }
  
  
  .container-imagem {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px auto;
    text-align: center;
    background-color: #f9f9f9;
    box-sizing: border-box;
  }

  .container-imagem img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }

  /* Media Query para telas pequenas (celulares) */
  @media (max-width: 600px) {
    .container-imagem {
      padding: 8px;
      border-width: 1px;
    }
  }