  /* Estilos básicos */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #f4f4f4;
    }

    header {
      background-color: #007acc;
      width: 100%;
      padding: 1.5rem;
      color: white;
      text-align: center;
    }

    main {
      width: 80%;
      max-width: 600px;
      margin-top: 2rem;
    }

    h1, h2, p {
      margin-bottom: 1rem;
    }

    .verse-list ul {
      list-style-type: none;
      margin-bottom: 1.5rem;
    }

    .verse-item {
      background-color: white;
      border: 1px solid #ddd;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 5px;
      position: relative;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .verse-item strong {
      display: block;
      font-size: 1.2rem;
      color: #007acc;
    }

    .verse-item p {
      color: #555;
      margin: 0.3rem 0;
    }

    .read-more {
      color: #007acc;
      cursor: pointer;
      text-decoration: underline;
      font-size: 0.9rem;
    }

    audio {
      width: 100%;
      margin-top: 0.5rem;
    }

    .share-btn {
      background-color: #25D366;
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      margin-top: 0.5rem;
      font-size: 0.9rem;
      display: inline-block;
      text-align: center;
      text-decoration: none;
    }

    .share-btn:hover {
      background-color: #1DA851;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem; /* Adiciona um espaçamento entre os versículos e os botões */
      margin-bottom: 2rem; /* Adiciona um espaçamento entre os botões e o fundo */
    }

    button {
      background-color: #007acc;
      border-radius: 20px;
      color: white;
      border: none;
      cursor: pointer;
      padding: 0.5rem 1.2rem;
    }

    button:hover {
      background-color: #006bb3;
    }

     /* Barra de busca */
     .search-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1rem;
    }

    .search-bar input {
      width: 100%;
      max-width: 400px;
      padding: 0.5rem;
      border: 1px solid #ddd;
      border-radius: 20px 0 0 20px;
      outline: none;
      font-size: 1rem;
    }

    .search-bar button {
      background-color: #007acc;
      border: none;
      border-radius: 0 20px 20px 0;
      padding: 0.5rem 1rem;
      cursor: pointer;
      color: white;
    }

    .search-bar button:hover {
      background-color: #006bb3;
    }