:root {
  --bg: #f4f4f4;
  --bg-soft: #efefef;
  --white: #ffffff;
  --text: #333333;
  --muted: #666666;
  --dark: #111111;
  --orange: #f25500;
  --orange-strong: #f45100;
  --green: #18b532;
  --green-dark: #10b320;
  --green-whats: #00c853;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

section,
div,
img,
a,
p,
h1,
h2,
h3,
h4,
ul,
li,
button {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-soft);
}

.section-orange {
  background: var(--orange);
  color: #fff;
}

.section-center {
  text-align: center;
}

.section-title {
  line-height: 1.2;
  font-size: clamp(24px, 4vw, 32px);
}

.section-title-orange {
  color: var(--orange);
}

.section-title-light {
  color: #fff;
}

.section-subtitle {
  max-width: 760px;
  margin: 12px auto 46px;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.92);
}

.section-subtitle-dark {
  color: var(--muted);
}

.grid {
  align-items: start;
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.center-btn{
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.top-alert {
  padding: 8px 12px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  border: 0;
  text-align: center;
  font-weight: 700;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  animation: pulse-btn 1.8s infinite;
  padding: 15px 28px;
  border-radius: 10px;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(24, 181, 50, 0.25);
}

.btn-cta {
  animation: pulse-btn 1.8s infinite;
  padding: 18px 36px;
  border-radius: 10px;
  background: #16c60c;
  box-shadow: 0 8px 18px rgba(24, 181, 50, 0.25);
  font-size: 18px;
}

.btn-buy {
  animation: pulse-btn 1.8s infinite;
  padding: 18px 42px;
  border-radius: 999px;
  background: var(--green-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  font-size: 20px;
}

.btn-offer {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--green);
}

.btn-whatsapp {
  animation: pulse-btn 1.8s infinite;
  margin-top: -40px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--green-whats);
}

.btn-rastreio {
  animation: pulse-btn 1.8s infinite;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--green-whats);
  display: block;
  margin: -20px auto 0;
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: -10px auto 0; /* aproxima do médico */
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-container,
.garantia-container,
.container-atendimento {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-text,
.hero-image,
.garantia-texto,
.garantia-img,
.texto-atendimento,
.icone-atendimento {
  flex: 1 1 0;
  min-width: 0;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.15;
}

.subtitle {
  margin-bottom: 22px;
  font-size: clamp(16px, 2vw, 18px);
}

.benefits {
  margin: 24px 0 32px;
  padding-left: 14px;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}

.warning {
  position: relative;
  z-index: 2;
  padding: 40px 0 40px;
  text-align: center;
  background: var(--orange);
  color: #fff;
}

.warning h2 {
  max-width: 900px;
  margin: 0 auto 56px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
}

.warning-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.warning-card img {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  margin: 0 auto -58px;
  border: 6px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.warning-card-body {
  flex: 1;
  height: 100%;
  padding: 84px 22px 28px;
  border-radius: 20px;
  background: #f2f2f2;
  color: var(--text);
  box-shadow: var(--shadow);
}

.warning-card-body h3 {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 20px;
}

.experts {
  background: var(--bg-soft);
}

.experts-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0 80px;
}

.experts-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1500px;
  padding: 40px 70px 0;
  border-radius: 28px;
  background: var(--orange);
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.experts-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.experts-image img {
  width: 100%;
  max-width: 560px;
}

.experts-content {
  flex: 0 0 60%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.experts-text h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.02;
  color: #fff;
}

.experts-text p {
  margin-bottom: 18px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.3;
  color: #fff;
}

.experts-content .btn-block {
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 10px 0 0;
  padding: 20px 42px;
  border-radius: 14px;
  font-size: 20px;
}

.feature-card,
.step-card,
.media-card,
.offer-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.step-card {
  position: relative;
  padding: 62px 20px 28px;
  background: #fff;
  color: var(--text);
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
  color: var(--orange);
}

.feature-card p,
.step-card p,
.media-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.feature-icon,
.step-image {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.feature-icon img {
  width: 100px;
  height: 140px;
  object-fit: contain;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  text-align: left;
  box-shadow: var(--shadow);
}

.testimonial-card img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-name {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.media-card {
  padding: 28px 20px;
  border: 2px solid #000;
  background: #fff;
}

.media-card img {
  max-width: 180px;
  max-height: 90px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.scarcity {
  padding: 24px 0;
  background: var(--orange);
  color: #fff;
}

.scarcity-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.scarcity-text {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.time-box {
  min-width: 90px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-align: center;
}

.time-box span {
  display: block;
  color: #000;
  font-size: 28px;
  font-weight: 800;
}

.time-box small {
  color: #000;
  font-size: 12px;
}

.checkout-image img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.purchase-subtitle {
  font-size: 18px;
}

.offers-grid {
  align-items: stretch;
}

.offers{
  padding-top:40px;
  padding-bottom:100px;
}

.offer-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  padding:0;
  border-radius:28px;
  overflow:hidden;
}

.offer-image{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.offer-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.btn-offer{
  display:block;
  width:100%;
  padding:18px 20px;
  border-radius:0;
  margin:0;
}

.offer-featured {
  transform: scale(1.03);
}

.offers-header{
  max-width:800px;
  margin:0 auto 60px;
  text-align:center;
}

.offers-header h2{
  font-size:clamp(28px,4vw,42px);
  font-weight:800;
  color:#fff;
  margin-bottom:20px;
}

.offers-alert{
  font-size:clamp(18px,2vw,22px);
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

.offers-sub{
  font-size:clamp(16px,1.6vw,18px);
  color:#fff;
  opacity:.95;
}

.garantia-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.garantia-img {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.garantia-img img {
  width: 100%;
  max-width: 420px;
}

.garantia-texto {
  flex: 0 0 50%;
  max-width: 650px;
  text-align: left;
  margin-top: 0;
}

.garantia-texto .section-title {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
}

.garantia-texto p {
  margin-bottom: 28px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  color: #333;
}

.garantia-btn-desktop {
  display: inline-block;
  margin: 0;
  padding: 18px 42px;
  border-radius: 14px;
  font-size: 20px;
}

.garantia-btn-mobile {
  display: none;
}

.support {
  padding: 60px 0;
  background: var(--orange);
}

.container-atendimento {
  justify-content: center;
  gap: 56px;
}

.texto-atendimento {
  color: #fff;
}

.texto-atendimento h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
}

.texto-atendimento p,
.texto-atendimento .aviso {
  color: rgba(255, 255, 255, 0.95);
}

.icone-atendimento {
  flex: 0 1 220px;
  text-align: center;
}

.icone-atendimento img {
  width: 180px;
  margin: 0 auto;
}

.faq-section {
  padding: 40px 0;
  background: var(--bg-soft);
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.faq-title {
  width: 100%;
  text-align: center;
}

.faq-title h2 {
  color: var(--orange);
  font-size: 24px;
  line-height: 1.2;
}

.faq-questions {
  width: 100%;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  width: 100%;
  padding: 15px 18px;
  border: 0;
  background: var(--orange);
  color: #fff;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: #fff;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  color: #333;
  font-size: 14px;
}

.footer {
  padding: 40px 0 28px;
  background: var(--dark);
  color: #ccc;
  font-size: 14px;
}

.btn-rastreio {
  animation: pulse-btn 1.8s infinite;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 36px;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--green-whats);
  color: #fff;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer p,
.footer a {
  color: #fff;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.divisor-forma {
  width: 100%;
  height: 90px;
  overflow: hidden;
  line-height: 0;
  background: var(--orange);
}

.divisor-forma svg {
  display: block;
  width: 100%;
  height: 100%;
}

.warning {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 40px 0;
  text-align: center;
  background: var(--orange);
  color: #fff;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-container,
  .container-atendimento {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .garantia-container {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  
  .garantia-texto {
    order: 1;
    max-width: 100%;
    text-align: center;
  }
  
  .garantia-img {
    order: 2;
    max-width: 100%;
  }
  
  .garantia-img img {
    max-width: 220px;
  }
  
  .garantia-btn-desktop {
    display: none !important;
  }
  
  .garantia-btn-mobile {
    order: 3;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-text,
  .texto-atendimento {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
    .container {
      width: calc(100% - 24px);
    }
  
    .hero {
      background: #ececec;
      padding-bottom: 28px;
    }
  
    /* MATAMOS TUDO DO HERO::AFTER E BEFORE AQUI, DEIXE APENAS ISSO: */
    .hero::before,
    .hero::after { 
      display: none !important; 
    }
  
    .hero-container {
      flex-direction: column-reverse;
      padding-top: 56px;
      padding-bottom: 56px;
    }
  
    .warning {
      padding-top: 24px;
      padding-bottom: 40px;
    }
    
    .warning h2,
    .warning .cards-grid {
      position: relative;
      z-index: 2;
    }
  
    /* ... Daqui para baixo o resto do seu código está PERFEITO, não precisa mexer ... */
    .section {
      padding-top: 56px;
      padding-bottom: 56px;
    }

    .divisor-forma {
      height: 38px;
    }

  .grid-3,
  .grid-2,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btn-rastreio {
    max-width: 340px;
    margin: 0 auto 40px;
  }

  .hero-text h1,
  .warning h2,
  .experts-text h2,
  .section-title,
  .texto-atendimento h2,
  .faq-title h2 {
    font-size: 24px;
  }

  .hero-image img {
    max-width: 300px;
    max-height: 260px;
  }

  .benefits li {
    align-items: flex-start;
    text-align: left;
    font-size: 16px;
  }

  .btn-primary,
  .btn-cta,
  .btn-buy {
    animation: pulse-btn 1.8s infinite;
    width: 100%;
    max-width: 420px;
    padding: 8px 18px;
    font-size: 20px;
  }

  .btn-whatsapp {
    width: min(100%, 340px);
    padding-left: 9px;
    padding-right: 20px;
    font-size: 20px;
  }



  .warning-card img {
    z-index: 2;
    width: 105px;
    height: 105px;
    margin: 0 auto -34px;
  }

  .warning-card-body {
    padding: 60px 22px 12px;
    border-radius: 20px;
    background: #f2f2f2;
    color: var(--text);
    box-shadow: var(--shadow);
  }
  
  .warning-card-body p {
    margin-bottom: 0;
  }

  .experts-wrap {
    padding: 40px 0 56px;
  }

  .experts-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 360px;
    padding: 28px 22px 26px;
    gap: 20px;
  }
  
  .experts-content {
    display: contents;
  }
  
  .experts-text {
    order: 1;
    max-width: 100%;
  }
  
  .experts-image {
    order: 2;
    flex: none;
    margin-top: 20px;
    align-self: center;
  }
  
  .experts-image img {
    max-width: 240px;
  }
  
  .experts-content .btn-block {
    order: 3;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: -20px auto 0;
  }
  
  .experts-text h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .experts-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .time-box {
    min-width: 86px;
    padding: 12px 16px;
  }

  .purchase-subtitle {
    font-size: 16px;
  }

  .garantia-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .garantia-img,
  .garantia-texto {
    flex: none;
    max-width: 100%;
  }

  .garantia-img img {
    max-width: 220px;
  }

  .garantia-texto {
    text-align: center;
  }

  .texto-atendimento p {
    font-size: 15px;
  }

  .icone-atendimento img {
    width: 140px;
  }

  .top-alert {
    font-size: 12px;
  }

  .offers{
    padding-top:20px;
  }

  .faq-question,
  .faq-answer,
  .faq-answer p,
  .btn {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  

}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(24,181,50,0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(24,181,50,0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(24,181,50,0);
  }
}

.product-update-bar{
  width:100%;
  background:#000;
  color:#fff;
  text-align:center;
  padding:12px 10px;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.3px;
}

.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.popup-content{
  background:white;
  padding:30px;
  border-radius:12px;
  max-width:450px;
  text-align:center;
  position:relative;
  font-family:Arial, sans-serif;
}

.popup-content h2{
  color:#ff5a00;
  margin-bottom:15px;
}

.popup-content p{
  font-size:16px;
  margin-bottom:10px;
}

.popup-btn{
  background:#19c037;
  color:white;
  border:none;
  padding:12px 25px;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
}

.popup-btn:hover{
  background:#14a62e;
}

.close-popup{
  position:absolute;
  right:15px;
  top:10px;
  font-size:22px;
  cursor:pointer;
}