.btn-home {
      margin: 2rem;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border: 1px solid #000;
      border-radius: 20px;
      cursor: pointer;
      background: transparent;
}

/* Modal base */
.modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      padding: 1rem;
      box-sizing: border-box;
}

.modal-conteudo {
      background-color: #fff;
      padding: 2rem;
      border-radius: 1rem;
      width: 100%;
      max-width: 600px;
      position: relative;
      animation: fadeIn 0.3s ease;

      overflow-y: auto;
      max-height: 90vh;
      box-sizing: border-box;
}

.modal-fechar {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 1.5rem;
      font-weight: bold;
      color: #555;
      cursor: pointer;
}

/* Conteúdo interno */
.btn-home-mais p {
      line-height: 1.6;
      margin-bottom: 1rem;
      font-size: 1rem;
      color: #333;
}

.btn-home-mais h3 {
      margin-top: 2rem;
      font-size: 1.2rem;
      color: #111;
}

.btn-home-mais span {
      color: #938ff3;
      font-weight: bold;
}

/* Animação */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Responsivo para telas menores */
@media (max-width: 480px) {
    .modal-conteudo {
        padding: 1.5rem 1rem;
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .modal-fechar {
        top: 5px;
        right: 10px;
        font-size: 1.3rem;
    }

    .btn-home-mais p {
        font-size: 0.95rem;
    }

    .btn-home-mais h3 {
        font-size: 1.1rem;
    }
}
