/* 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;
    }
}
/* ===== Carrossel de ofertas (peek + dica “mais ofertas”) — escopo na .offer ===== */
.offer .offers-viewport{
  position: relative;
  margin-top: 0.75rem;
}

.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: 56px;           /* espaço p/ ver metade do 2º card */
  scroll-padding-left:16px;
  overscroll-behavior-x:contain;
}
.offer .offers-scroll::-webkit-scrollbar{ display:none; }

/* Largura dos cards: mostra parte do próximo na 1ª dobra */
.offer .offer-card{
  flex:0 0 auto;
  width: clamp(380px, 78vw, 560px);
  scroll-snap-align:start;
}
@media (min-width: 992px){
  .offer .offer-card{ width: clamp(520px, 46vw, 640px); }
}

/* Dica fixa na borda direita (sem sombra branca) */
.offer .offers-hint{
  position:absolute;
  right:-20px; top:50%;
  transform:translateY(-50%);
  width:160px; height:104px;
  pointer-events:none;
}
.offer .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;
}
.offer .offers-hint > span,
.offer .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;
  /* sem sombra para não “brilhar” */
  box-shadow:none;
}

/* Chevron com micro “nudge” */
.offer .offers-hint > i{
  animation: offer-nudge 1.6s ease-in-out infinite;
}
@keyframes offer-nudge{
  0%,100%{ transform: translate(0,-50%); opacity:.95; }
  50%{ transform: translate(6px,-50%); opacity:1; }
}

/* Some a dica após interação (classe aplicada via JS) */
.offer .offers-hint.is-hidden,
.offer .offers-hint.is-hidden::before,
.offer .offers-hint.is-hidden > span,
.offer .offers-hint.is-hidden > i{
  opacity:0; visibility:hidden; transition:opacity .25s ease;
}
/* Garantir que o hint fique ACIMA e um pouco ACIMA do trilho */
.offer .offers-viewport{
  position: relative;
  overflow: visible;
  isolation: isolate;     /* cria contexto limpo p/ z-index funcionar */
  margin-top: 1rem;       /* dá um respiro do título */
}

.offer .offers-scroll{
  position: relative;
  z-index: 1;             /* trilho fica abaixo do hint */
}

/* HINT “mais ofertas” acima e visível (fora do bloco), sem brilho */
.offer .offers-viewport .offers-hint{
  position: absolute !important;
  z-index: 5 !important;
  right: -20px !important;          /* levemente “fora” da parede direita */
  top: -18px !important;            /* sobe para ficar como “uma parte acima” */
  width: 160px; height: 104px;
  pointer-events: none;             /* não bloqueia rolagem/cliques */
  transform: none !important;       /* sobrescreve o translateY antigo */
}

.offer .offers-viewport .offers-hint::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,168,197,0.35) 55%,
    rgba(255,168,197,0.75) 100%);
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

.offer .offers-viewport .offers-hint > span,
.offer .offers-viewport .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:none;                 /* sem “sombra branca” */
}

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

/* (opcional) se algum card estiver “passando por cima”, force ficar atrás do hint */
.offer .offer-box{ position: relative; z-index: 2; }

/* Trilho do carrossel */
.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;

  /* espaço à direita = 20% da viewport + gap, para o “peek” */
  padding: 8px 2px 12px;
  padding-right: calc(20vw + 24px) !important;

  /* snap confortável no 1º card */
  scroll-padding-left: 16px !important;

  /* mantém a rolagem lateral sob controle */
  overscroll-behavior-x: contain;
}
.offer .offers-scroll::-webkit-scrollbar{ display:none; }

/* Cada card ocupa 80% da viewport => sobra ~20% para aparecer o próximo */
.offer .offer-card{
  flex: 0 0 auto;
  width: 80vw !important;
  scroll-snap-align: start;
}
/* posicionamento de referência */
.offers-viewport{ position: relative; }

/* dica: somente texto branco, sem sombra/fundo */
.offers-hint{
  position: absolute;
  right: 12px;                 /* encostado à “parede” direita */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;                 /* branco */
  font: inherit;               /* mesma fonte da seção */
  font-weight: 600;
  letter-spacing: .02em;
  text-shadow: none;           /* sem brilho/sombra */
  background: none;            /* sem pílula/fundo */
  padding: 0;
  z-index: 3;                  /* fica visível sobre o trilho */
  pointer-events: none;        /* não bloqueia o scroll */
}

/* remove qualquer gradiente/ornamento anterior */
.offers-hint::before,
.offers-hint::after{ content:none !important; display:none !important; }

/* caso tenha ícone <i>, esconda (queremos só texto) */
.offers-hint i{ display:none !important; }

/* mobile: sobe 10px se ficar muito colado ao meio */
@media (max-width: 480px){
  .offers-hint{ transform: translateY(calc(-50% - 10px)); }
}

