    :root {
      --primary: #ff6b00;
      --primary-dark: #e65100;
      --secondary: #10b981;
      --dark: #0f172a;
      --gray: #64748b;
      --light: #f8fafc;
      
      --telegram: #229ED9;
      --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

      /* Sombras mais modernas e suaves */
      --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
      --shadow-md: 0 12px 24px -6px rgba(15, 23, 42, 0.12);
      --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
      
      --radius: 18px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f8fafc; color: var(--dark); line-height: 1.6; padding-bottom: 80px; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* --- Animações --- */
    @keyframes pulse-orange {
      0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-6px); }
    }

    /* --- Header --- */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 10px 5%;
      display: flex; align-items: center; justify-content: space-between;
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      box-shadow: var(--shadow-sm);
      height: 70px;
    }

    .logo {
      display: flex; align-items: center;
      gap: 10px; /* Espaço entre imagem e texto */
      height: 100%;
      text-decoration: none;
      color: var(--dark);
    }
    
    .logo-img {
      max-height: 40px; 
      width: auto;      
      object-fit: contain;
      display: block;
    }

    .logo-text {
      font-weight: 800; 
      font-size: 22px; 
      letter-spacing: -0.5px;
      line-height: 1;
      display: flex;
      align-items: center;
    }

    .header-actions { display: flex; gap: 12px; }

    .btn-header {
      padding: 8px 18px; border-radius: 50px;
      font-weight: 700; font-size: 13px; color: #fff;
      display: flex; align-items: center; gap: 8px;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .btn-telegram-header { background: var(--telegram); }
    .btn-instagram-header { background: var(--instagram-grad); }
    .btn-header:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }

    /* --- Hero Section --- */
    .hero {
      padding: 120px 20px 50px;
      text-align: center;
      background: radial-gradient(circle at top center, #fff 0%, #f1f5f9 100%);
      overflow: hidden;
    }
    .badge-hero {
      color: var(--primary); font-weight: 700; font-size: 11px; 
      text-transform: uppercase; margin-bottom: 20px; 
      display: inline-flex; align-items: center; gap: 6px; 
      background: rgba(255, 107, 0, 0.1); 
      padding: 8px 16px; border-radius: 50px;
      border: 1px solid rgba(255, 107, 0, 0.15);
    }

    .hero h1 {
      font-size: 2.8rem; line-height: 1.1; font-weight: 800;
      margin-bottom: 15px; letter-spacing: -1.5px;
      color: var(--dark);
    }
    .hero h1 span {
      background: linear-gradient(135deg, var(--primary) 0%, #ff9e42 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero p { color: var(--gray); font-size: 1.15rem; max-width: 580px; margin: 0 auto 35px; font-weight: 500; }

    .cta-group { display: flex; flex-direction: column; align-items: center; gap: 25px; margin-bottom: 30px; }
    .hero-btns { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; width: 100%; }
    
    .btn-main {
      padding: 18px 32px; border-radius: 50px;
      font-size: 16px; font-weight: 700; color: white;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: var(--transition); min-width: 220px;
      position: relative; overflow: hidden;
    }
    .btn-main-telegram { background: var(--telegram); box-shadow: 0 10px 25px -5px rgba(34, 158, 217, 0.4); }
    .btn-main-instagram { background: var(--instagram-grad); box-shadow: 0 10px 25px -5px rgba(220, 39, 67, 0.4); }
    
    .btn-main:hover { transform: translateY(-3px); }
    .btn-main:active { transform: scale(0.97); }
    .pulse { animation: pulse-orange 2s infinite; }

    /* --- Destaque Relâmpago --- */
    .flash-deal-section { max-width: 1200px; margin: 0 auto 50px; padding: 0 20px; }
    .flash-card {
      background: #0f172a;
      border-radius: 32px; padding: 40px; color: #fff; position: relative; overflow: hidden;
      display: flex; align-items: center; gap: 40px; box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .flash-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.15), transparent 50%);
      pointer-events: none;
    }

    .flash-ribbon {
      position: absolute; top: 25px; right: -30px;
      background: #ef4444; color: #fff; transform: rotate(45deg);
      padding: 8px 40px; font-weight: 800; font-size: 12px; text-transform: uppercase;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 10;
    }
    .flash-content { flex: 1; z-index: 2; }
    .flash-tag { background: var(--primary); display: inline-block; padding: 6px 12px; border-radius: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 0.5px; }
    .flash-title { font-size: 28px; font-weight: 700; margin-bottom: 15px; line-height: 1.2; letter-spacing: -0.5px; }
    .flash-price { font-size: 36px; font-weight: 800; color: #4ade80; margin-bottom: 25px; display: flex; align-items: baseline; gap: 10px;}
    .flash-price small { font-size: 18px; color: #94a3b8; text-decoration: line-through; font-weight: 500; }
    
    .timer-box { display: flex; gap: 10px; margin-bottom: 30px; background: rgba(255,255,255,0.08); padding: 12px 20px; border-radius: 16px; width: fit-content; backdrop-filter: blur(5px); }
    .timer-item { text-align: center; min-width: 40px; }
    .timer-num { font-weight: 800; font-size: 20px; display: block; font-feature-settings: "tnum"; }
    .timer-label { font-size: 10px; color: #cbd5e1; text-transform: uppercase; font-weight: 600; }
    .flash-img { flex: 1; max-width: 380px; z-index: 2; animation: float 4s ease-in-out infinite; perspective: 1000px; }
    .flash-img img { border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.3); transform: rotateY(-5deg); transition: var(--transition); }
    .flash-card:hover .flash-img img { transform: rotateY(0deg) scale(1.02); }

    /* --- Grid de Ofertas --- */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }
    .section-title h2 { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; margin-bottom: 30px; letter-spacing: -0.5px; color: var(--dark); }
    
    .categories { 
      display: flex; gap: 12px; overflow-x: auto; padding-bottom: 20px; margin-bottom: 10px; 
      scrollbar-width: none; -ms-overflow-style: none; padding-right: 20px;
    }
    .categories::-webkit-scrollbar { display: none; }
    
    .cat-btn { 
      white-space: nowrap; padding: 10px 24px; border-radius: 50px; 
      background: #fff; border: 1px solid #e2e8f0; 
      font-weight: 700; font-size: 14px; color: var(--gray); 
      transition: var(--transition); cursor: pointer; 
      box-shadow: var(--shadow-sm);
    }
    .cat-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); box-shadow: var(--shadow-md); transform: scale(1.05); }
    .cat-btn:hover:not(.active) { background: #f1f5f9; border-color: #cbd5e1; }
    
    .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
    
    .card { 
      background: #fff; border-radius: var(--radius); overflow: hidden; 
      border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm); 
      position: relative; display: flex; flex-direction: column; 
      transition: var(--transition); 
    }
    .card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(255, 107, 0, 0.1); }
    
    .card-badge { 
      position: absolute; top: 12px; left: 12px; 
      background: #ef4444; color: #fff; 
      font-weight: 800; font-size: 11px; padding: 4px 10px; 
      border-radius: 8px; z-index: 5; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    }
    
    .card-img { height: 200px; padding: 25px; display: flex; align-items: center; justify-content: center; position: relative; background: #fff; }
    .card-img img { max-height: 100%; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); filter: saturate(1.1); }
    .card:hover .card-img img { transform: scale(1.1); }
    
    .card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; background: #fff; position: relative; z-index: 2; }
    .store-info { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--gray); font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
    .card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 42px;}
    
    .pricing { margin-top: auto; margin-bottom: 15px; }
    .old { font-size: 13px; text-decoration: line-through; color: #94a3b8; margin-bottom: 2px; }
    .new { font-size: 20px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; }
    
    .btn-buy { 
      width: 100%; background: #f8fafc; color: var(--dark); 
      border: 1px solid #e2e8f0; padding: 12px; border-radius: 12px; 
      font-weight: 700; font-size: 13px; cursor: pointer; 
      transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; 
    }
    .card:hover .btn-buy { background: var(--dark); color: #fff; border-color: var(--dark); }

    /* --- Feedback Section --- */
    .feedback-section { background: #fff; padding: 80px 0; margin-top: 40px; border-top: 1px solid #f1f5f9; }
    .feedback-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    
    .section-center-title { text-align: center; margin-bottom: 50px; padding: 0 20px; }
    .section-center-title h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.5px; }
    
    .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
    
    .review-card {
      background: #f8fafc; border: 1px solid #f1f5f9; padding: 35px 25px; border-radius: 24px;
      transition: var(--transition); display: flex; flex-direction: column;
      align-items: center; text-align: center; position: relative;
    }
    .review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,0.05); }

    .user-header { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 20px; }
    .avatar-img {
      width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
      border: 3px solid #fff; box-shadow: var(--shadow-sm);
    }
    .user-meta h4 { font-size: 16px; font-weight: 800; margin: 0; color: var(--dark); }
    .user-meta span { font-size: 12px; color: var(--primary); font-weight: 700; background: rgba(255, 107, 0, 0.1); padding: 2px 8px; border-radius: 6px; }
    
    .review-text { font-size: 14px; color: #475569; font-style: italic; line-height: 1.7; flex: 1; }
    .stars { color: #fbbf24; font-size: 14px; margin-top: 20px; background: #fff; padding: 6px 16px; border-radius: 50px; border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm); }

    /* --- Footer & Floating --- */
    footer { background: var(--dark); color: #94a3b8; padding: 60px 20px 100px; text-align: center; font-size: 13px; margin-top: 0; }
    .sticky-telegram {
      position: fixed; 
      bottom: 30px; right: 30px; 
      bottom: calc(30px + env(safe-area-inset-bottom));
      background: var(--telegram); color: #fff; 
      width: 64px; height: 64px; border-radius: 50%; 
      display: flex; align-items: center; justify-content: center; 
      font-size: 28px; box-shadow: 0 8px 25px rgba(34, 158, 217, 0.6); 
      z-index: 999; animation: float 3s ease-in-out infinite; 
      border: 3px solid #fff; transition: transform 0.2s;
    }
    .sticky-telegram:hover { transform: scale(1.1); }

    /* --- MOBILE ONLY --- */
    @media(max-width: 768px) {
      .header-actions { display: none; }
      .hero { padding-top: 100px; }
      .hero h1 { font-size: 2.2rem; }
      .hero-btns { flex-direction: column; align-items: center; }
      .btn-main { width: 100%; max-width: 320px; }
      
      /* Ajuste do logo no mobile */
      .logo-text { font-size: 18px; }
      .logo-img { max-height: 35px; }

      .flash-card { flex-direction: column-reverse; text-align: center; padding: 30px 20px; margin: 0 10px; gap: 20px; }
      .flash-ribbon { right: auto; left: -35px; top: 20px; transform: rotate(-45deg); }
      .flash-img { max-width: 280px; margin: 0 auto; transform: none; animation: float 3s ease-in-out infinite; }
      .flash-img img { transform: none; }
      .flash-price { justify-content: center; }
      .timer-box { margin: 0 auto 20px; }
      
      .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .card-img { height: 150px; padding: 15px; }
      .card h3 { font-size: 13px; margin-bottom: 8px; }
      .new { font-size: 18px; }
      .btn-buy { padding: 8px; font-size: 12px; }
      
      .feedback-container { padding: 0; } 
      .review-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 20px 50px; 
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .review-grid::-webkit-scrollbar { display: none; }
      
      .review-card {
        min-width: 85vw;
        scroll-snap-align: center;
        box-shadow: var(--shadow-md);
        background: #fff;
      }
    }