/* 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;
}

.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 */
  }
}
/* === mesmo degradê rosa da .offer, garantido === */
:root{ --grad-ofertas: linear-gradient(135deg,#ff6b9d 0%,#ff8fab 50%,#ffa8c5 100%); }

.catalogo-mobile-viewport.bg-ofertas{ position: relative; isolation: isolate; }
.catalogo-mobile-viewport.bg-ofertas::before{
  content:""; position:absolute; inset:0; background:var(--grad-ofertas); z-index:-1;
}

/* ==== sem toggle: listas SEM corte/máscara ==== */
#catalogo3 .feat-list{
  list-style:none; margin:6px 0 0; padding:0;
  display:grid; row-gap:6px;
  font-size:12px; line-height:1.25;
  max-height:none; overflow:visible;      /* <- tudo visível */
  -webkit-mask-image:none; mask-image:none;
}
#catalogo3 .feat-list li{ display:grid; grid-template-columns:16px 1fr; column-gap:8px; align-items:start; }
#catalogo3 .feat-list i{ font-size:12px; color:#ff6b9d; margin-top:1px; }

/* esconder qualquer botão de toggle que tenha sobrado */
#catalogo3 .feat-toggle{ display:none !important; }

/* Cards legíveis sobre o fundo rosa */
.catalogo-mobile-viewport.bg-ofertas .card-prod{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 6px 22px rgba(255,107,157,.22);
}

/* ===== evitar o rodapé por cima =====
   1) não fixar altura; deixar crescer
   2) espaço extra no final (se footer for "sticky/fixed", ajuste --footer-h) */
:root{ --footer-h: 0px; } /* se seu footer for fixo, coloque 64px, por ex. */

@media (max-width: 767px){
  .catalogo-mobile-viewport#catalogo3{
    height: auto;                   /* <- remove o “corte” */
    min-height: 100dvh;             /* garante 1ª tela cheia quando for curto */
    overflow: visible;
    padding: 10px 12px calc(max(16px, env(safe-area-inset-bottom)) + var(--footer-h));
    scroll-margin-top: 16px;        /* rolagem suave não “cola” no topo */
  }
}
/* === Catálogo 3 itens: correções de layout e imagens === */

/* mantém o fundo rosa da .offer via pseudo-elemento */
:root{ --grad-ofertas: linear-gradient(135deg,#ff6b9d 0%,#ff8fab 50%,#ffa8c5 100%); }
#catalogo3.catalogo-mobile-viewport.bg-ofertas{ position: relative; isolation: isolate; }
#catalogo3.catalogo-mobile-viewport.bg-ofertas::before{
  content:""; position:absolute; inset:0; background:var(--grad-ofertas); z-index:-1;
}

/* 1) destrava alturas e dá respiro para não “entrar” no rodapé */
#catalogo3{ height:auto !important; min-height: 100dvh; overflow: visible; }
@media (max-width: 767px){
  #catalogo3{ padding: 10px 12px calc(max(16px, env(safe-area-inset-bottom))); }
}

/* 2) grade pirâmide: 1 card em cima (2 colunas) + 2 embaixo */
#catalogo3 .grid-vitrine-3{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; /* cada linha cresce conforme o conteúdo */
  gap: 10px;
  align-content: start;
}

/* pirâmide */
#catalogo3 .grid-vitrine-3.layout-piramide > article:nth-child(1){ grid-column: 1 / -1; grid-row: 1; }
#catalogo3 .grid-vitrine-3.layout-piramide > article:nth-child(2){ grid-column: 1; grid-row: 2; }
#catalogo3 .grid-vitrine-3.layout-piramide > article:nth-child(3){ grid-column: 2; grid-row: 2; }

/* invertida (se um dia quiser) */
/* #catalogo3 .grid-vitrine-3.layout-invertida > article:nth-child(1){ grid-column:1; grid-row:1; }
#catalogo3 .grid-vitrine-3.layout-invertida > article:nth-child(2){ grid-column:2; grid-row:1; }
#catalogo3 .grid-vitrine-3.layout-invertida > article:nth-child(3){ grid-column:1 / -1; grid-row:2; } */

/* 3) card compacto, com conteúdo em fluxo e sem “vazamento” */
#catalogo3 .card-prod{
  display: grid;
  grid-template-rows: auto auto auto auto; /* img, título, preço, botão/lista */
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 22px rgba(255,107,157,.22);
  min-width: 0;
  overflow: hidden;                /* <- impede imagem/texto de “sair” do card */
}

/* 4) imagem sempre dentro do card, cortada com elegância */
#catalogo3 .card-prod img{
  display: block;                  /* remove espaço extra de imagens inline */
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;             /* mais baixa para caber com as infos */
  object-fit: cover;               /* recorte elegante dentro do card */
  border-radius: 12px;
}

/* 5) tipografia do card (clamp para não estourar) */
#catalogo3 .card-prod h3{
  margin: 0;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
#catalogo3 .preco{
  margin: 0;
  font-size: clamp(13px, 3.5vw, 15px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#catalogo3 .preco .de{ opacity:.55; text-decoration: line-through; margin-right:6px; }
#catalogo3 .preco .por{ font-weight:700; }

/* 6) lista de features (tudo visível, compacta) */
#catalogo3 .feat-list{
  list-style:none; margin:6px 0 0; padding:0;
  display:grid; row-gap:6px; font-size:12px; line-height:1.25;
}
#catalogo3 .feat-list li{ display:grid; grid-template-columns:16px 1fr; column-gap:8px; align-items:start; }
#catalogo3 .feat-list i{ font-size:12px; color:#ff6b9d; margin-top:1px; }

/* 7) botão do card adaptado ao espaço do mobile */
#catalogo3 .cta-button{
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* ================== Cabeçalho do Catálogo (faixa rosa acima) ================== */
/* Escopo 100% dentro do #catalogo3 para não afetar o resto do site */
#catalogo3{
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff5f8 100%); /* seu rosa já usado */
}

/* Esta pseudo-camada "sobe" o fundo rosa por trás da seção anterior */
#catalogo3::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -56px;                 /* quanto maior, mais o rosa "sobe" */
  height: 56px;               /* ajuste fino da altura que sobe */
  background: #fff5f8;        /* mesmo tom de rosa do fundo */
  z-index: -1;                /* fica por trás do conteúdo */
}

/* Bloco do título do catálogo */
#catalogo3 .catalogo-heading{
  padding: 18px 16px 6px;     /* espaço interno do cabeçalho */
}

/* Centraliza e limita largura no mobile e desktop */
#catalogo3 .catalogo-heading__inner{
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* Título e subtítulo – tipografia e cores */
#catalogo3 .catalogo-heading__title{
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.15rem;         /* mobile */
  color: #2d3748;             /* não usa text-fill-color, evita bug de branco */
}

#catalogo3 .catalogo-heading__sub{
  margin: 6px 0 0;
  font-size: .95rem;
  color: #475569;
  opacity: .95;
}

/* Melhorias em telas maiores (se seu catálogo também renderiza no desktop) */
@media (min-width: 769px){
  #catalogo3 .catalogo-heading__title{ font-size: 1.5rem; }
  #catalogo3 .catalogo-heading__sub{ font-size: 1rem; }
  #catalogo3::before{ top: -72px; height: 72px; } /* sobe um pouco mais no desktop */
}

/* Opcional: destaque com gradiente na palavra-chave do título 
   Use <span class="mm-highlight">texto</span> dentro do h2 se quiser chamar atenção */
#catalogo3 .catalogo-heading__title .mm-highlight{
  background: linear-gradient(45deg, #fe508b, #f28bad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Texto com textura rosa + grão sutil */
#catalogo3 .catalogo-heading__title .mm-texture{
  --cor1: #fe508b;
  --cor2: #f28bad;

  background-image:
    linear-gradient(45deg, var(--cor1), var(--cor2)),
    /* “ruído” fake em CSS usando múltiplos gradientes */
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.25) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,.22) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,.06) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,.05) 0 1px, transparent 1px);
  background-size:
    100% 100%,
    14px 14px, 16px 16px, 18px 18px, 20px 20px;
  background-repeat: no-repeat, repeat, repeat, repeat, repeat;
  background-blend-mode: overlay, normal, normal, normal, normal;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0.5px 0 rgba(0,0,0,.08);
}
