body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    background-color: #edf6fd;
    color: #333;
  }
  
  .wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
  }

  header {
    background: linear-gradient(to right, #3b82f6, #ec4899);
    color: white;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .footer {
    background: linear-gradient(to right, #3b82f6, #ec4899);
    color: white;
    padding: 16px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
  }
  
  nav a {
    color: white;
    margin-left: 16px;
    text-decoration: none;
    font-weight: bold;
  }
  
  main.assinatura-wrapper {
    padding: 40px 16px;
    max-width: 1200px;
    margin: auto;
  }
  
  .assinatura-planos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .plano-info {
    flex: 1;
    background: linear-gradient(to bottom, #8b5cf6, #ec4899);
    color: white;
    border-radius: 16px;
    padding: 32px;
  }
  
  .plano-info h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .plano-info h1 {
    font-size: 36px;
    margin: 0 0 16px;
  }
  
  .plano-info ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
  }
  
  .plano-info ul li {
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .teste-gratis {
    margin-top: 24px;
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
  }
  
  .pagamento-form {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  }
  
  .pagamento-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .pagamento-form input[type="text"],
  .pagamento-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .metodo-pagamento {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .linha {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-assinar {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .depoimentos {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .depoimentos .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
  }
  
  .depoimentos .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 300px;
  }
  
  .faq {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: auto;
  }
  
  .faq details {
    margin-bottom: 16px;
  }
  
  .faq summary {
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
  }

  .modal-pix {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    padding: 25px;
    margin: 50px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .modal-pix h2 {
    color: #333;
    margin-bottom: 10px;
  }
  
  .modal-pix p {
    margin: 10px 0;
    font-size: 15px;
  }
  
  .modal-pix textarea {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 10px;
    resize: none;
  }
  
  #contadorPix {
    margin-top: 15px;
    font-weight: bold;
    color: #6c63ff;
  }
  
  .modal-pix button {
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(to right, #a139e6, #4481eb);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .modal-pix button:hover {
    opacity: 0.9;
  }

  #pixInfo {
    display: none;
  }

  #camposCartao .linha {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  #camposCartao input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  #camposCartao .linha input {
    flex: 1;
  }
  
  .btn-copiar {
    margin-top: 10px;
    background: #6a5acd;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }

  #qrImagem {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .toast.oculto {
    opacity: 0;
    pointer-events: none;
  }
  
  .toast.mostrar {
    opacity: 1;
  }
  
  .btn-verde-pagamento {
  background-color: #28a745;
  color: white;
  padding: 10px 22px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  }
.btn-verde-pagamento:hover {
  background-color: #218838;
  }
  
  .depoimentos h2 {
  margin-bottom: 30px; /* Espaço abaixo do título */
  font-size: 1.8em; /* Tamanho do título */
  color: #333;
}

/* Texto do Depoimento */
.depoimento-texto {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px; /* Espaço antes da assinatura */
  flex-grow: 1; /* Faz a citação ocupar o espaço vertical disponível */
  font-style: italic; /* Estilo de citação */
  position: relative; /* Para as aspas */
  padding-left: 25px; /* Espaço para as aspas */
}
/* Aspas decorativas (opcional) */
.depoimento-texto::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2.5em;
  color: #e0e0e0; 
  line-height: 1;
}


/* Seção do Autor (Foto + Nome) */
.depoimento-autor {
  display: flex;       /* Alinha foto e texto lado a lado */
  align-items: center; /* Centraliza verticalmente foto e texto */
  margin-top: auto;    /* Empurra para o final do card */
  padding-top: 15px;   /* Espaço acima da assinatura */
  border-top: 1px solid #f0f0f0; /* Linha separadora sutil */
}

/* Foto Circular do Autor */
.autor-foto {
  width: 50px;         /* Largura da foto */
  height: 50px;        /* Altura da foto (igual à largura para ser círculo) */
  border-radius: 50%;  /* ESSENCIAL para deixar a imagem redonda */
  object-fit: cover;   /* Garante que a imagem cubra a área sem distorcer */
  margin-right: 15px;  /* Espaço entre a foto e o nome */
  border: 2px solid #eee; /* Borda sutil (opcional) */
}

/* Nome do Autor */
.depoimento-autor strong {
  font-size: 1em;
  color: #333;
}

/* Informação extra do autor (opcional) */
.depoimento-autor .autor-info {
  display: block; /* Fica abaixo do nome */
  font-size: 0.85em;
  color: #777;
}
  
  @media (max-width: 768px) {
    .assinatura-planos {
      flex-direction: column;
    }
  
    .plano-info,
    .pagamento-form {
      width: 88%;
      padding: 24px;
    }
  
    .plano-info h1 {
      font-size: 28px;
    }
  
    .plano-info h2 {
      font-size: 24px;
    }
  
    .depoimentos .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .linha {
      flex-direction: column;
    }
  
    .faq {
      padding: 20px;
    }
  }
  