@keyframes pulseGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 16px rgba(0, 200, 83, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

a.btn-assistir,
a.btn-assistir:hover,
a.btn-assistir:focus,
a.btn-assistir:active,
a.btn-assistir:visited {
  display: block !important;
  width: 100% !important;
  max-width: 280px !important;
  margin: 12px auto !important;
  padding: 12px 0 !important;
  background-color: #00c853 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 2px !important;
  font-family: Arial, sans-serif !important;
  font-weight: bold !important;
  font-size: 14px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
  border: none !important;
  cursor: pointer !important;
  animation: pulseGreen 1.8s infinite !important;
  outline: none !important;
}

a.btn-assistir:hover {
  background-color: #00e676 !important;
  transform: scale(1.06) !important;
}


.btn-assistir span {
  color: #ffeb3b;
  font-weight: 900;
}


/* MODAL PARA WNVIAR PARA O WHATSAPP */

.modal-ajuda {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.modal-ajuda-content {
    background: #fff;
    width: 90%;
    max-width: 340px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.modal-ajuda-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #25D366;
}

.modal-ajuda-content input,
.modal-ajuda-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.modal-ajuda-content button {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

#enviarWhatsapp {
    background: #25D366;
    color: #fff;
}

#fecharModal {
    background: #eee;
    color: #333;
}



/* CSS DO INDEX ALGUMA PARTE */
.header-swiper-container {
  width: 100%;
  height: 700px;
  margin-bottom: 0;
}

.swiper.mySwiperHeader {
  width: 100%;
  height: 100%;
}

.mySwiperHeader .swiper-slide {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mySwiperHeader .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mySwiperHeader .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.mySwiperHeader .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

.mySwiperHeader .slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mySwiperHeader .slide-content p {
  font-size: 1.2rem;
}

.swiper-button-next.header-next,
.swiper-button-prev.header-prev {
  color: #fff !important;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background-color .3s;
}

.swiper-button-next.header-next:hover,
.swiper-button-prev.header-prev:hover {
  background: rgba(0,0,0,.6);
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: .7 !important;
}

.swiper-pagination-bullet-active {
  background: #007bff !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .header-swiper-container {
    height: 180px;
  }

  .mySwiperHeader .slide-content h2 {
    font-size: 1.8rem;
  }

  .mySwiperHeader .slide-content p {
    font-size: 1rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 9999;
  animation: pulse-whatsapp 1.6s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1ebe5d !important;
  color: #fff !important;
  text-decoration: none !important;
}

.whatsapp-float img {
  width: 32px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-typebot {
  0% { box-shadow: 0 0 0 0 rgba(18,160,92,.6); }
  70% { box-shadow: 0 0 0 18px rgba(18,160,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,160,92,0); }
}

@keyframes pulse-gratuito {
  0% { box-shadow: 0 0 0 0 rgba(40,167,69,.6); }
  70% { box-shadow: 0 0 0 12px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

.match-card {
  position: relative;
  overflow: hidden;
}

.free-ribbon {
  position: absolute;
  top: 5px;
  right: -35px;
  background: #28a745;
  color: #fff;
  padding: 2px 40px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.pulse-gratuito {
  position: relative;
  z-index: 1;
}

.pulse-gratuito::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(40,167,69,.6);
  animation: pulse-gratuito 1.6s infinite;
  z-index: -1;
}

#cta-typebot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: #12a05c;
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  animation: pulse-typebot 2s infinite;
}

