/* ---------------------------
   PALETA DA MARCA
   "Seu site, sua cara"
----------------------------*/
:root {
  --cor-fundo: #f7e7ea;
  --cor-texto: #4a3b2a;
  --cor-terroso: #8a6e48;
  --cor-destaque: #c99258;
  --cor-branco: #ffffff;
  --cor-rosa: #e8c1c5;
}

/* Fundo geral */
body {
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: "Poppins", "Inter", sans-serif;
}

/* Títulos */
h1, h2, h3, h4, .title {
  color: var(--cor-texto);
  font-weight: 700;
}

.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-flutuante:hover {
  transform: scale(1.05);
  background: #1ebe5d;
}

.nav-link i.bi-instagram:hover {
  color: #2d2318;
  transform: scale(1.12);
  transition: 0.2s ease;
}

.navbar .nav-link i {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*Portfolio*/
.filter-btn {
  border-radius: 20px;
  margin: 5px;
}

.filter-btn.active {
  background: #4a3b2a;
  color: #fff;
}

.portfolio-item {
  transition: all 0.3s ease;
}
/*fim*/

.hero-img {
  max-width: 90%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sobre-img {
  max-width: 60%;
  transition: 0.4s ease;
  border-radius: 20px;
}

.sobre-img:hover {
  transform: scale(1.03);
}


/* Links */
a {
  color: var(--cor-terroso);
  text-decoration: none;
}
a:hover {
  color: var(--cor-destaque);
}

/* Botão padrão */
.btn-dark {
  background: var(--cor-texto) !important;
  border: none;
  border-radius: 12px;
  font-weight: 600;
}
.btn-dark:hover {
  background: #2d2318 !important;
}

/* Botão destaque (Pacote G) */
.btn-warning {
  background: var(--cor-destaque) !important;
  color: var(--cor-texto) !important;
  font-weight: 700;
  border-radius: 12px;
  border: none;
}
.btn-warning:hover {
  background: #b77840 !important;
}

/* Cards */
.card {
  background: var(--cor-branco);
  border-radius: 18px;
  border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* Card destaque (Pacote G) */
.card.highlight,
.card.border-warning {
  background: linear-gradient(165deg, #e7d7b1, #fbe9c9);
  border: 2px solid var(--cor-destaque) !important;
}
.card.highlight .card-title,
.card.border-warning .card-title {
  color: var(--cor-terroso) !important;
}

/* Ícones da lista */
ul li i {
  color: var(--cor-rosa);
  font-size: 1.1rem;
}

/* Seções */
section {
  padding: 60px 0;
}

.banner-ebooks {
    background-color: #f9f7f5; /* Fundo suave para destacar a caixa branca */
}

.banner-ebooks .container > .row {
    transition: transform 0.3s ease;
}

.banner-ebooks .container > .row:hover {
    transform: translateY(-5px); /* Efeito suave de levante ao passar o mouse */
}

/* Ajuste para o botão do banner se destacar */
.banner-ebooks .btn-premium {
    background-color: #b58969 !important;
    color: #fff !important;   
    border: 2px solid var(--detalhe-terroso);
    font-weight: bold;
    transition: 0.3s;
}

.banner-ebooks .btn-premium:hover {
    background-color: #a0765a;
    color: var(--detalhe-terroso);
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(181,137,105, 0.4);
    
}
/* Hero */
.hero-title {
  font-size: 2.5rem;
  color: var(--cor-texto);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--cor-terroso);
}

/* Rodapé */
footer {
  background: var(--cor-texto);
  color: #f8f2e9;
  padding: 30px;
}
footer a {
  color: #e9dcc4;
}
footer a:hover {
  color: var(--cor-destaque);
}
<!-- Quiz Modal -->

  /* Estilo para o Modal do Quiz */
  .modal-content { border-radius: 25px; border: none; }
  .next-step-btn { border-radius: 10px; font-weight: bold; transition: 0.3s; }
  .next-step-btn:hover { transform: scale(1.02); }
  
  
  /* Botões das opções */
  .quiz-option {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    background: #fff;
    transition: 0.3s;
  }
  .quiz-option:hover { background: #fdf2f5; border-color: #f8bbd0; }
  /* Centraliza o selo no modal */
#selo-recompensa {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 25px !important;
  width: 100%;
}

/* O fundo branco arredondado */
.selo-wrapper {
  background-color: #ffffff !important;
  padding: 5px !important;
  border-radius: 50% !important; /* Faz o círculo perfeito */
  border: 1px solid #eee !important;
  display: inline-flex !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* A imagem agora GRANDE */
.selo-wrapper img {
  width: 130px !important; /* Aqui você controla o tamanho real */
  height: 130px !important;
  border-radius: 50% !important;
  object-fit: cover !important; /* Não deixa a imagem esticar */
}