/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.section-title.white {
    color: white;
}

/* Animated soft-pink gradient for promo text */
.promo-gradient {
    /* light pink gradient that slowly moves */
    background: linear-gradient(90deg, #ffe3ee 0%, #ffbfd6 25%, #ffd6e6 50%, #ffbfd6 75%, #ffe3ee 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: promoGradientMove 12s ease-in-out infinite;
    font-weight: 800;
}

@keyframes promoGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .promo-gradient { animation: none; }
}

.highlight {
        background: linear-gradient(45deg, #fe508b, #f28bad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fe508b87;
    background-clip: text;
   color: pink;
    font-weight: 700;
}

.highlight-white {
    color: #fff;
    background: linear-gradient(45deg, #fff, #ffc0cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.cta-button.final {
    font-size: 1.4rem;
    padding: 22px 44px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb3d9 50%, #ff9ec7 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-element.bunny { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element.capybara { top: 20%; right: 15%; animation-delay: 1s; }
.floating-element.bear { bottom: 30%; left: 20%; animation-delay: 2s; }
.floating-element.star { top: 40%; right: 25%; animation-delay: 3s; }
.floating-element.heart { bottom: 20%; right: 10%; animation-delay: 4s; }
.floating-element.cloud { top: 60%; left: 15%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Product Images */
.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.benefit-item i {
    color: #ff6b9d;
    font-size: 1.5rem;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Experience Visual */
.experience-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Product Details Section */
.product-details {
    padding: 6rem 0;
    background: white;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-subtitle {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.product-list {
    list-style: none;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.product-list i {
    color: #ff6b9d;
    font-size: 1.2rem;
    width: 20px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb3d9 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-col.aspect {
    font-weight: 600;
    background: #f8f9fa;
    color: #2d3748;
}

.comparison-col.others {
    background: #ff9c9c;
}

.comparison-col.minimundo {
    background: #98d9a9;
}

.positive {
    color: #38a169;
    font-size: 1.2rem;
}

.negative {
    color: #e53e3e;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.15);
    border-color: #ff6b9d;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #2d3748;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Offer Section */
.offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffa8c5 100%);
    color: white;
}

.offer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.feature i {
    color: #fff;
    font-size: 1.2rem;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-text {
    text-align: left;
    line-height: 1.5;
}

.guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.guarantee {
    text-align: left;
    opacity: 0.95;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.counter-number {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.bonus-box {
    background: rgba(255, 107, 157, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-icon {
    font-size: 2rem;
}

.bonus-text {
    text-align: left;
    line-height: 1.5;
}

.time-limit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-guarantee {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .product-mockup {
        width: 300px;
        height: 300px;
    }
    
    .mockup-book {
        width: 250px;
        height: 150px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-col {
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem;
    }
    
    .guarantees {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .urgency-counter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .satisfaction-demo {
        flex-direction: column;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.final {
        padding: 18px 36px;
        font-size: 1.2rem;
        display: block;
        margin: 0 auto;
        text-align: center;
        display: inline-flex;
        align-items: center;
    }
    
    .offer-box {
        padding: 2rem 1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

.offers-scroll {
  display: flex !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 2px 12px;
  scroll-behavior: smooth;
}
.offers-scroll::-webkit-scrollbar { display: none; }

.offer-card {
  flex: 0 0 auto;
  width: min(520px, 88vw);
  scroll-snap-align: start;
}
@media (min-width: 992px) {
  .offer-card { width: min(560px, 42vw); }
}
/* ===== UX sutil: "peek" do próximo card e dica "deslize →" ===== */

/* mostra parte do próximo card (peek) */
.offers-scroll {
  padding-right: 24px;                /* respiro p/ gradiente */
  scroll-padding-left: 16px;          /* snap mais natural */
}
.offer-card {
  width: min(500px, 86vw);            /* um pouco menor p/ sobrar espaço ao lado */
}

/* dica sutil posicionado sobre o trilho */
.offers-hint {
  position: relative;
  height: 0;                          /* não ocupa layout */
}

/* gradiente na borda direita + chip "deslize" */
.offers-hint::after {
  content: "";
  position: absolute;
  right: 0; top: -24px;               /* sobe p/ ficar na linha dos cards */
  width: 110px; height: 72px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,168,197,0.45) 60%, rgba(255,168,197,0.8) 100%);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  filter: blur(0.2px);
}

/* pill "deslize →" */
.offers-hint span,
.offers-hint i {
  position: absolute;
  right: 18px; top: -4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2d3748;
  background: rgba(255,255,255,0.92);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* micro nudge do chevron */
.offers-hint i {
  animation: nudge-right 1.6s ease-in-out infinite;
}
@keyframes nudge-right {
  0%, 100% { transform: translateX(0); opacity: .9; }
  50%      { transform: translateX(6px); opacity: 1; }
}

/* esconder a dica após primeira interação (classe aplicada via JS) */
.offers-hint.is-hidden,
.offers-hint.is-hidden::after,
.offers-hint.is-hidden span,
.offers-hint.is-hidden i {
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}

/* trava a sensação de “vai pra direita” (sem setas) */
.offers-scroll {
  overscroll-behavior-x: contain;
  direction: ltr;                      /* garante direção padrão */
}

/* opcional: no desktop, peeking mais discreto */
@media (min-width: 992px) {
  .offer-card { width: min(520px, 45vw); }
}

/* mantém seu estilo existente coerente */
.offers-scroll::-webkit-scrollbar { display: none; }

/* ===== UX ofertas: wrapper, peek forte e dica explícita ===== */
.offers-viewport {
  position: relative;
  margin-top: .5rem;
}

/* peek: garanta que o próximo card apareça parcialmente */
.offers-scroll {
  padding-right: 28px;         /* espaço para o gradiente da direita */
  scroll-padding-left: 16px;   /* snap mais natural no primeiro card */
}

.offer-card {
  width: 80vw;                 /* deixa 20% da tela visível do próximo card */
  scroll-snap-align: start;
}

@media (min-width: 992px) {
  .offer-card { width: 45vw; } /* desktop: 2 cards/peek elegante */
}

/* gradiente e chip "mais ofertas →" fixos na borda direita */
.offers-hint {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 6px;
  pointer-events: none;        /* não bloqueia cliques/scroll */
}

/* a faixa em degradê que “pede” o movimento */
.offers-hint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,168,197,0.45) 55%, rgba(255,168,197,0.85) 100%);
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

/* pill com texto + chevron */
.offers-hint > span,
.offers-hint > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.95);
  color: #2d3748;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* micro-âncora do chevron para chamar atenção */
.offers-hint > i {
  animation: nudge-right 1.6s ease-in-out infinite;
}
@keyframes nudge-right {
  0%,100% { transform: translate(0,-50%); opacity:.9; }
  50%     { transform: translate(6px,-50%); opacity:1; }
}

/* esconder a dica após interação (classe JS) */
.offers-hint.is-hidden,
.offers-hint.is-hidden::before,
.offers-hint.is-hidden > span,
.offers-hint.is-hidden > i {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

/* mantém sua base existente */
.offers-scroll::-webkit-scrollbar { display: none; }

/* afasta mais ainda do bloco */
.offers-scroll { padding-right: 72px !important; }

.offers-viewport .offers-hint {
  right: -28px !important;   /* mais para fora */
  width: 200px !important;
  height: 120px !important;
}

.offers-viewport .offers-hint > span,
.offers-viewport .offers-hint > i {
  right: 22px !important;
}

/* desktop: afasta máximo */
@media (min-width: 992px) {
  .offers-scroll { padding-right: 88px !important; }
  .offers-viewport .offers-hint { right: -36px !important; width: 220px !important; height: 128px !important; }
}
/* ===== LIMPEZA de estilos antigos do hint (remove sombra/gradiente) ===== */
.offers-hint,
.offers-hint::before,
.offers-hint::after { display: none !important; }
.offers-viewport { display: contents !important; } /* neutraliza wrapper, se sobrar */

/* ===== Label “mais ofertas” minimalista (sem fundo/sombra) ===== */
.offers-meta{
  display:flex; align-items:center; justify-content:flex-end;
  gap:8px; margin: -8px 0 12px; /* aproxima do título e afasta do trilho */
  pointer-events:none;
}
.offers-meta span{
  font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  color:#fff; opacity:.95; /* texto branco direto, sem glow */
}
.offers-meta i{ font-size:12px; opacity:.95; }

/* ===== Trilho horizontal com “peek” do próximo card ===== */
.offer .offers-scroll{
  display:flex !important;
  gap:24px;
  overflow-x:auto; overflow-y:hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior:smooth;
  padding: 8px 2px 12px;
  padding-right: 30px !important;      /* dá espaço p/ enxergar a 2ª oferta pela metade */
  scroll-padding-left: 16px !important;
  overscroll-behavior-x: contain;
}
.offer .offers-scroll::-webkit-scrollbar{ display:none; }

/* Largura dos cards para garantir “metade” do próximo visível */
.offer .offer-card{
  flex:0 0 auto;
  width: 80vw !important;   /* ocupa 80% da tela → sobra 20% pro próximo */
  scroll-snap-align: start;
}

@media (min-width: 992px){
  .offer .offer-card{
    width: 60vw !important; /* ocupa 48% da tela → sobra ~52% pro próximo */
  }
}

