
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    /* Variáveis de Cores Padronizadas (Dark Theme Profissional) */
    :root {
      --primary-color: #e6a10e; /* Azul Profissional (Substitui o Laranja) */
      --primary-color-dark: #fda603;
      --secondary-color: #28a745; /* Verde para Ação/Sucesso */
      --bg-dark: #1f1f1f; /* Azul Escuro Sutil (Mais Profissional que Preto Puro) */
      --bg-darker: #221a0c;
      --bg-card: #3b2f1e; /* Fundo de Card */
      --bg-card-light: #302c1f;
      --text-white: #f8fafc;
      --text-gray: #94a3b8; /* Cinza para textos secundários */
      --text-light-gray: #fdfeff;
      --border-dark: #302e2c;
      --border-light: #201b17f6;
      --shadow-color: rgba(248, 149, 0, 0.2); /* Sombra baseada na cor primária */
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg-dark);
      color: var(--text-white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: var(--primary-color);
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--primary-color-dark);
    }

    /* ===== UTILS / GERAIS ===== */
    section {
      padding: 6rem 5%; /* Aumentado o padding vertical */
      text-align: center;
    }

    section h2 {
      font-size: 2.8rem; /* Aumentado o tamanho da fonte */
      font-weight: 800;
      margin-bottom: 1rem;
      letter-spacing: -1px;
    }

    section h2 .highlight {
      color: var(--primary-color);
    }

    section p.subtitle {
      color: var(--text-gray);
      font-size: 1.1rem;
      margin-bottom: 4rem; /* Aumentado o espaçamento */
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
      padding: 1rem 2.5rem; /* Aumentado o padding */
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      text-decoration: none; /* Para usar em <a> também */
    }

    .btn-primary {
      background: var(--primary-color);
      color: white;
      box-shadow: 0 8px 20px var(--shadow-color);
      justify-content: center; /* ⭐ CENTRALIZA O TEXTO */
    }

    .btn-primary:hover {
      background: var(--primary-color-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px var(--shadow-color);
      justify-content: center; /* ⭐ CENTRALIZA O TEXTO */
      color: white;
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid var(--text-gray);
      color: var(--text-white);
       justify-content: center; /* ⭐ CENTRALIZA O TEXTO */
color: white;
    }
    

    .btn-secondary:hover {
      background: var(--text-gray);
      color: var(--bg-dark);
      transform: translateY(-3px);
      justify-content: center; /* ⭐ CENTRALIZA O TEXTO */
      color: white;
    }

    /* Removendo os badges coloridos e chamativos dos botões e links */
    .btn .badge, header nav a .badge {
      display: none !important;
    }

    /* ===== HEADER ===== */
    header {
      position: sticky; /* Alterado para sticky para melhor UX */
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(8, 8, 8, 0.95); /* Usando var(--bg-dark) com transparência */
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      z-index: 100;
      border-bottom: 1px solid var(--border-light);
    }

    

    header nav {
      display: flex;
      gap: 1.5rem; /* Aumentado o espaçamento */
      align-items: center;
    }

    header nav a {
      padding: 0.5rem 0;
      border-radius: 0;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--text-gray);
      transition: color 0.3s ease, border-bottom 0.3s ease;
      border-bottom: 2px solid transparent;
    }

    header nav a:hover {
      color: var(--text-white);
      border-bottom: 2px solid var(--primary-color);
      transform: none; /* Removendo o transform */
      box-shadow: none; /* Removendo o box-shadow */
    }

    /* Padronizando a cor dos links de navegação */
    header nav a[href="#porque"],
    header nav a[href="#como"],
    header nav a[href="#planos"],
    header nav a[href="#contato"] {
      background: none;
      color: var(--text-gray);
      font-weight: 500;
    }

    /* Botão de Contato na Nav */
    header nav a[href="#contato"] {
      background: var(--primary-color);
      color: white;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: 600;
      border-bottom: none;
    }

    header nav a[href="#contato"]:hover {
      background: var(--primary-color-dark);
      color: white;
      border-bottom: none;
    }

    /* ===== HERO ===== */
    .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 10rem 5% 8rem; /* padrão mobile/tablet */
  background: radial-gradient(circle at 10% 20%, var(--bg-darker) 0%, var(--bg-dark) 100%);
  min-height: 100vh;
  text-align: left;
}

/* 📺 Aumenta o padding lateral no modo computador */
@media (min-width: 1200px) {
  .hero {

    padding: 10rem 5% 8rem;
  }

.hero h1 {margin-left: 250PX;

}

.hero p { margin-left: 250PX;}
.hero-buttons {margin-left: 250px;
text-align: center;}

}


    .hero h1 {
      font-size: 6rem; /* Aumentado o tamanho da fonte */
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 1.5rem;
      letter-spacing: -2px;
    }

    .hero p {
      font-size: 1.2rem; /* Aumentado o tamanho da fonte */
      color: var(--text-gray);
      margin-bottom: 3rem;
      line-height: 1.7;
      max-width: 600px;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem; /* Aumentado o espaçamento */
      flex-wrap: wrap;
      justify-content: center;
    }

    

    /* ===== PHONE MOCKUP (Ajustes de Cores) ===== */
    .phone-mockup {
      position: relative;
      width: 100%;
      max-width: 290px; /* Levemente maior */
      margin-left: 40px;
      
    }
@media (min-width: 1200px) {
  
  .phone-mockup {margin-left: 120PX;}
}
    .phone-frame {
      background: var(--bg-card);
      border-radius: 40px;
      padding: 12px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 0 1px var(--border-light);
      position: relative;
      aspect-ratio: 9 / 19.5;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .phone-screen {
      background: #000000;
      border-radius: 32px;
      overflow: hidden;
      flex: 1;
      display: flex;
      flex-direction: column;
      padding-top: 30px;
    }

    .phone-status-bar {
      color: var(--text-gray);
      border-bottom: 1px solid var(--border-light);
      text-align: center;
    }

    .order-item {
      background: var(--bg-card-light);
      border-left: 4px solid var(--primary-color); /* Usando a nova cor primária */
      border-radius: 8px;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: slideIn 0.5s ease forwards;
    }

    .order-status.novo { color: var(--primary-color); } /* Novo */
    .order-status.aceito { color: var(--secondary-color); } /* Aceito (Verde) */
    .order-status.pronto { color: #ffc107; } /* Pronto (Amarelo) */

    /* ===== CARDS (Ajustes de Cores e Estilo) ===== */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Cards um pouco maiores */
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background: var(--bg-card);
      padding: 3rem 2.5rem; /* Aumentado o padding */
      border-radius: 12px;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-10px); /* Efeito mais pronunciado */
      border-color: var(--primary-color);
      box-shadow: 0 20px 50px var(--shadow-color);
    }

    .card-icon {
      font-size: 3.5rem; /* Ícones maiores */
      margin-bottom: 1.5rem;
      color: var(--primary-color); /* Cor primária nos ícones */
    }

    .card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .card p {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.7;
    }

    /* ===== STEPS (Ajustes de Cores e Estilo) ===== */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
      align-items: start;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 65px; /* Levemente maior */
      height: 65px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 800;
      margin: 0 auto 1.5rem;
      box-shadow: 0 8px 20px var(--shadow-color);
      color: white;
    }

    .step-arrow {
      position: absolute;
      top: 20px;
      right: -10px; /* Ajustado para melhor visualização */
      font-size: 2.5rem;
      color: var(--border-light); /* Cor mais discreta */
    }

    /* ===== INFO BOX (Ajustes de Cores) ===== */
    .info-box {
      background: var(--bg-card);
      border: 2px solid var(--primary-color);
      border-radius: 12px;
      padding: 3rem; /* Aumentado o padding */
      margin: 5rem auto; /* Aumentado o margin */
      max-width: 900px;
      text-align: center;
      box-shadow: 0 10px 30px var(--shadow-color);
    }

    .info-box::before {
      content: '💡'; /* Ícone mais profissional */
      display: block;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .info-box h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text-white);
    }

    /* ===== BENEFITS GRID (Ajustes de Cores e Estilo) ===== */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .benefit-card {
      background: var(--bg-card);
      padding: 2.5rem 2rem;
      border-radius: 12px;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      text-align: left; /* Alinhamento à esquerda para mais profissionalismo */
    }

    .benefit-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
      box-shadow: 0 15px 40px var(--shadow-color);
    }

    .benefit-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    .benefit-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .benefit-card p {
      color: var(--text-gray);
      font-size: 1rem;
    }

    /* ===== DEMO SECTION (Ajustes de Cores e Layout) ===== */
    .demo-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; /* Aumentado o espaçamento */
      align-items: center;
      max-width: 1200px;
      margin: 4rem auto 0;
      text-align: left;
    }

    .demo-content h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .demo-list {
      list-style: none;
      text-align: left;
      margin-top: 2rem;
    }

    .demo-list li {
      padding: 0.8rem 0;
      padding-left: 2.5rem;
      position: relative;
      color: var(--text-white);
      font-size: 1.05rem;
      border-bottom: 1px solid var(--border-dark);
    }

    .demo-list li:last-child {
      border-bottom: none;
    }

    .demo-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--secondary-color); /* Usando verde para checkmark */
      font-weight: 800;
      font-size: 1.3rem;
    }

    .demo-box {
      background: var(--bg-card);
      border: 2px solid var(--primary-color);
      border-radius: 12px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 10px 30px var(--shadow-color);
    }

    .demo-box h4 {
      color: var(--primary-color);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 2rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    /* ===== NOVO PRICING - FAIXAS DE USO ===== */
    .pricing-info {
      max-width: 900px;
      margin: 0 auto 4rem;
      text-align: left;
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid var(--border-light);
    }

    .pricing-info h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    .pricing-info p {
      color: var(--text-gray);
      margin-bottom: 1.5rem;
    }

    .usage-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .usage-table th, .usage-table td {
      padding: 1rem;
      border: 1px solid var(--border-dark);
      text-align: center;
      font-size: 0.95rem;
    }

    .usage-table th {
      background: var(--bg-card-light);
      color: var(--text-white);
      font-weight: 600;
    }

    .usage-table td {
      background: var(--bg-darker);
      color: var(--text-gray);
    }

    .usage-table tr:nth-child(even) td {
      background: var(--bg-dark);
    }

    .usage-table .free-tier {
      color: var(--secondary-color);
      font-weight: 700;
    }

    .usage-table .price-col {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 1.1rem;
    }

    /* Estilos para o Plano Único */
    .single-plan-container {
      max-width: 500px;
      margin: 4rem auto 0;
    }

    .single-plan-card {
      background: var(--bg-card);
      border: 2px solid var(--primary-color); /* Destaque para o plano FREE */
      border-radius: 12px;
      padding: 3rem 2.5rem;
      text-align: center;
      box-shadow: 0 15px 40px rgba(167, 116, 40, 0.2);
    }

    .single-plan-card h3 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .single-plan-card .plan-subtitle {
      font-size: 1.1rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
    }

    .single-plan-card .plan-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .single-plan-card .plan-features li {
      padding: 0.8rem 0;
      color: var(--text-white);
      font-size: 1rem;
      border-bottom: 1px solid var(--border-dark);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .single-plan-card .plan-features li::before {
      content: '✓';
      color: var(--secondary-color);
      font-weight: 800;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .plan-features .usage-note {
      font-size: 0.85rem;
      color: var(--text-light-gray);
      margin-top: 1rem;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border-dark);
    }

    .multi-store-info {
      margin-top: 2rem;
      padding: 1.5rem;
      background: var(--bg-darker);
      border-radius: 8px;
      border-left: 4px solid var(--primary-color);
      text-align: left;
    }

    .multi-store-info p {
      font-size: 0.95rem;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .multi-store-info strong {
      color: var(--text-white);
    }

    .multi-store-info a {
      color: var(--primary-color);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .pricing-info {
        padding: 1rem;
      }

      .usage-table th, .usage-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
      }
    }

    .demo-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem;
      background: var(--bg-darker);
      border-radius: 8px;
      margin-bottom: 1rem;
      border-left: 4px solid var(--primary-color);
    }

    .demo-item-status {
      padding: 0.4rem 1rem;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .demo-item-status.novo { background: var(--primary-color); color: white; }
    .demo-item-status.aceito { background: var(--secondary-color); color: white; }
    .demo-item-status.pronto { background: #ffc107; color: var(--bg-dark); }

    .demo-item-text {
      flex: 1;
      text-align: left;
      font-weight: 600;
    }

    /* ===== TESTIMONIALS (Ajustes de Cores e Estilo) ===== */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .testimonial {
      background: var(--bg-card);
      padding: 2.5rem;
      border-radius: 12px;
      border: 1px solid var(--border-light);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .testimonial-stars {
      color: #ffc107; /* Estrelas Amarelas */
      font-size: 1.3rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .testimonial-text {
      color: var(--text-gray);
      font-size: 1rem;
      font-style: italic;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .testimonial-author {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 0.95rem;
      display: block;
      margin-top: 1rem;
    }

    /* ===== PRICING (Ajustes de Cores e Estilo) ===== */
    .pricing-plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .plan {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 3rem 2.5rem;
      transition: all 0.3s ease;
      position: relative;
      text-align: left;
    }

    .plan.popular {
      border-color: var(--primary-color);
      box-shadow: 0 15px 40px var(--shadow-color);
      transform: scale(1.05);
    }

    .plan.popular::before {
      content: 'Mais popular';
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-color);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

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

    .plan.popular:hover {
      transform: scale(1.05) translateY(-5px);
    }

    .plan h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .plan-subtitle {
      color: var(--text-gray);
      font-size: 1rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .plan-price {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .plan-period {
      color: var(--text-gray);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .plan-features {
      list-style: none;
      margin: 2rem 0;
    }

    .plan-features li {
      padding: 0.8rem 0;
      color: var(--text-gray);
      font-size: 1rem;
      border-bottom: 1px solid var(--border-dark);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .plan-features li::before {
      content: '✓';
      color: var(--secondary-color); /* Checkmark verde */
      font-weight: 800;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .plan-button {
      width: 100%;
      padding: 1.2rem;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 2rem;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      text-align: center;
    }

    .plan-button:hover {
      background: var(--primary-color-dark);
    }

    /* ===== CTA (Ajustes de Cores e Estilo) ===== */
    .cta-section {
      background: var(--bg-card);
      padding: 5rem 5%;
      text-align: center;
      border-top: 1px solid var(--border-light);
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .cta-content p {
      font-size: 1.1rem;
      color: var(--text-gray);
      margin-bottom: 2.5rem;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      
    }

    /* ===== FOOTER (Ajustes de Cores e Estilo) ===== */
    footer {
      background: var(--bg-darker);
      padding: 4rem 5% 2rem;
      border-top: 1px solid var(--border-light);
      text-align: left;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 1rem;
    }

    .footer-brand .logo span {
      color: var(--primary-color);
    }
.logo {
  display: flex;
  align-items: center;
 
}


.logo img {
  height: 300px; /* ajuste o tamanho conforme sua logo */
  width: auto;
  object-fit: contain;
  margin-top: -35%;
  margin-left: 10%;
  margin-bottom: -100px; /* 🔽 diminui o espaço abaixo da imagem */
  align-items: center;
}
.logo2 {
  display: flex;
  align-items: center;
 
}


.logo2 img {
  height: 300px; /* ajuste o tamanho conforme sua logo */
  width: auto;
  object-fit: contain;
  margin-top: -35%;

  margin-bottom: -100px; /* 🔽 diminui o espaço abaixo da imagem */
}
.demo-image {
  text-align: center;
}

.demo-image img {
  width: 100%;
  max-width: 550px; /* ajuste conforme o tamanho da imagem */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(248, 170, 2, 0.6);
  border: 2px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px var(--shadow-color);
}
.demo-image2 {
  text-align: center;
}

.demo-image2 img {
  width: 100%;
  height: 500px;
  max-width: 900x; /* ajuste conforme o tamanho da imagem */
  border-radius: 12px;
  
  
}



    .footer-brand p {
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .footer-links h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text-white);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 0.8rem;
    }

    .footer-links ul li a {
      color: var(--text-gray);
      font-size: 0.95rem;
    }

    .footer-links ul li a:hover {
      color: var(--primary-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-dark);
      text-align: center;
      color: var(--text-light-gray);
      font-size: 0.85rem;
    }

    /* Float Button (Ajustes de Cores) */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background: var(--secondary-color); /* Verde WhatsApp */
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
      z-index: 99;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    /* ===== MEDIA QUERIES (Ajustes) ===== */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .hero p {
        max-width: 100%;
      }

      .hero-buttons {

        justify-content: center;
      }

      .phone-mockup {
        margin-top: 3rem;
      }

      .demo-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .demo-content {
        order: 2;
      }

      .demo-box {
        order: 1;
      }

      .demo-list {
        text-align: center;
      }

      .demo-list li {
        padding-left: 0;
        justify-content: center;
      }

      .demo-list li::before {
        position: static;
        margin-right: 0.5rem;
      }

      .footer-top {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 1rem 3%;
      }

      header nav {
        
        display: none; /* Ocultar navegação em telas menores (idealmente seria um menu hamburguer) */
      }

      section {
        padding: 4rem 3%;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      section h2 {
        font-size: 2rem;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .btn {
        width: 100%;
      }

      .hero-buttons {

        flex-direction: column;
      }

      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
      }
    }

    /* Animações (mantidas, mas com cores ajustadas) */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

  /* =====================================================
   SHOWCASE – MODELOS DE LOJAS (REFINADO)
===================================================== */

.showcase-section {
  padding: 6rem 5%;
  background: radial-gradient(circle at top, #2a2114, var(--bg-dark));
}

.showcase-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.showcase-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.showcase-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* GRID */
.showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

/* Desktop */
@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.showcase-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 3rem 2.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(248,149,0,.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .35s ease;
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 30px 70px rgba(248,149,0,0.25);
}

/* TEXTO */
.showcase-text {
  text-align: center;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-text h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 1rem 0;
}

.showcase-text p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* LISTA */
.showcase-text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.showcase-text ul li {
  font-size: .95rem;
  margin-bottom: .7rem;
  color: var(--text-white);
}

/* CTA */
.cta-text {
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

/* TAGS */
.tag {
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: .8rem;
  letter-spacing: .5px;
}

.tag-agendamento {
  background: rgba(248,170,2,.18);
  color: var(--primary-color);
}

.tag-delivery {
  background: rgba(40,167,69,.18);
  color: var(--secondary-color);
}

/* MOBILE */
@media (max-width: 768px) {
  .showcase-card {
    padding: 2.5rem 1.8rem;
  }

  .showcase-text h3 {
    font-size: 1.6rem;
  }
}
