body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(230, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-red {
  background-color: #e60000;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 400px;
}

.btn-red-title {
  background-color: #e60000;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 400px;
}
.btn-white-title {
  --angle: 0deg;
  --opacity: 1;
  
  background-color: #ffffff;
  color: #e00000;
  font-weight: bold;
  border-radius: 15px;
  padding: 12px 28px;
  font-size: 1rem;
  white-space: nowrap;
      margin: 2% 0% -3% 0%;
  display: inline-block;

  --border-size: 0.2rem;
  border: var(--border-size) solid transparent;

  /* Borda animada girando com gradiente */
  border-image: conic-gradient(
    
    from var(--angle),
    #e00000 0deg 10deg,
    transparent 10deg 360deg
  ) 1 stretch;

  /* Animações combinadas: girar e pulsar */
  animation: rotate 6s linear infinite, pulse 1.5s ease-in-out infinite;
}

/* Garante que a borda siga o radius */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Animação de girar mais lenta */
@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

/* Animação de pulsar */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(224, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 0, 0, 0);
  }
}


.btn-white {
  background-color: #ffffff;
  color: #e00000;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  white-space: nowrap;
  display: inline-block;
}

.btn-red:hover {
  background-color: #ff1a1a;
  color: #fff;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.checklist {
  border: 2px solid #e60000;
  border-radius: 30px;
  padding: 1.5rem;
  background-color: #000;
  display: block;
  margin: 1.5rem auto;
  max-width: 400px;
}

.checklist li {
  list-style: none;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: flex-start; /* <--- troque de center para flex-start */
  gap: 10px;               /* <--- adicione espaçamento sem usar margin */
}
.checklist li::before {
  flex-shrink: 0; /* <--- impede o ícone de esticar */
}

.checklist li::before {
    content: '✓';
    color: #000000;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    font-size: 17px;
}

.faq .accordion-button {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0.75rem 1rem;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq .accordion-button::after {
  filter: invert(1);
}

.faq .accordion-item {
  background-color: transparent;
  border: none;
}

.faq .accordion-body {
  background-color: #222;
  color: #fff;
  padding: 1rem;
  border-radius: 0 0 12px 12px;
}

.highlight-red {
  color: #e60000;
  font-weight: bold;
}

.custom-header {
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #e60000;
  position: relative;
}

.custom-header img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#menu-toggle {
  z-index: 1;
}

.como-funciona-div {
      margin-top: -2%;
  text-align: center;
}

.como-funciona-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.como-funciona-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.como-funciona-list li::before {
  content: counter(step);
  counter-increment: step;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e60000;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-weight: bold;
  margin-right: 12px;
}


.encontre-div p {
  font-weight: 600;
  padding: 4%;
}

footer img {
  filter: none;
}


footer a:hover {
  color: #e60000;
  text-decoration: underline;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-red,
  .btn-white {
    font-size: 1.25rem;
    padding: 16px 40px;
  }

  .checklist,
  .como-funciona-list,
  .faq {
    max-width: 600px;
  }

  .checklist li,
  .como-funciona-list li {
    font-size: 1.125rem;
  }

  main {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq .accordion-button {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
  }

  .faq .accordion-body {
    font-size: 1rem;
  }
}
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: pulsew 2s infinite; /* ✅ adiciona a animação */
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.btn-whatsapp svg {
    width: 35px;
    height: 35px;
}

/* ✅ Keyframes da animação pulse */
@keyframes pulsew {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
