:root {
  --bg: #ff6900;
  --bg-soft: #efefef;
  --white: #ffffff;
  --text: #333333;
  --muted: #666666;
  --dark: #111111;
  --blue: #ff6900;
  --blue-strong: #ff6900;
  --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-blue {
  background: var(--blue);
  color: #fff;
}

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

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

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

.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(--blue);
  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(--blue);
  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(--blue);
  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(--blue);
  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(--blue);
  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(--blue);
}

.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(--blue);
  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(--blue);
  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(--blue);
}

.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(--blue);
  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(--blue);
  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(--blue);
}

.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(--blue);
  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;
}


/* ================================
   AVALIAÇÕES - LISIVITA
   COR PRINCIPAL: #0F5FB9
================================ */

.testimonials {
  padding: 70px 20px;
}

.testimonials .container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* ================================
 CAIXA PRINCIPAL
================================ */

.reviews-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(15, 95, 185, 0.10);
}

/* ================================
 TÍTULO
================================ */

.section-title-orange {
  color: #0F5FB9;
}

/* ================================
 RESUMO DAS AVALIAÇÕES
================================ */

.reviews-summary {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e3eaf2;
}

.rating-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rating-left h3 {
  font-size: 58px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 800;
  color: #ff6900;
}

.stars {
  color: #ff6900;
  font-size: 23px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.rating-left span {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  font-size: 14px;
}

/* ================================
 BOTÃO
================================ */

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 8px;
  background: #ff6900;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.review-btn:hover {
  background: #0b4d97;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 95, 185, 0.20);
}

/* ================================
 BARRAS DE AVALIAÇÃO
================================ */

.rating-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.bar {
  display: grid;
  grid-template-columns: 35px 1fr 40px;
  align-items: center;
  gap: 10px;
}

.bar > span {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.bar small {
  font-size: 13px;
  color: #777;
  text-align: right;
}

.progress {
  height: 9px;
  width: 100%;
  background: #e8eef5;
  border-radius: 20px;
  overflow: hidden;
}

.progress > div {
  height: 100%;
  background: #ff6900;
  border-radius: 20px;
}

/* ================================
 AVALIAÇÕES INDIVIDUAIS
================================ */

.review-item {
  padding: 30px 0;
  border-bottom: 1px solid #e3eaf2;
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-header strong {
  font-size: 17px;
  color: #1f2937;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #168a45;
  font-size: 12px;
  font-weight: 600;
}

.review-item .stars {
  color: #ff6900;
  font-size: 18px;
  margin-bottom: 5px;
}

.review-item > small {
  display: block;
  color: #9ca3af;
  font-size: 12px;
  margin-bottom: 12px;
}

.review-item p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  max-width: 850px;
}

/* ================================
 IMAGENS DOS CLIENTES
================================ */

.review-images {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.review-images img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dbe5f0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.review-images img:hover {
  transform: scale(1.03);
  border-color: #0F5FB9;
  box-shadow: 0 5px 15px rgba(15, 95, 185, 0.15);
}


/* ================================
 TABLET
================================ */

@media (max-width: 768px) {

  .testimonials {
      padding: 50px 15px;
  }

  .reviews-box {
      padding: 25px 20px;
      border-radius: 14px;
  }

  .reviews-summary {
      grid-template-columns: 1fr;
      gap: 35px;
  }

  .rating-left h3 {
      font-size: 50px;
  }

  .rating-bars {
      width: 100%;
  }

  .review-item {
      padding: 25px 0;
  }
}


/* ================================
 CELULAR
================================ */

@media (max-width: 480px) {

  .testimonials {
      padding: 40px 12px;
  }

  .testimonials .section-title {
      font-size: 27px;
      margin-bottom: 25px;
  }

  .reviews-box {
      padding: 22px 16px;
  }

  .rating-left h3 {
      font-size: 46px;
  }

  .rating-left span {
      font-size: 13px;
  }

  .stars {
      font-size: 21px;
  }

  .review-btn {
      width: 100%;
      max-width: 230px;
  }

  .bar {
      grid-template-columns: 32px 1fr 30px;
      gap: 7px;
  }

  .progress {
      height: 8px;
  }

  .review-header {
      flex-wrap: wrap;
      gap: 7px;
  }

  .review-header strong {
      font-size: 16px;
  }

  .review-item p {
      font-size: 14px;
      line-height: 1.6;
  }

  .review-images img {
      width: 90px;
      height: 90px;
  }
}.section-blue {
  background: #0F5FB9;
}

.lisivita-steps {
  padding: 80px 20px;
}

.lisivita-steps .container {
  max-width: 1000px;
  margin: 0 auto;
}


/* =========================
 CABEÇALHO
========================= */

.steps-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.steps-label {
  display: inline-block;

  padding: 7px 16px;

  margin-bottom: 15px;

  border-radius: 30px;

  background: rgba(255,255,255,0.15);

  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.steps-header .section-title {
  margin-bottom: 15px;
}

.steps-header .section-subtitle {
  margin: 0;
  line-height: 1.6;
}


/* =========================
 LISTA DE ETAPAS
========================= */

.lisivita-steps-list {
  position: relative;
}


/* Linha vertical */

.lisivita-steps-list::before {
  content: "";

  position: absolute;

  left: 39px;
  top: 45px;
  bottom: 45px;

  width: 2px;

  background: rgba(255,255,255,0.30);
}


/* =========================
 CADA ETAPA
========================= */

.lisivita-step {
  position: relative;

  display: grid;

  grid-template-columns: 80px 1fr 190px;

  align-items: center;

  gap: 30px;

  min-height: 190px;

  padding: 25px 30px 25px 0;

  margin-bottom: 20px;

  background: #ffffff;

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.lisivita-step:last-child {
  margin-bottom: 0;
}


/* =========================
 NÚMERO
========================= */

.step-number {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  margin-left: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #0F5FB9;

  color: #ffffff;

  font-size: 16px;
  font-weight: 800;

  border: 5px solid #ffffff;

  box-shadow: 0 4px 12px rgba(15,95,185,0.25);
}


/* =========================
 TEXTO
========================= */

.step-content h3 {
  margin: 0 0 10px;

  color: #0F5FB9;

  font-size: 21px;
  font-weight: 800;
}

.step-content p {
  margin: 0;

  color: #555555;

  font-size: 15px;

  line-height: 1.7;
}

.step-content strong {
  color: #0F5FB9;
}


/* =========================
 IMAGEM
========================= */

.step-icon {
  width: 160px;
  height: 140px;

  overflow: hidden;

  border-radius: 12px;

  background: #f4f8fc;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.lisivita-step:hover .step-icon img {
  transform: scale(1.04);
}


/* =========================
 RODAPÉ
========================= */

.steps-footer {
  text-align: center;

  margin-top: 45px;
}

.steps-footer p {
  margin: 0 0 20px;

  color: #ffffff;

  font-size: 15px;
}

.steps-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 30px;

  border-radius: 8px;

  background: #ffffff;

  color: #0F5FB9;

  text-decoration: none;

  font-size: 14px;
  font-weight: 800;

  transition: all 0.25s ease;
}

.steps-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  background: #f5f9fd;
}


/* =========================
 TABLET
========================= */

@media (max-width: 800px) {

  .lisivita-step {
      grid-template-columns: 70px 1fr;

      padding: 25px;

      gap: 20px;
  }

  .step-icon {
      display: none;
  }

  .lisivita-steps-list::before {
      left: 35px;
  }

}


/* =========================
 CELULAR
========================= */

@media (max-width: 550px) {

  .lisivita-steps {
      padding: 55px 15px;
  }

  .steps-header {
      margin-bottom: 35px;
  }

  .steps-header .section-title {
      font-size: 28px;
  }

  .steps-header .section-subtitle {
      font-size: 14px;
  }

  .lisivita-step {
      grid-template-columns: 55px 1fr;

      padding: 22px 18px;

      gap: 15px;

      min-height: auto;

      border-radius: 14px;
  }

  .lisivita-steps-list::before {
      left: 27px;
      top: 40px;
      bottom: 40px;
  }

  .step-number {
      width: 48px;
      height: 48px;

      margin-left: 2px;

      font-size: 13px;

      border-width: 4px;
  }

  .step-content h3 {
      font-size: 18px;
      margin-bottom: 8px;
  }

  .step-content p {
      font-size: 14px;
      line-height: 1.6;
  }

  .steps-footer {
      margin-top: 30px;
  }

  .steps-button {
      width: 100%;
      max-width: 330px;
  }
}