:root{
  --bg-solid: #5b9ed6;
  --dark: #0b1622;
  --dark-2: #101f2e;
  --cyan: #06c7ef;
  --cyan-2: #2ad6ff;
  --text: #ffffff;
  --muted: rgba(255,255,255,.8);
  --green: #0a7d2d;
  --radius: 26px;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #0b1622;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

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

/* HERO */
.hero{
  background-color: var(--bg-solid);
  background-image: url("../assets/img/hero/hero-bike-udex.png");
  background-size: cover;
  background-position: 80% 42%;
  background-repeat: no-repeat;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}

.hero__overlay{
  width: 100%;
  background: transparent;
}


.hero__container{
  padding: 34px 0 56px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}


.hero__left{
  width: min(560px, 100%);
  margin-left: 0;
}

.brand{
  gap: 14px;
}
.brand__logo{
  display:block;
  width: 120px;
  height: auto;
}




.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand__text strong{font-weight:900; letter-spacing:.5px}
.brand__text span{font-size:12px; font-weight:700; opacity:.9; letter-spacing:2.5px}

.hero__content{padding-top: 36px}
.hero__title{
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: .6px;
  color: #070c12;
  text-transform: uppercase;
  margin: 18px 0 18px;
}
.hero__title .line{display:block}

.hero__lead{
  width: min(420px, 100%);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  margin: 0 0 18px;
}

.hero__hint{
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 10px 0 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .5px;
  border-radius: 10px;
  padding: 12px 18px;
  text-transform: uppercase;
  user-select:none;
  transition: filter .15s ease, transform .15s ease;
}
.btn:active{transform: translateY(1px)}
.btn:hover{filter: brightness(1.12)}

.btn--whatsapp{
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.wa-ico{width: 26px; height: 26px}

/* Section base */
.section{
  padding: 72px 0;
}

.section--cyan{
  background: var(--cyan);
  color: #062433;
}

.section--cyan .container{
  color: #05202e;
}

.section--dark{
  background: var(--dark);
}

.section--texture{
  background-image: url("../assets/img/backgrounds/bg-texture-dark.png");
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
}


.section__title{
  text-transform: uppercase;
  text-align:center;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(30px, 3.2vw, 54px);
  margin: 0 0 34px;
}

/* Badges grid (tópicos em imagem) */
.badges{
  width: min(920px, 100%);
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.badges__row{
  display:flex;
  gap: 18px;
  justify-content:center;
  flex-wrap:wrap;
}
.badge{
  width: 264px;
  max-width: 100%;
}

/* About + Slider section */
.about{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items:center;
}

.slider{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.25);
}
.slider__img{width:100%; height: 360px; object-fit: cover}

.slider__nav{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 10px;
  pointer-events:none;
}

.slider__btn{
  pointer-events:auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.88);
  color: #0b1622;
  border-radius: 10px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: filter .15s ease;
}
.slider__btn:hover{filter: brightness(.95)}

.about__kicker{
  color: var(--cyan-2);
  font-size: 44px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.about__text{
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  margin: 0 0 18px;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.step{
  text-align:center;
  color: #05202e;
}
.step__num{
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: #073b52;
  margin: 0 auto 14px;
  display:grid;
  place-items:center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.step__title{font-weight: 900; font-size: 20px; margin: 0 0 8px}
.step__desc{margin:0; opacity:.85; line-height:1.55}

/* Final CTA */
.cta-wrap{
  background: #0f1c29;
  padding: 64px 0;
}

.cta{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  padding: 46px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}

.cta__title{
  color: var(--cyan-2);
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.cta__right{
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items:center;
}
.cta__divider{
  width: 1px;
  height: 110px;
  background: rgba(255,255,255,.18);
  justify-self:center;
}
.cta__desc{
  margin: 0 0 16px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.btn--cta{
  width: min(420px, 100%);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 16px;
}

/* Footer */
.footer{
  background: #0b1622;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.social{
  display:flex;
  gap: 14px;
}
.social a{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  opacity: .9;
}
.social a:hover{opacity:1}

.footer__brand{
  display:flex;
  align-items:center;
  gap: 10px;
  opacity:.95;
}
.footer__brand .mark{
  width: 34px;
  height: 34px;
  background: #2ad6ff;
  border-radius: 10px;
  clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
}
.footer__copy{
  font-size: 13px;
  opacity:.8;
}

/* Responsive */





/* CTA image button */
.cta-image{display:inline-block; margin-top: 18px;}
.cta-image img{display:block; max-width: 360px; width: 100%; height:auto;}

/* Ajuste solicitado: título preto apenas na seção de benefícios (fundo textura azul) */
.benefits .section__title{ color:#000; }

/* ===== AJUSTES FINAIS LP BIKE ===== */

/* Título preto */
h1, .hero-title, .title {
  color: #000000 !important;
}

/* Fundo azul original sem efeito */
.hero, .hero-section, #hero {
  filter: none !important;
  background-blend-mode: normal !important;
}

/* Remove overlays */
.hero::before,
.hero::after,
.hero-section::before,
.hero-section::after,
#hero::before,
#hero::after {
  content: none !important;
  display: none !important;
}

/* Remove container branco */
.container,
.card,
.content,
.content-wrapper,
.hero-box,
.hero-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* ===== FIX SLIDER MARKUP (v2) ===== */
.slider__frame{ width:100%; }
.slider__img{ width:100%; height:360px; object-fit:cover; display:block; }


/* ===== AJUSTE LAYOUT IDENTICO PRINT 2 ===== */
.section-bike {
  display: flex;
  align-items: center;
  gap: 48px;
}

.section-bike .slider {
  flex: 0 0 520px;
}

.section-bike .content {
  flex: 1;
}

@media (max-width: 900px){
  .section-bike{
    flex-direction: column;
  }
  .section-bike .slider{
    width:100%;
  }
}


/* ===== FIX: BLOCO HISTÓRIA (DESKTOP) - IMAGEM ESQ / TEXTO DIR ===== */
.story__container{
  display:flex;
  align-items:center;
  gap:48px;
}
.story__container .slider{
  flex:0 0 520px;
  max-width:520px;
}
.story__container .story__text{
  flex:1;
  min-width:0;
}
/* mantém o carrossel com proporção parecida do original */
.slider__frame{
  width:100%;
}
.slider__img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}
/* Mobile: volta a empilhar */
@media (max-width: 900px){
  .story__container{
    flex-direction:column;
    align-items:stretch;
    gap:24px;
  }
  .story__container .slider{
    flex:0 0 auto;
    max-width:100%;
  }
  .slider__img{
    height:300px;
  }
}



/* ===== AJUSTE: SEÇÃO PASSO A PASSO (BASE PRÓXIMA DO PADRÃO DAS OUTRAS LPs) ===== */
.section.steps{
  background:#00cfe8;
  padding: 90px 0 80px;
}

.section.steps .section__title{
  text-align:center;
  color:#06384d;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 0 auto 44px;
  max-width: 1100px;
}

.section.steps .steps__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.section.steps .step{
  text-align:center;
  color:#06384d;
}

.section.steps .step__num{
  width: 86px;
  height: 86px;
  border-radius: 16px;
  background:#06384d;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 18px;
  font-size: 38px;
  font-weight: 900;
}

.section.steps .step h4{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
  color:#06384d;
}

.section.steps .step p{
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color:#06384d;
  opacity: 1;
}

/* Responsivo */
@media (max-width: 980px){
  .section.steps{ padding: 70px 0 60px; }
  .section.steps .steps__grid{ grid-template-columns: 1fr; gap: 26px; }
  .section.steps .section__title{ font-size: 36px; margin-bottom: 26px; }
  .section.steps .step__num{ width: 72px; height: 72px; font-size: 32px; }
  .section.steps .step h4{ font-size: 24px; }
  .section.steps .step p{ font-size: 16px; }
}



/* ===== FIX MOBILE: PASSO A PASSO (igual print 1) ===== */
@media (max-width: 768px){
  .section.steps{ padding: 56px 0 50px !important; }
  .section.steps .section__title{
    text-align: center !important;
    margin: 0 auto 28px !important;
    max-width: 92vw !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
  }
  .section.steps .steps__grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    justify-items: center !important;
  }
  .section.steps .step{
    width: min(520px, 92vw) !important;
    text-align: center !important;
  }
  .section.steps .step__num{
    margin: 0 auto 14px !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 16px !important;
    font-size: 32px !important;
  }
  .section.steps .step h4{
    font-size: 24px !important;
    margin: 0 0 8px !important;
  }
  .section.steps .step p{
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}



/* ===== PASSO A PASSO (BIKE) - REFEITO DO ZERO (para ficar igual ao print 2 também no mobile) ===== */
.steps-section{
  background:#00cfe8;
  padding: 90px 0 80px;
}
.steps-section .container{
  max-width: 1200px;
}
.steps-title{
  text-align:center;
  color:#06384d;
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 0 auto 44px;
  max-width: 1100px;
}
.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}
.step-card{
  text-align:center;
  color:#06384d;
}
.step-num{
  width: 86px;
  height: 86px;
  border-radius: 16px;
  background:#06384d;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 18px;
  font-size: 38px;
  font-weight: 900;
}
.step-title{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
  color:#06384d;
}
.step-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color:#06384d;
}

/* Mobile: manter visual "organizado" e centralizado (sem título gigante à esquerda) */
@media (max-width: 900px){
  .steps-section{ padding: 56px 0 52px; }
  /* FIX: no mobile/tablet, estreitar e centralizar o container para ficar igual ao layout de referência */
  .steps-section .container{
    width: min(320px, calc(100% - 48px));
    margin: 0 auto;
  }
  .steps-title{
    font-size: 34px;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .steps-grid{
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items:center;
  }
  .step-card{
    width: 100%;
  }
  .step-num{
    width: 72px;
    height: 72px;
    font-size: 32px;
    margin-bottom: 14px;
  }
  .step-title{
    font-size: 24px;
    margin-bottom: 8px;
  }
  .step-text{
    font-size: 16px;
    line-height: 1.6;
  }
}



/* ===== CTA FINAL + FOOTER (BASE IGUAL LPs PADRÃO) ===== */
.section.final{
  background: #0b1320;
  padding: 80px 0 30px;
}

.final__card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 58px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.final__left h3{
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .5px;
  color: #00cfe8;
  text-transform: uppercase;
}

.final__divider{
  width: 1px;
  align-self: stretch;
  background: rgba(0,207,232,0.65);
  border-radius: 1px;
}

.final__right{
  max-width: 520px;
  text-align: center;
  margin-left: auto;
}

.final__right p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.6;
}

.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.footer__social{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 180px;
}

.footer__icon{
  /* Sem borda/caixa, igual ao layout original */
  width: auto;
  height: auto;
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 16px;
}

.footer__icon img{
  width: 21px;
  height: 21px;
  display: block;
}

.footer__brand-logo{
  height: 22px;
  width: auto;
  display: block;
}

.footer__brand{
  display:flex;
  justify-content:center;
  flex: 1;
}

.footer__copy{
  min-width: 320px;
  text-align: right;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 980px){
  .final__card{
    padding: 36px 22px;
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .final__divider{ width: 100%; height: 1px; }
  .final__left h3{ font-size: 36px; }
  .final__right{ max-width: 100%; margin-left: 0; }
  .footer{
    flex-direction: column;
    text-align:center;
  }
  .footer__social, .footer__copy{
    min-width: 0;
    text-align:center;
  }
}



/* ===== FOOTER FULL WIDTH ===== */
.footer.footer--full{
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 18px;
}
.footer.footer--full .footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}
@media (max-width: 980px){
  .footer.footer--full .footer__inner{
    flex-direction: column;
    text-align:center;
  }
}


/* --- Footer social icons: no border/background, 21x21 --- */
.footer__bottom .social a{
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 21px !important;
  height: 21px !important;
  box-shadow: none !important;
}
.footer__bottom .social a img{
  width: 21px !important;
  height: 21px !important;
  display: block;
}
/* Footer logo sizing */
.footer__bottom .footer__brand img.footer-logo{
  display:block;
  width:auto;
  height:32px;
}


/* --- FIX: Story section title + button (match approved layout) --- */
.story__title{
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .5px;
  color: #00cfe8;
  text-transform: uppercase;
}
@media (max-width: 900px){
  .story__title{ font-size: 36px; }
}

.story .btn--whatsapp{
  text-transform: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 18px;
}


/* Image WhatsApp Button */
.btn-image-whatsapp img{
  max-width: 100%;
  height: auto;
}


/* Final logo color rules */
.hero, .hero *{ color:#ffffff; }
.footer, .footer *{ color:#ffffff; }


/* Hover effect - lighten buttons */
.btn:hover,
.btn-image-whatsapp:hover,
a:hover img {
  filter: brightness(1.15);
  transition: filter .2s ease;
}



/* --- MOBILE FIX: Hero igual ao print original (somente mobile) --- */



/* MOBILE ONLY - centralizar ciclista */





/* --- DESKTOP FIX: seção HISTÓRIA igual ao print 2 (fundo + tamanhos) --- */
@media (min-width: 769px){
  .section.story{
    background: #045d6c; /* teal do print */
  }
  .section.story .story__container{
    gap: 44px;
  }
  .section.story .story__container .slider{
    flex: 0 0 520px;
    max-width: 520px;
  }

  .section.story .story__title{
    font-size: 44px;
    line-height: 1.06;
    margin-bottom: 18px;
  }
  .section.story .story__text p{
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
  }

  .section.story .btn-image-whatsapp{
    display: inline-block;
    margin-top: 18px;
  }
  .section.story .btn-image-whatsapp img{
    max-width: 420px; /* botão menor */
    width: 100%;
    height: auto;
  }
}


/* --- DESKTOP: texto e botão sobre a imagem do carrossel --- */
@media (min-width: 769px){
  .section.story .story__container{
    position: relative;
  }

  .section.story .slider{
    position: relative;
  }

  .section.story .story__content{
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translateY(-50%);
    max-width: 520px;
  }

  .section.story .story__title{
    color: #00e0ff;
  }

  .section.story .story__text p{
    color: #ffffff;
  }
}


/* --- DESKTOP: texto com mesma altura do carrossel --- */
@media (min-width: 769px){
  .section.story .story__content{
    position: absolute;
    inset: 0;
    max-width: 520px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}


/* DESKTOP: texto exatamente sobre o carrossel */
@media (min-width: 769px){
  .section.story .slider{
    position: relative;
  }
  .section.story .story__overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .section.story .story__content{
    max-width: 520px;
    width: 100%;
    padding: 24px;
    pointer-events: auto;
  }
}


/* --- DESKTOP: texto com MESMA ALTURA do carrossel (igual ao print) --- */
@media (min-width: 769px){
  .section.story .story__container{
    align-items: stretch;
  }

  /* tamanhos do carrossel */
  .section.story .slider{
    flex: 0 0 520px;
    max-width: 520px;
  }
  .section.story .slider__frame{
    height: 451px; /* igual ao print (aprox) */
  }
  .section.story .slider__img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* texto do mesmo tamanho (altura) do carrossel */
  .section.story .story__text{
    flex: 0 0 520px;
    max-width: 520px;
    height: 451px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ajustes finos de tamanhos (como no print 2) */
  .section.story .story__title{
    font-size: 44px;
    line-height: 1.06;
    margin: 0 0 18px 0;
  }
  .section.story .story__text p{
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
  }
  .section.story .btn-image-whatsapp img{
    max-width: 420px;
    width: 100%;
    height: auto;
  }
}

/* --- HERO MOBILE RESTAURADO (copiado do zip correto) --- */
@media (max-width: 980px){
  .hero__container{grid-template-columns: 1fr;}
  .hero{min-height: 560px}
  .about{grid-template-columns:1fr;}
  .slider__img{height: 320px}
  .cta{grid-template-columns:1fr;}
  .cta__right{grid-template-columns:1fr;}
  .cta__divider{display:none}
}

@media (max-width: 560px){
  .container{width: calc(100% - 28px)}
  .hero__container{padding: 22px 0 40px}
  .hero__content{padding-top: 22px}
  .hero__title{color:#0b1622}
  .badge{width: 100%; max-width: 330px}
  .steps{grid-template-columns: 1fr; gap: 18px}
  .cta{padding: 28px}
  .footer__row{flex-direction:column; text-align:center}
}






@media (max-width: 768px){
  .hero__container{
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .hero__left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero .brand{
    margin: 0 0 16px;
    display:flex;
    justify-content:center;
    width:100%;
  }
  .hero .brand__logo{
    display:block;
    height: auto;
    max-width: 170px;
  }

  .hero__content{
    background: rgba(0,0,0,.65);
    border-radius: 16px;
    padding: 22px 18px;
    width: min(520px, 92%);
    margin: 0 auto;
  
    margin-top: 360px;
}

  .hero__title{
    color:#fff !important;
    margin: 0 0 14px;
    line-height: 1.02;
    letter-spacing: .5px;
  }
  .hero__lead,
  .hero__lead strong,
  .hero__min{
    color:#fff !important;
  }

  .cta-image{
    display:flex;
    justify-content:center;
  }
  .cta-image img{
    height:auto;
    max-width: 92%;
  }

  /* remove qualquer efeito que deixe o texto escuro no mobile */
  .hero__overlay{
    background: none;
  }
}


@media (max-width: 768px){
  .hero{
    background-position: 72% center;
  }
}


/* ===== AJUSTE MOBILE STORY (carrossel menor + texto centralizado) ===== */
@media (max-width: 768px){
  /* garantir layout em coluna */
  .section.story .story__container,
  .section.story .story__wrapper{
    flex-direction: column !important;
    align-items: center !important;
  }

  /* carrossel mais estreito e centralizado */
  .section.story .slider{
    width: 86% !important;
    max-width: 520px !important;
    margin: 0 auto 22px auto !important;
  }

  /* manter a imagem preenchendo e com bordas arredondadas */
  .section.story .slider__frame,
  .section.story .slider__img{
    width: 100% !important;
  }
  .section.story .slider__img{
    object-fit: cover !important;
    border-radius: 18px !important;
  }

  /* centralizar conteúdo */
  .section.story .story__text{
    width: 86% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .section.story .story__title{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section.story .story__text p{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* centralizar o botão */
  .section.story .btn-image-whatsapp,
  .section.story .btn-image-whatsapp a{
    display: flex !important;
    justify-content: center !important;
  }
  .section.story .btn-image-whatsapp img{
    max-width: 420px !important;
    width: 100% !important;
    height: auto !important;
  }

  /* setas do carrossel alinhadas no centro vertical da imagem */
  .section.story .slider__btn{
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}
/* ===== FIM AJUSTE MOBILE STORY ===== */

