
        :root {
            --bf-bg1: #002B4E;
            --bf-bg2: #0078C8;
            /* gradiente topo */
            --bf-cta1: #00B37E;
            --bf-cta2: #0078C8;
            /* botão CTA */
            --bf-cta1h: #00E295;
            --bf-cta2h: #0095FF;
            --bf-accent: #00E295;
            --bf-text: #fff;
            --bf-shadow: rgba(0, 0, 0, .12);
            --bf-radius: 14px;
            --bf-gap: 18px;
            --bf-font: Arial, system-ui, Segoe UI, Roboto, sans-serif;
        }

        /* .bf-nav {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: linear-gradient(90deg, var(--bf-bg1), var(--bf-bg2));
            box-shadow: 0 6px 20px var(--bf-shadow);
            color: var(--bf-text);
            font-family: var(--bf-font);
                margin-top: -17px;
        } */

    .bf-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--bf-bg1), var(--bf-bg2));
  box-shadow: 0 6px 20px var(--bf-shadow);
  color: var(--bf-text);
  font-family: var(--bf-font);
  margin-top: -17px;
  transition: all 0.5s ease;
  backdrop-filter: blur(0px);
  opacity: 1;
}

/* Quando rola para baixo — anima suavemente para cima + blur */
.bf-nav.hide {
  transform: translateY(-120%);
  opacity: 0;
  filter: blur(4px);
}



        .bf-nav__wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .bf-nav__logo {
            color: var(--bf-accent);
            text-decoration: none;
            font-weight: 800;
            letter-spacing: .5px;
            font-size: 20px;
        }

        /* Botão hambúrguer */
        .bf-nav__toggle {
            width: 46px;
            height: 40px;
            display: grid;
            place-items: center;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 10px;
            cursor: pointer;
        }

        .bf-nav__bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            margin: 3px 0;
            transition: .25s;
        }

        /* Menu */
        .bf-menu {
            display: flex;
            gap: var(--bf-gap);
            align-items: center;
        }

        .bf-menu__link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 6px;
            border-bottom: 2px solid transparent;
        }

        .bf-menu__link:hover,
        .bf-menu__link.is-active {
            border-bottom-color: var(--bf-accent);
            color: #fff;
        }

        .bf-menu__cta {
            text-decoration: none;
            color: #fff;
            font-weight: 800;
            padding: 10px 18px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--bf-cta1), var(--bf-cta2));
            box-shadow: 0 6px 16px rgba(0, 179, 126, .35);
            transition: .2s;
        }

        .bf-menu__cta:hover {
            background: linear-gradient(90deg, var(--bf-cta1h), var(--bf-cta2h));
            transform: translateY(-1px);
        }

        /* ---------- Responsivo ---------- */
        @media (max-width: 900px) {
            .bf-menu {
                position: fixed;
                inset: 56px 0 auto 0;
                /* abaixo do header */
                display: grid;
                gap: 12px;
                padding: 14px;
                background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15)), linear-gradient(90deg, var(--bf-bg1), var(--bf-bg2));
                transform: translateY(-120%);
                transition: transform .28s ease;
                border-bottom-left-radius: var(--bf-radius);
                border-bottom-right-radius: var(--bf-radius);
            }

            .bf-menu[aria-hidden="false"] {
                transform: translateY(0);
            }

            .bf-nav__toggle {
                display: block;
            }
        }

        /* Desktop: mostra menu, esconde hambúrguer */
        @media (min-width: 901px) {
            .bf-nav__toggle {
                display: none;
            }

            .bf-menu {
                position: static;
                transform: none;
                background: transparent;
                padding: 0;
            }
        }

        .logopr {
            width: 163px;
        }

       .dvbtn1 {
  display: flex;
  justify-content: center;
  margin-top: -60px; /* sobe o botão para o meio das duas sections */
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}

.bf-menu__cta {
  text-decoration: none;
  /* padding: 14px 32px; */
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}



        /* SEÇÃO GERAL */
.beneficios-white {
  text-align: center;
  padding: 70px 20px;
  background: #ffffff;
  color: #0a2540;
  font-family: 'Arial', sans-serif;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 60px auto;
  max-width: 1100px;
}

/* TÍTULO */
.beneficios-white h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0078C8;
}
.beneficios-white h2 span {
  color: #00B37E;
}

/* GRID DOS CARDS */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* CADA CARD */
.card {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #00B37E;
  transition: all 0.3s ease;
}
.card:hover {
  background: #eefdf7;
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 179, 126, 0.2);
}

/* ÍCONES E TEXTOS */
.icon {
  margin-bottom: 15px;
}
.card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0078C8;
}
.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* BOTÃO CENTRALIZADO */
.cta-container {
  margin-top: 50px;
}
.botao-compre {
  display: inline-block;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #00B37E 0%, #0078C8 100%);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 179, 126, 0.4);
  transition: all 0.3s ease;
}
.botao-compre:hover {
  background: linear-gradient(90deg, #00E295 0%, #0095FF 100%);
  transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .beneficios-white {
    padding: 50px 15px;
  }
  .beneficios-white h2 {
    font-size: 26px;
  }
  .card h3 {
    font-size: 18px;
  }
  .card p {
    font-size: 15px;
  }
}
.depoimento {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', Arial, sans-serif;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.texto-depoimento h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.texto-depoimento h2 span {
  color: #005fa1;
}
.texto-depoimento .emoji {
  font-size: 36px;
  vertical-align: middle;
}

.texto-depoimento .subtitulo {
  font-size: 18px;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 500;
}

.video-depoimento {
  margin-bottom: 40px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  border-radius: 16px;
  overflow: hidden;
}

/* BOTÃO */
.botao-compre {
  display: inline-block;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #00B37E 0%, #0078C8 100%);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 179, 126, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

/* EFEITO DE PULSAÇÃO GRADIENTE */
.pulsar-gradiente {
  animation: pulse-gradiente 2.5s infinite;
}
@keyframes pulse-gradiente {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 179, 126, 0.6);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 25px 10px rgba(0, 179, 126, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 179, 126, 0);
  }
}
.botao-compre:hover {
  background: linear-gradient(90deg, #00E295 0%, #0095FF 100%);
  transform: scale(1.08);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .texto-depoimento h2 {
    font-size: 24px;
  }
  .texto-depoimento .subtitulo {
    font-size: 16px;
  }
  .botao-compre {
    width: 90%;
    font-size: 16px;
  }
}
.garantia-premium {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.garantia-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5fefb 0%, #f5faff 100%);
  border: 2px solid #00B37E;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 179, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: all 0.3s ease;
}

.garantia-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 179, 126, 0.25);
}

/* ESCUDO */
.garantia-icon {
  flex: 0 0 100px;
  text-align: center;
}

/* TEXTO CENTRAL */
.garantia-texto {
  flex: 1;
  text-align: left;
}
.garantia-texto h2 {
  font-size: 34px;
  color: #00B37E;
  font-weight: 800;
  margin-bottom: 8px;
}
.garantia-texto h3 {
  font-size: 22px;
  color: #0078C8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.garantia-texto p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}
.garantia-texto strong {
  color: #0078C8;
}

/* IMAGEM DO ARTISTA */
.garantia-img {
  flex: 0 0 180px;
  text-align: center;
}
.garantia-img img {
    width: 163px;
    height: 32vh;
    object-fit: cover;
    margin-bottom: 10px;
    transform: scaleX(-1.5);
}
.artista-nome {
  font-weight: 600;
  color: #0078C8;
  font-size: 16px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .garantia-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 40px 25px;
  }
  .garantia-texto {
    text-align: center;
  }
  .garantia-texto h2 {
    font-size: 26px;
  }
  .garantia-texto h3 {
    font-size: 18px;
  }
  .garantia-texto p {
    font-size: 15px;
  }
}
.rodape {
  background: linear-gradient(to right, #0072bb, #003b8e);
  color: #fff;
}

.rodape h5 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}

.rodape a:hover {
  text-decoration: underline;
}

