
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

 html {
    scroll-behavior: smooth;
  }

body {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Barra Vermelha */
.top-bar {
     background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 1px 10px;
    font-size: 18px;
    font-weight: 400;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
}
.hero-container {
  max-width: 800px;
  margin: 0 auto;
}
.coupon {
  background-color: #1e1e1e;
  color: #aaa;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif !important;
}
.hero h1 span {
  color: #007bff; /* Azul destaque */
}
.subtitle {
     font-size: 20px;
    color: #ccc;
    margin: 28px;
    font-weight: 100;
}
.btn-primary {
  background-color: #00c851;
    color: #fff;
    padding: 28px 48px;
    font-size: 17px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}
.btn-primary:hover {
  background-color: #00993a;
}
.note {
  font-size: 19px;
  color: #ccc;
  margin-top: 10px;
}
.arrow-down {
     font-size: 100px;
    color: #007bef;
    margin-top: 40px;
    font-weight: 100;
}




.features-section {
  background-color: #000;
  padding: 60px 20px;
  font-family: 'Satoshi', sans-serif;
}

.features-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #2d2d2d;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.feature-card .icon {
  background-image: url(imagens/bg.png);

     width: 175px;
    height: 75px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card .icon i {
      font-size: 25px;
    color: #ffffff;
    padding: 17px;
    border-radius: 100%;
    background: #0479ff;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif !important;
}

.feature-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}
/* Fonte Satoshi */
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');

.title-section {
  background-color: #000;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Satoshi', sans-serif;
}

.title-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.title-section .tag {
      display: inline-block;
    background-color: #111;
    color: #85beff;
    padding: 12px 36px;
    border-radius: 999px;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 25px;
    border: 2px solid #0479ff;
    font-weight: 600;
}

.title-section h2 {
  font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
}

.title-section .subtitle {
  font-size: 22px;
  color: #ccc;
}


.integrations-section {
  background-color: #000;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Satoshi', sans-serif;
}

.integrations-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.integrations-section .tag {
  display: inline-block;
    background-color: #111;
    border: 1px solid #0023ce;
    color: #b0bdff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 18px;
    margin-bottom: 20px;
}

.integrations-section h2 {
  font-size: 60px;
  font-weight: 300;
  color: #fff;
    font-family: 'Satoshi', sans-serif;
  margin-bottom: 12px;
  margin-top: 10px;
}

.integrations-section .subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 37px;
 
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(5, auto); /* largura mínima do conteúdo */
  gap: 24px; /* menos espaço entre os ícones */
  justify-content: center; /* centraliza o grid */
}

@media (max-width: 768px) {
  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
    
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

 .price-card {
    background: #111;
    padding: 20px 20px 80px 50px !important;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
  }
  
}


.icon {
  background-color: #242424;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

.icon img {
  width: 75%;
  height: auto;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}



.sales-section {
  background-color: #000;
  padding: 80px 20px;
  font-family: 'Satoshi', sans-serif;
}

.sales-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.sales-text .tag {
  color: #ff4e00;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.sales-text h2 {
      font-size: 39px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sales-text .description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.btn-gradient {
  background: #047bff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.85;
}

.sales-image img {
      width: 100%;
    display: block;
    margin: 0 auto;
    margin-left: 35px;
}

@media (max-width: 900px) {
  .sales-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Geral para fundo escuro */
.dark {
  background-color: #000;
  color: #fff;
  padding: 30px 0px;
}

/* Container centralizado */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FAQ */
.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 45px;
  font-weight: 200;
    font-family: 'Satoshi', sans-serif;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
    font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 200;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255,255,255,0.05);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  font-size: 20px;
  color: #ccc;
  line-height: 1.5;
}

.top-logo img {
      max-width: 219px;
    margin-bottom: 35px;
}

/* Footer */
.site-footer {
  padding: 50px 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact a {
  color: #007bff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 18px;
  color: #bbb;
  line-height: 1.4;
  margin-top: 15px;
}

.footer-cnpj {
  font-size: 14px;
  margin-top: 20px;
  color: #888;
}


.video-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.video-section h2 {
  font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
}

.video-section h2 span {
  color: #00aaff; /* Azul da sua marca */
}

.video-section p {
  font-size:22px;
  color: #ccc;
  margin-bottom: 40px;
}

.video-box {
  display: flex;
  justify-content: center;
  background: #111;
  padding: 10px;
  border-radius: 12px;
  border: 3px solid #555; /* Cinza da borda */
  max-width: 1100px;
  margin: 0 auto 40px;
  box-shadow: 0px 0px 25px rgba(0, 170, 255, 0.3); /* Glow azul */
}

.video-box iframe {
  border-radius: 8px;
  border:0px;
}

.cta-button {
  display: inline-block;
    padding: 20px 70px;
    border-radius: 100px;
    color: #047bff;
    font-size: 19px;
    border: 2px solid #047bff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
  background: #047bff;
  color: #FFF;
}

.duvida-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding-bottom: 5px;
}

.duvida-container {
  background: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 100%);
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: auto;
  position: relative;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.duvida-container h2 {
     font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 64px;
}

.duvida-container p {
  font-size: 19px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 26px;
}

.btn-fale {
  display: inline-block;
  padding: 12px 24px;
  color: #00aaff;
  border: 1px solid #00aaff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-fale:hover {
  background: #00aaff;
  color: #000;
}

.copy {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

.resultados-section {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.resultados-container {
  max-width: 1000px;
  margin: auto;
}

.resultados-container h2 {
      font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 200;
}

.resultados-container .descricao {
     color: #bbb;
    font-size: 22px;
    max-width: 800px;
    margin: 20px auto 40px;
    line-height: 28px;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.resultado-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.resultado-item:first-child {
  border-left: none;
}

.resultado-item .valor {
 font-size: 3rem;
    font-weight: 200;
    color: #0479ff;
}

.resultado-item .label {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 8px;
}
.whatsapp-section {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.whatsapp-section h2 {
 font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 100px;
}

.whatsapp-section h2 span {
  color: #047bff; /* Azul padrão Dunas Play */
}

.whatsapp-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 70px;
}

.whatsapp-image img {
  max-width: 410px;
  border-radius: 30px;
}

.whatsapp-info {
  background: linear-gradient(135deg, rgba(4, 123, 255, 0.1), rgba(4, 123, 255, 0.02));
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  text-align: left;
}

.whatsapp-info .hashtag {
  color: #047bff;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.whatsapp-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.whatsapp-info h3 span {
  color: #047bff;
}

.whatsapp-info p {
  color: #ccc;
  margin-bottom: 25px;
}

.btn-whatsapp {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #047bff;
  border-radius: 50px;
  color: #047bff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #047bff;
  color: #fff;
}
.dunas-slide {
      background: #000;
    color: #fff;
    text-align: center;
    padding: 0px 0px 50px 0;
}

.dunas-slide-content .tag {
  background: #000000;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 17px;
    display: inline-block;
    border: 1px solid #026aff;
    color: #008dff;
    margin-bottom: 47px;
    font-weight: 600;
}

.dunas-slide-content h2 {
   font-size: 3rem;
    font-weight: 400;
    max-width: 800px;
    line-height: 53px;
    margin: auto;
}

.dunas-slide-content h2 span {
  color: #047bff;
}

/* Swiper Slide */
.swiper {
  width: 100%;
  height: 70vh;
  margin-top: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 45px;
   image-rendering: crisp-edges; /* Para alguns navegadores */
  image-rendering: -webkit-optimize-contrast; /* Chrome/Safari */
  image-rendering: pixelated; /* fallback */
}

/* Botões e Paginação */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #047bff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #047bff;
  opacity: 1;
}

.price-section {
  background: #000;
  color: #fff;
  padding: 0px 20px 60px 20px;
  text-align: center;
}

.section-title {
     font-size: 3rem;
    font-weight: 600;
}

.section-subtitle {
  color: #ccc;
    margin-bottom: 40px;
    font-size: 21px;
    margin-top: -31px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.price-card {
     background: #111;
    padding: 80px;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
}

.price {
  font-size: 3rem;
  color: #fff;
}

.price small {
  font-size: 1rem;
  color: #aaa;
}

.price span {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
}

.plan-name {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.plan-name .dot {
  width: 8px;
  height: 8px;
  background: #047bff;
  border-radius: 50%;
  margin-right: 8px;
}

.tag {
  background: orange;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 0.7rem;
  margin-left: 10px;
}

.plan-desc {
  color: #bbb;
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-buy {
      display: inline-block;
    background: #047bff;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    text-align: center;
    font-weight: normal;
    text-decoration: none;
    transition: 0.3s;
    margin: 20px 0;
}

.btn-buy:hover {
  background: #005fc1;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.plan-list li {
      padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 15px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 200;
    margin: 7px 0;
}

.guarantee-card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.guarantee-img {
  width: 250px;
  margin-bottom: 15px;
}

.guarantee-card h3 {
  font-size: 19px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 200;
}

.guarantee-card p {
      color: #ccc;
    font-size: 17px;
    margin-bottom: 10px;
}

.guarantee-card small {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.bonus-section {
  background: #fff;
  padding: 60px 20px;
}

.bonus-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}

.bonus-text {
  flex: 1;
  min-width: 280px;
}

.bonus-tag {
  background: #d4f4dd;
  color: #28a745;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px;
}

.bonus-text h3 {
        font-size: 27px;
    font-weight: 500;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.bonus-text p {
  font-size: 15px;
  color: #555;
}

.bonus-img {
  flex: 0 0 150px;
  text-align: center;
}

.bonus-img img {
  max-width: 300px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .bonus-card {
    flex-direction: column;
    text-align: center;
  }

  .bonus-img {
    margin-top: 15px;
  }
}

.bonus-card {
  max-width: 1100px; /* largura máxima como na referência */
  margin: 0 auto; /* centraliza horizontalmente */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  background: #fff;
}

.bonus-text {
  flex: 1;
}

.bonus-image {
  flex: 0 0 300px; /* tamanho fixo da imagem */
}

.bonus-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}


/* Toda a seção branca */
.bonus-section {
  background: #fff;
  padding: 40px 0;
}

/* Área central com borda */
.bonus-container {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px dashed #dcdcdc;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 80px 0;
}

.bonus-text {
  flex: 1;
}

.bonus-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.bonus-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.bonus-label {
      display: inline-block;
    background: #d4f7d4;
    color: #0a580a;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.bonus-image {
  flex: 0 0 300px;
}

.bonus-image img {
  width: 100%;
  border-radius: 12px;
}

.bonus-divider {
  border: none;
  border-top: 1px dashed #dcdcdc;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .bonus-item {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-image {
    flex: unset;
    width: 100%;
  }
}
/* ===============================
   BONUS v3 — Glass / Gradient / Auroras
   =============================== */
:root{
  --b3-bg:#000;
  --b3-border:rgba(255,255,255,0.08);
  --b3-text:#eaeaea;
  --b3-muted:#bdbdbd;
  --b3-chip:#0f1014;
  --b3-chip-b:#ffffff14;

  /* Cores de luz (ajuste se quiser puxar mais para #047bff) */
  --b3-aur1:rgba(86,0,255,0.38);
  --b3-aur2:rgba(0,132,255,0.28);
  --b3-aur3:rgba(255,108,0,0.28);
  --b3-free-from:#3cf8a7;
  --b3-free-to:#19d07d;
}

.bonusv3-wrap{
  position: relative;
  isolation: isolate;
  background: var(--b3-bg);
  padding: 80px 20px 100px; /* respiro superior/inferior */
  overflow: hidden;
}

/* Auroras de fundo */
.bonusv3-aurora{
  position:absolute; z-index:-1; filter: blur(60px); opacity:.6;
  width: 55vw; height:55vw; pointer-events:none;
}
.bonusv3-aurora--left{ left:-12%; top:-8%;
  background: radial-gradient(35% 35% at 50% 50%, var(--b3-aur1), transparent 60%),
              radial-gradient(28% 28% at 60% 40%, var(--b3-aur2), transparent 60%);
}
.bonusv3-aurora--right{ right:-12%; bottom:-18%;
  background: radial-gradient(35% 35% at 50% 50%, var(--b3-aur3), transparent 60%),
              radial-gradient(28% 28% at 40% 60%, var(--b3-aur2), transparent 60%);
}

/* Cabeçalho central */
.bonusv3-head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto 24px;
}
.bonusv3-head h2{
     margin: 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: 58px;
    color: #fff;
}
.bonusv3-sub{
  margin:8px 0 14px;
  color:var(--b3-muted);
  font-size: 22px;
}
.bonusv3-chip{
  display: inline-block;
    padding: 12px 36px;
    border-radius: 999px;
    background: var(--b3-chip);
    border: 1px solid var(--b3-chip-b);
    color: #fff;
    font-size: 18px;
    letter-spacing: .3px;
    backdrop-filter: blur(4px);
    margin: 20px;
}

/* Card central (estreito e no meio) */
.bonusv3-center{
  max-width: 580px;   /* ajuste fino da largura do bloco */
  margin: 0 auto;
}
.bonusv3-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border:1px solid var(--b3-border);
  border-radius: 26px;
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Linha de item */
.bonusv3-row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:#121416; border:1px solid rgba(255,255,255,0.06);
  border-radius:18px; padding:16px 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bonusv3-row + .bonusv3-row{ margin-top:10px; }
.bonusv3-row:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.14);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}

/* Destaque suave opcional */
.bonusv3-row--soft{
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

/* Texto */
.bonusv3-row-text h3{
  margin: 15px;
    color: #fff;
    font-size: 20px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.bonusv3-row-text p{
  margin:15px; color:var(--b3-muted); font-size:13.5px; line-height:1.45;
}

/* Preços à direita: riscado + GRÁTIS */
.bonusv3-price{
  display:flex; align-items:center; gap:10px; white-space:nowrap;
}
.bonusv3-price .old{
  color:#ff9b9b; font-size:13px; position:relative; opacity:.9;
}
.bonusv3-price .old::after{
  content:""; position:absolute; left:-2px; right:-2px; top:50%;
  height:2px; transform:skewY(-8deg);
  background:linear-gradient(90deg,#ff5a5a, #ff9b9b);
}
.bonusv3-price .free{
  background: linear-gradient(180deg, var(--b3-free-from) 0%, var(--b3-free-to) 100%);
  color:#07331e; font-weight:800; font-size:12px;
  padding:8px 10px; border-radius:10px;
  border:1px solid rgba(13,106,68,.25);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}

/* Linha final */
.bonusv3-footline{
  margin-top:12px; text-align:center; font-size:12px; color:#d7d0ff;
  padding:10px 16px; border-radius:12px;
  background: linear-gradient(90deg, rgba(141,92,255,0.16), rgba(0,132,255,0.12));
  border:1px solid rgba(141,92,255,0.25);
}

/* Responsivo */
@media (max-width: 720px){
  .bonusv3-center{ max-width: 92vw; }
  .bonusv3-row{ flex-direction: column; align-items: flex-start; }
  .bonusv3-price{ margin-top:8px; }
}


/* ==== BONUS v3 — aumentar largura e tipografia (override) ==== */

/* largura do bloco central (antes: 580px) */
.bonusv3-center{
  max-width: 920px;    /* ajuste livre: 840–980px conforme desejar */
  margin: 0 auto;
}

/* respiro e raio um pouco maiores */
.bonusv3-card{
  padding: 20px;
  border-radius: 28px;
}

/* linhas mais espaçosas */
.bonusv3-row{
  padding: 20px 22px;
  border-radius: 20px;
  gap: 20px;
}
.bonusv3-row + .bonusv3-row{ margin-top: 14px; }

/* títulos, textos e preços proporcionais */
.bonusv3-head h2{
  font-size: clamp(32px, 5vw, 52px);  /* antes: 42px máx */
}
.bonusv3-sub{
  font-size: 17px;
}

.bonusv3-row-text h3{
  font-size: clamp(18px, 2.2vw, 22px);   /* antes: 17px máx */
}
.bonusv3-row-text p{
  font-size: clamp(14px, 1.9vw, 16px);   /* antes: ~13.5px */
  line-height: 1.55;
}

.bonusv3-price .old{
  font-size: clamp(14px, 1.8vw, 16px);
}
.bonusv3-price .free{
  font-size: clamp(13px, 1.8vw, 15px);
  padding: 10px 12px;         /* badge maior */
  border-radius: 12px;
}

/* rodapé do card um pouco maior */
.bonusv3-footline{
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 14px;
}

/* mobile: evita exageros e mantém legibilidade */
@media (max-width: 720px){
  .bonusv3-center{ max-width: 94vw; }
  .bonusv3-row{ padding: 16px 18px; gap: 14px; }
  .bonusv3-head h2{ font-size: clamp(28px, 8vw, 36px); }
  .bonusv3-sub{ font-size: 15px; }
  .bonusv3-row-text h3{ font-size: clamp(16px, 5vw, 18px); }
  .bonusv3-row-text p{ font-size: 14px; }
  .bonusv3-price .old{ font-size: 14px; }
  .bonusv3-price .free{ font-size: 13px; padding: 8px 10px; }
}


@media (max-width: 480px) {
  .subtitle {
    font-size: 27px;
    color: #ccc;
    margin: 28px;
    font-weight: 100;
}
  .feature-card p {
    font-size: 23px;
    color: #ccc;
    line-height: 1.5;
    WIDTH: 100%;
}
.feature-card h3 {
    font-size: 27px;}
    
    .integrations-section h2 {
    font-size: 53px;
    font-weight: 300;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 12px;
    margin-top: 10px;
    line-height: 57px;
}

.integrations-section .subtitle {
    font-size: 27px;
    color: #ccc;
    margin-bottom: 37px;
}

.whatsapp-section h2 {
    font-size: 53px;
    font-weight: 400;
    margin-bottom: 100px;
    line-height: 48px;
}

.whatsapp-info h3 {
    font-size: 29px;
    font-weight: bold;
    margin-bottom: 15px;
}

    .bonusv3-sub {
        font-size: 26px;
    }


.whatsapp-info p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 27px;
}
    .bonusv3-head h2 {
        font-size: 51px;
        line-height: 51px;
    }
    
        .bonusv3-row-text p {
        font-size: 23px !important;
    }
    
        .bonusv3-row-text h3 {
        font-size: 25px !important;
        line-height: 34px !important;
    }
    
    .bonusv3-footline {
    font-size: 19px;
    padding: 12px 18px;
    border-radius: 14px;
    margin: 30px 0;
}

.price-section {
    background: #000;
    color: #fff;
    text-align: center;
}

.guarantee-card p {
    color: #ccc;
    font-size: 24px;
    margin-bottom: 34px;
}

.guarantee-card small {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
}

.sales-text .description {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 30px;
}
.duvida-container h2 {
    font-size: 49px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 57px;
}.duvida-container p {
    font-size: 26px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 33px;
}

.btn-fale {
    display: inline-block;
    padding: 12px 24px;
    color: #00aaff;
    border: 1px solid #00aaff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 26px;
}

.top-bar {
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 1px 10px;
    font-size: 22px;
    font-weight: 400;
}

.price-card {
    background: #111;
    padding: 20px 20px 80px 50px;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
}

.video-section h2 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
    line-height: 49px;
}

.hero h1 {
    font-size: 33px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif !important;
}

.coupon {
    background-color: #1e1e1e;
    color: #aaa;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #00c851;
    color: #fff;
    padding: 18px 28px;
    font-size: 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}


.dunas-slide-content .tag {
    background: #000000;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 24px;
    display: inline-block;
    border: 1px solid #026aff;
    color: #008dff;
    margin-bottom: 47px;
    font-weight: 600;
}

.title-section .tag {
    display: inline-block;
    background-color: #111;
    color: #85beff;
    padding: 12px 36px;
    border-radius: 999px;
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 25px;
    border: 2px solid #0479ff;
    font-weight: 600;
    line-height: 32px;
}

.resultados-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 200;
    line-height: 45px;
}

}



@media (max-width: 768px) {
  .subtitle {
    font-size: 27px;
    color: #ccc;
    margin: 28px;
    font-weight: 100;
}
  .feature-card p {
    font-size: 23px;
    color: #ccc;
    line-height: 1.5;
    WIDTH: 100%;
}
.feature-card h3 {
    font-size: 27px;}
    
    .integrations-section h2 {
    font-size: 53px;
    font-weight: 300;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 12px;
    margin-top: 10px;
    line-height: 57px;
}

.integrations-section .subtitle {
    font-size: 27px;
    color: #ccc;
    margin-bottom: 37px;
}

.whatsapp-section h2 {
    font-size: 53px;
    font-weight: 400;
    margin-bottom: 100px;
    line-height: 48px;
}

.whatsapp-info h3 {
    font-size: 29px;
    font-weight: bold;
    margin-bottom: 15px;
}

    .bonusv3-sub {
        font-size: 26px;
    }


.whatsapp-info p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 27px;
}
    .bonusv3-head h2 {
        font-size: 51px;
        line-height: 51px;
    }
    
        .bonusv3-row-text p {
        font-size: 23px !important;
    }
    
        .bonusv3-row-text h3 {
        font-size: 25px !important;
        line-height: 34px !important;
    }
    
    .bonusv3-footline {
    font-size: 19px;
    padding: 12px 18px;
    border-radius: 14px;
    margin: 30px 0;
}

.price-section {
    background: #000;
    color: #fff;
    text-align: center;
}

.guarantee-card p {
    color: #ccc;
    font-size: 24px;
    margin-bottom: 34px;
}

.guarantee-card small {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
}

.sales-text .description {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 30px;
}
.duvida-container h2 {
    font-size: 49px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 57px;
}.duvida-container p {
    font-size: 26px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 33px;
}

.btn-fale {
    display: inline-block;
    padding: 12px 24px;
    color: #00aaff;
    border: 1px solid #00aaff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 26px;
}

.top-bar {
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 1px 10px;
    font-size: 22px;
    font-weight: 400;
}

.price-card {
    background: #111;
    padding: 20px 20px 80px 50px;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
}

.video-section h2 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
    line-height: 49px;
}

.hero h1 {
    font-size: 33px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif !important;
}

.coupon {
    background-color: #1e1e1e;
    color: #aaa;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #00c851;
    color: #fff;
    padding: 18px 28px;
    font-size: 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}


.dunas-slide-content .tag {
    background: #000000;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 24px;
    display: inline-block;
    border: 1px solid #026aff;
    color: #008dff;
    margin-bottom: 47px;
    font-weight: 600;
}

.title-section .tag {
    display: inline-block;
    background-color: #111;
    color: #85beff;
    padding: 12px 36px;
    border-radius: 999px;
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 25px;
    border: 2px solid #0479ff;
    font-weight: 600;
    line-height: 32px;
}

.resultados-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 200;
    line-height: 45px;
}

}



@media (max-width: 480px) {
  .subtitle {
    font-size: 27px;
    color: #ccc;
    margin: 28px;
    font-weight: 100;
}
  .feature-card p {
    font-size: 23px;
    color: #ccc;
    line-height: 1.5;
    WIDTH: 100%;
}
.feature-card h3 {
    font-size: 27px;}
    
    .integrations-section h2 {
    font-size: 53px;
    font-weight: 300;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 12px;
    margin-top: 10px;
    line-height: 57px;
}

.integrations-section .subtitle {
    font-size: 27px;
    color: #ccc;
    margin-bottom: 37px;
}

.whatsapp-section h2 {
    font-size: 53px;
    font-weight: 400;
    margin-bottom: 100px;
    line-height: 48px;
}

.whatsapp-info h3 {
    font-size: 29px;
    font-weight: bold;
    margin-bottom: 15px;
}

    .bonusv3-sub {
        font-size: 26px;
    }


.whatsapp-info p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 27px;
}
    .bonusv3-head h2 {
        font-size: 51px;
        line-height: 51px;
    }
    
        .bonusv3-row-text p {
        font-size: 23px !important;
    }
    
        .bonusv3-row-text h3 {
        font-size: 25px !important;
        line-height: 34px !important;
    }
    
    .bonusv3-footline {
    font-size: 19px;
    padding: 12px 18px;
    border-radius: 14px;
    margin: 30px 0;
}

.price-section {
    background: #000;
    color: #fff;
    text-align: center;
}

.guarantee-card p {
    color: #ccc;
    font-size: 24px;
    margin-bottom: 34px;
}

.guarantee-card small {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
}

.sales-text .description {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 30px;
}
.duvida-container h2 {
    font-size: 49px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 57px;
}.duvida-container p {
    font-size: 26px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 33px;
}

.btn-fale {
    display: inline-block;
    padding: 12px 24px;
    color: #00aaff;
    border: 1px solid #00aaff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 26px;
}

.top-bar {
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 1px 10px;
    font-size: 22px;
    font-weight: 400;
}

.price-card {
    background: #111;
    padding: 20px 20px 80px 50px;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
}

.video-section h2 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
    line-height: 49px;
}

.hero h1 {
    font-size: 33px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif !important;
}

.coupon {
    background-color: #1e1e1e;
    color: #aaa;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #00c851;
    color: #fff;
    padding: 18px 28px;
    font-size: 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}


.dunas-slide-content .tag {
    background: #000000;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 24px;
    display: inline-block;
    border: 1px solid #026aff;
    color: #008dff;
    margin-bottom: 47px;
    font-weight: 600;
}

.title-section .tag {
    display: inline-block;
    background-color: #111;
    color: #85beff;
    padding: 12px 36px;
    border-radius: 999px;
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 25px;
    border: 2px solid #0479ff;
    font-weight: 600;
    line-height: 32px;
}

.resultados-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 200;
    line-height: 45px;
}

.title-section h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
}

}

@media (max-width: 600px) {
  .price-card {
    background: #111;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    border: solid 2px #CCC;
  }
}



<style>/* ===== Seta entre seções ===== */
.section-arrow {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.section-arrow i {
  font-size: 72px;         /* tamanho grande */
  color: #047bff;          /* azul do seu site */
  animation: arrow-bounce 1.5s infinite;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.section-arrow i:hover {
  transform: scale(1.15);
}

/* Animação suave para "pular" */
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}
</style>
