body {
margin:0;
font-family: Arial, sans-serif;
}

.top-bar {
background: #000;
color:#fff;
text-align:center;
padding:10px;
font-size:14px;
}

/* HERO */
.hero {
text-align:center;
padding:30px;
background:#fff5f5;
}

.hero-video {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 18px auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-video {
    max-width: 100%;
    border-radius: 8px;
  }
}

.hero h1 {
font-size:28px;
color:#ff17a6;
}

.hero img {
max-width:300px;
margin:20px 0;
}

.price-box {
margin:10px 0;
}

.old {
text-decoration: line-through;
color: gray;
display:block;
}

.new {
font-size:28px;
color:green;
font-weight:bold;
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #0fae3f, #158a2d, #0fae3f);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 18px;
  margin: 20px auto 30px;
  cursor: pointer;
  width: 80%;
  max-width: 300px;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: ctaBlinkGreen 1.2s ease-in-out infinite;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  filter: brightness(1.15);
}

.cta::before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 65%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translate(0, 0) scale(0.3);
}

.cta:active::before {
  opacity: 1;
  transform: translate(80%, 80%) scale(1);
  transition: none;
}

.cta.big {
  width: 100%;
}

@keyframes ctaBlinkGreen {
  0%, 100% {
    background: linear-gradient(90deg, #0fae3f, #158a2d, #0fae3f);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transform: scale(1);
  }
  40%, 60% {
    background: linear-gradient(90deg, #3dd86e, #1fbd4a, #3dd86e);
    box-shadow: 0 12px 26px rgba(61, 216, 110, 0.5);
    transform: scale(1.03);
  }
  50% {
    background: #31c044;
    box-shadow: 0 14px 30px rgba(49, 192, 68, 0.7);
    transform: scale(1.05);
  }
}

/* COUNTDOWN */
.countdown {
color:red;
font-weight:bold;
margin-top:10px;
}

/* BENEFITS */
.benefits {
background:#f1f1f1;
padding:20px;
text-align:center;
}

/* SOCIAL */
.social-proof {
padding:30px;
text-align:center;
}

.review {
background:#fafafa;
margin:10px;
padding:15px;
border-radius:10px;
}

.gallery {
  padding: 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* CARROSSEL */
.carousel-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  width: 100%;
}

.carousel-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.carousel-section p {
  color: #666;
  margin-bottom: 30px;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-img.active {
  opacity: 1;
}

.carousel-btn {
  background: #ff0000;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #cc0000;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ff0000;
}

/* PRODUCT */
.product {
display:flex;
flex-wrap:wrap;
padding:20px;
gap:20px;
}

.product img {
max-width:100%;
}

.right {
max-width:400px;
}

/* PRODUTO */
.gallery {
  padding: 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* BONUS 1 */
/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* SEÇÃO */
.bonus-section {
  text-align: center;
  padding: 40px 20px;
}

.bonus-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.rosa {
  color: oklab(69.419% 0.22524 -0.02354);
  font-weight: bold;
}

/* 🔥 GRID PERFEITO (igual seu print) */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* tamanho fixo */
  justify-content: center; /* centraliza */
  gap: 30px; /* espaçamento entre cards */
  margin: 0 auto;
}

/* CARD */
.card {
   background: #fff;
  border: 2px solid #00c853 !important; /* 🔥 FORÇA a borda */
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.15);
}

/* IMAGEM */
.card img {
  width: 120px;
  margin: 10px auto;
  display: block;
}

/* TAG "GRÁTIS" */
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: gold;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* TEXTO BONUS */
.bonus {
  color: orange;
  font-size: 14px;
  margin-top: 10px;
}

/* DESCRIÇÃO */
.desc {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

/* PREÇO */
.price {
  margin-top: 10px;
}

.old {
  color: red;
  text-decoration: line-through;
  margin-right: 5px;
  font-size: 13px;
}

.new {
  color: green;
  font-weight: bold;
  font-size: 16px;
}

/* 📱 RESPONSIVO */
@media (max-width: 1000px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 650px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD VENDA */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  justify-content: flex-start;
  padding: 50px 20px;
}

.pricing-container h2 {
  margin-bottom: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 520px;
  text-align: center;
  border: 1px solid #ddd;
  position: relative;
}

/* Em smartphones, cards abaixo do título; desktop lado a lado */
.pricing-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  width: 100%;
  max-width: 520px;
}

/* Mantém os dois cards embaixo do título em todas as larguras */
@media (min-width: 950px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 520px;
  }
}

.card.destaque {
  border: 2px solid #00c853;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: orange;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
}

.tag {
  display: inline-block;
  margin: 10px 0;
  background: #00c853;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.produto-img {
  width: 100%;
  max-width: 300px; /* aumentado ~10% */
  margin: 10px auto;
  transition: transform 0.2s ease;
}

.card.destaque .produto-img {
  transform: scale(1.1); /* leve aumento adicional visual */
}

.beneficios {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 14px;
}

.beneficios li {
  margin: 6px 0;
}

.beneficios .negativo {
  color: red;
}

.preco-antigo {
  text-decoration: line-through;
  color: #999;
  margin-top: 10px;
}

.preco {
  color: #00c853;
  font-size: 28px;
  margin: 10px 0;
}

.card.destaque .preco {
  font-size: 40px;
  font-weight: bold;
}

.card:not(.destaque) .preco {
  color: #000;
  font-size: 28px;
  font-weight: bold;
}

.btn {
  width: auto;
  min-width: 220px;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.btn.comprar {
  background: #00c853;
  color: #fff;
  border: none;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: pulse-green 2s infinite;
}

.btn.comprar:hover {
  transform: scale(1.04);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(0, 200, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

.btn.outline {
  background: transparent;
  border: 2px solid red;
  color: red;
}

/* GARANTIA */
.guarantee {
background:#e6ffe6;
text-align:center;
padding:30px;
}

/* FAQ */
.faq {
  padding: 36px 20px 24px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.faq h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.6px;
}

.item {
  margin-bottom: 12px;
}

.item h3 {
  background: #eee;
  padding: 12px 14px;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: background 0.2s ease;
}

.item h3::after {
content: "▼";
position: absolute;
right: 10px;
font-weight: bold;
}

.item h3.active::after {
content: "-";
}

.item p {
display:none;
padding:10px;
transition: all 0.3s ease;
}

/* FOOTER */
footer {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

footer .rodape-imagens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* imagens do rodapé */
footer img,
.guarantee img {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
}

