* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --verde: rgb(0, 146, 70);
  --verde-claro: rgb(230, 244, 235);
  --vermelho: rgb(206, 43, 55);
  --dourado: rgb(200, 146, 42);
  --preto: rgb(17, 24, 39);
  --texto: rgb(17, 17, 17);
  --cinza: rgb(75, 85, 99);
  --cinza-claro: rgb(249, 250, 251);
  --cinza-fundo: rgb(243, 244, 246);
  --branco: rgb(255, 255, 255);
  --borda: rgb(221, 232, 226);
}

html {
  scroll-behavior: smooth;
}

body {
  cursor: auto;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--branco);
  color: var(--texto);
border-top: none;
border-image: none;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* TOP BAR */
.top-bar {
  background: var(--vermelho);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--branco);
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  background: linear-gradient(
    rgb(255, 255, 255) 0%,
    rgb(215, 224, 234) 100%
  );
  text-align: center;
  padding: 32px 20px 36px;
}

.security-badge {
  background: var(--verde-claro);
  color: var(--verde);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 11px;
  margin-bottom: 24px;
  line-height: 15.4px;
  box-shadow: rgba(0, 146, 70, 0.15) 0px 4px 14px 0px;
}

.security-badge strong {
  font-weight: 900;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: rgb(26, 26, 26);
  line-height: 46.36px;
  max-width: 740px;
  margin: 0 auto 22px;
}

.hero h1 span {
  color: var(--verde);
}

.hero h1 em {
  color: rgb(26, 26, 26);
  font-style: normal;
}

.hero-image {
  max-width: 530px;
  margin: 0 auto 22px;
  border-radius: 12px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 34px 0px;
}

.hero p {
  font-size: 15px;
  color: var(--cinza);
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 24.75px;
}

.btn-primary {
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  font-size: 16px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: rgba(0, 146, 70, 0.4) 0px 4px 18px 0px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: rgb(0, 124, 59);
  transform: translateY(-1px);
}

.access-note {
  font-size: 12px !important;
  color: rgb(187, 187, 187) !important;
  margin-top: 9px !important;
  margin-bottom: 0 !important;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  color: rgb(85, 85, 85);
  flex-wrap: wrap;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.6px solid var(--branco);
  margin-left: -7px;
}

.avatars img:first-child {
  margin-left: 0;
}

/* CARROSSEL */
.carousel-section {
  background: var(--preto);
  padding: 48px 0 40px;
  text-align: center;
  overflow: hidden;
}

.carousel-section h2 {
  color: var(--branco);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 30px;
  padding: 0 20px;
}

.carousel-section h2 span {
  color: var(--dourado);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 28px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  padding: 8px 20px 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-item {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px 0px;
  transition: box-shadow 0.2s;
}

.carousel-item img:hover {
  box-shadow: rgba(0, 0, 0, 0.22) 0px 6px 18px 0px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(58, 80, 112);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots button.active {
  background: var(--dourado);
  transform: scale(1.3);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.carousel-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--verde);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  color: var(--branco);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.carousel-controls button:hover {
  background: rgb(0, 124, 59);
  transform: scale(1.05);
}

/* O QUE RECEBE */
.learn-section {
  background: var(--branco);
  padding: 54px 20px;
  text-align: center;
}

.learn-section h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: left;
}

.benefits-grid div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgb(51, 51, 51);
  line-height: 21px;
}

.benefits-grid span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--branco);
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

.problem-solution {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.card {
  background: var(--cinza-claro);
  border-radius: 14px;
  padding: 26px 28px;
  max-width: 310px;
  text-align: center;
  border: 0.8px solid var(--borda);
}

.card .emoji {
  font-size: 32px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--cinza);
  line-height: 23.1px;
}

/* COUNTDOWN */
.countdown-section {
  background: var(--vermelho);
  padding: 30px 20px;
  text-align: center;
  color: var(--branco);
}

.countdown-section > p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.92;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 60px;
  text-align: center;
}

.countdown span {
  font-size: 32px;
  font-weight: 900;
  display: block;
}

.countdown small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.btn-white {
  background: var(--branco);
  color: var(--vermelho);
  box-shadow: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-white:hover {
  background: rgb(245, 245, 245);
  transform: translateY(-1px);
}

/* ========================================= */
/* PARA QUEM É */
/* ========================================= */

.for-whom{
    background:var(--cinza-fundo);
    padding:52px 20px;
    text-align:center;
}

.for-whom h2{
    font-size:28px;
    font-weight:900;
    color:var(--preto);
    margin-bottom:28px;
}

.for-whom h2 em{
    color:var(--vermelho);
    font-style:normal;
}

.for-whom-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:16px;
    max-width:860px;
    margin:auto;
}

.for-card{

    background:#fff;

    border-radius:12px;

    padding:22px 18px;

    text-align:left;

    border:1px solid rgb(200,221,208);

    display:flex;

    gap:14px;

    align-items:flex-start;

    transition:.2s;

}

.for-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.for-card>div{

    font-size:28px;

    flex-shrink:0;

}

.for-card h4{

    font-size:14px;

    font-weight:800;

    color:var(--preto);

    margin-bottom:5px;

}

.for-card p{

    font-size:13px;

    color:var(--cinza);

    line-height:1.5;

}

/* ========================================= */
/* PRODUTO */
/* ========================================= */

.product-section{

    background:#f9fafb;

    padding:52px 20px;

}

.section-label{

    display:inline-block;

    background:var(--vermelho);

    color:#fff;

    font-size:12px;

    font-weight:800;

    padding:6px 22px;

    border-radius:20px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:32px;

}

.product-content{

    max-width:900px;

    margin:auto;

    display:flex;

    gap:36px;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

}

.product-image{

    width:300px;

}

.product-image img{

    width:100%;

    border-radius:12px;

}

.product-info{

    max-width:470px;

}

.product-info .tag{

    display:inline-block;

    background:var(--dourado);

    color:#fff;

    font-size:11px;

    font-weight:900;

    padding:4px 14px;

    border-radius:20px;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.product-info h2{

    font-size:28px;

    font-weight:900;

    color:var(--preto);

    margin-bottom:14px;

}

.product-info ul{

    list-style:none;

    margin-bottom:18px;

}

.product-info li{

    padding:7px 0;

    display:flex;

    align-items:flex-start;

    gap:9px;

    font-size:14px;

    color:#333;

    line-height:1.5;

    border-bottom:1px solid #e8e8e8;

}

.product-info li:last-child{

    border:none;

}

.product-info li::before{

    content:"✔";

    color:var(--verde);

    font-weight:900;

}

.product-info p{

    font-size:13px;

    color:#999;

    font-style:italic;

    margin-bottom:18px;

}

/* ========================================= */
/* BONUS */
/* ========================================= */

.bonus-section{

    background:#f9fafb;

    padding:0 20px 54px;

    text-align:center;

}

.bonus-header{

    background:var(--vermelho);

    color:#fff;

    padding:26px 20px;

    margin:0 -20px 38px;

}

.bonus-header h2{

    font-size:26px;

    font-weight:900;

    margin-bottom:6px;

}

.bonus-header p{

    font-size:14px;

    opacity:.88;

}

.bonus-label{

    display:inline-block;

    background:var(--dourado);

    color:#fff;

    font-size:13px;

    font-weight:900;

    padding:8px 26px;

    border-radius:20px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:30px;

}

.bonus-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:20px;

    max-width:1000px;

    margin:auto auto 34px;

}

.bonus-card{

    background:#fff;

    border-radius:14px;

    padding:18px;

    border:1px solid rgb(225,225,225);

    transition:.2s;

}

.bonus-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 24px rgba(0,0,0,.08);

}

.bonus-card img{

    width:100%;

    border-radius:10px;

    margin-bottom:14px;

}

.bonus-card span{

    display:inline-block;

    background:var(--verde);

    color:#fff;

    font-size:11px;

    font-weight:900;

    padding:4px 12px;

    border-radius:30px;

    margin-bottom:10px;

}

.bonus-card h4{

    font-size:17px;

    font-weight:900;

    margin-bottom:8px;

    color:var(--preto);

}

.bonus-card p{

    font-size:13px;

    color:var(--cinza);

    line-height:1.6;

}

/* PREÇO / OFERTA IGUAL AO MODELO */
.pricing-section {
  background: rgb(255, 255, 255);
  padding: 54px 20px;
  text-align: center;
}

.pricing-card {
  background: rgb(255, 255, 255);
  border: 1.6px solid var(--verde);
  border-radius: 12px;
  padding: 42px 24px 24px;
  max-width: 420px;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: rgba(0, 146, 70, 0.15) 0px 12px 40px 0px;
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.urgent-offer {
  background: var(--vermelho);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.bonus-included {
  font-size: 13px;
  color: var(--cinza);
  margin-bottom: 8px;
}

.offer-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--preto);
  line-height: 1.25;
  margin-bottom: 16px;
}

.offer-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 16px;
  border-radius: 12px;
}

.bonus-strip {
  background: var(--dourado);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-list {
  list-style: none;
  text-align: left;
  margin: 0 0 18px;
  padding: 0;
}

.offer-list li {
  font-size: 14px;
  color: rgb(51, 51, 51);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 21px;
  border-bottom: 0.8px solid rgb(232, 232, 232);
}

.offer-list li::before {
  content: "✓";
  color: var(--verde);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.offer-list li:last-child {
  border-bottom: none;
}

.price-box {
  text-align: center;
  margin: 20px 0 14px;
}

.price-box p:first-child {
  color: rgb(206, 43, 55);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.price-box p:first-child strong,
.price-box p:first-child s {
  color: rgb(206, 43, 55);
}

.price {
  color: rgb(0, 146, 70);
  font-weight: 900;
  line-height: 0.9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
  text-shadow: rgba(0, 146, 70, 0.15) 0px 4px 8px;
}

.currency {
  font-size: 28px;
  font-weight: 900;
  color: rgb(0, 146, 70);
  line-height: 1;
  margin-bottom: 7px;
}

.amount {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -3px;
  color: rgb(0, 146, 70);
}

.price-box p:last-child {
  color: rgb(75, 85, 99);
  font-size: 14px;
  margin-top: 2px;
}

.savings {
  display: inline-block;
  border: 1.5px solid rgb(0, 146, 70);
  background: rgb(230, 244, 235);
  color: rgb(0, 146, 70);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 auto 18px;
}
.checkout-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}

.payment-methods {
  margin-top: 14px;
}

.payment-methods img {
  max-width: 260px;
  margin: 0 auto;
}
/* ========================================= */
/* GARANTIA */
/* ========================================= */

.guarantee-section {
  background: var(--cinza-fundo);
  padding: 52px 20px;
  text-align: center;
}

.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid rgb(221, 232, 226);
}

.guarantee-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.guarantee-box h2 {
  font-size: 27px;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 12px;
}

.guarantee-box p {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================= */
/* FAQ */
/* ========================================= */

.faq-section {
  background: var(--branco);
  padding: 54px 20px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--preto);
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  background: var(--cinza-claro);
  border: 1px solid rgb(232, 232, 232);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 48px 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  color: var(--preto);
  cursor: pointer;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--verde);
  font-size: 24px;
  font-weight: 900;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.65;
}

/* ========================================= */
/* CTA FINAL */
/* ========================================= */

.final-cta {
  background: var(--preto);
  padding: 54px 20px;
  text-align: center;
  color: var(--branco);
}

.final-cta h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 14px;
}

.final-cta p {
  font-size: 15px;
  color: rgb(209, 213, 219);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

footer {
  background: rgb(10, 15, 25);
  color: rgb(209, 213, 219);
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
  line-height: 1.7;
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media (max-width: 768px) {
  .hero {
    padding: 30px 18px 34px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  .hero p {
    font-size: 14px;
    line-height: 23px;
  }

  .btn-primary,
  .btn-white {
    width: 100%;
    max-width: 360px;
    padding: 15px 22px;
    font-size: 14px;
  }

  .carousel-section h2,
  .learn-section h2,
  .for-whom h2,
  .faq-section h2,
  .final-cta h2 {
    font-size: 25px;
  }

  .carousel-item {
    flex: 0 0 82vw;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .problem-solution {
    gap: 18px;
  }

  .card {
    max-width: 100%;
  }

  .product-content {
    gap: 28px;
    text-align: center;
  }

  .product-info {
    max-width: 100%;
  }

  .product-info ul {
    text-align: left;
  }

  .pricing-card {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 9px 10px;
    font-size: 11px;
  }

  .security-badge {
    padding: 8px 18px;
    font-size: 10px;
  }

  .security-badge strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  .hero-image {
    max-width: 100%;
  }

  .social-proof {
    font-size: 12px;
  }

  .carousel-section {
    padding: 44px 0 38px;
  }

  .carousel-controls button {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .learn-section,
  .for-whom,
  .product-section,
  .pricing-section,
  .guarantee-section,
  .faq-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bonus-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bonus-header {
    margin-left: -16px;
    margin-right: -16px;
  }

  .product-image {
    width: 100%;
    max-width: 300px;
  }

  .pricing-card {
    padding: 40px 18px 22px;
  }

  .popular {
    font-size: 11px;
    padding: 6px 16px;
  }

  .price {
    font-size: 52px;
  }

  .price small {
    font-size: 22px;
  }

  .guarantee-box {
    padding: 28px 20px;
  }

  .guarantee-box h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 17px 44px 17px 17px;
  }

  .faq-question::after {
    right: 17px;
  }

  footer {
    font-size: 11px;
  }
}

/* CORREÇÃO DE OVERFLOW MOBILE */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

section {
  max-width: 100%;
  overflow-x: hidden;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  max-width: none;
}

.btn-primary,
.btn-white,
.checkout-btn {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
}

.pricing-card {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.offer-list li {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .learn-section,
  .for-whom,
  .product-section,
  .bonus-section,
  .pricing-section,
  .guarantee-section,
  .faq-section,
  .final-cta {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bonus-header {
    margin-left: -16px;
    margin-right: -16px;
  }

  .pricing-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .amount {
    font-size: 52px;
  }

  .offer-image {
    max-width: 260px;
  }

  .payment-methods img {
    max-width: 240px;
  }
}