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

  html {
    overflow-x: hidden;
    width: 100%;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #292929;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #292929;
  }
  
  h2 {
    font-weight: 700;
    color: #292929;
  }
  
  h3 {
    font-weight: 700;
    color: #292929;
  }
  
  h3 span {
    color: #ffffff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  p {
    font-size: 1.2rem; /* ajuste global */
  }
  
  /* Destaque preço */
  .price {
    font-size: 2rem;
    font-weight: 800;
    color: #caa042;
    margin: 20px 0;
  }

  .valor {
    font-size: 40px;
    font-weight: bold;
  }
  
  /* Navbar */
  .navbar {
    background: #ffffff;
    color: #292929;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    width: 60px;
  }
  
  .logo span {
    color: #caa042;
  }
  .nav-content nav ul {
    display: flex;
    gap: 25px;
  }
  
  .nav-content nav ul li a {
    font-weight: 500;
    color: #333;
  }
  
  .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
  }

      /* Botão dourado com pulso */
.btn-gold {
    background: linear-gradient(135deg, #caa042, #ffd700, #caa042);
    background-size: 200% 200%;
    color: #fff;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    animation: pulse 1.8s infinite ease-in-out; /* sempre pulsando */
    display: inline-block;
    text-align: center;
  }
  
  .btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    animation-play-state: paused; /* pausa só no desktop */
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 8px rgba(202, 160, 66, 0.6),
        0 0 20px rgba(202, 160, 66, 0.4);
    }
    50% {
      transform: scale(1.08);
      box-shadow: 0 0 12px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 8px rgba(202, 160, 66, 0.6),
        0 0 20px rgba(202, 160, 66, 0.4);
    }
  }
  
  .btn-white {
    background: #ffffff;
    border: 1px solid #333333;
    color: #333333;
  }
  
  .btn:hover {
    opacity: 0.85;
  }
  
  /* Hero */
  .sales {
    background: linear-gradient(to bottom, #fff, #f9e7b3);
    padding: 2rem 0;
    text-align: center;
  }
  
  .sales-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px auto 0;
    max-width: 1200px;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    margin-bottom: 20px;
  }
  
  .hero-text p {
    margin-bottom: 15px;
  }
  
  .hero-img img {
    width: 38rem;
    max-width: 100%;
  }
  
  .rating {
    margin-top: 10px;
    color: #777;
  }
  
  .metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px auto;
    padding: 20px 0;
    width: 70%;
    height: 10rem;
    background: #292929;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    border-radius: 20px;
  }
  
  .metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Mercado */
  .pain {
    background: linear-gradient(to bottom, #f9e7b3, #ffffff);
    padding: 2rem 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  
  .pain h2 {
    margin-bottom: 20px;
  }
  
  .pain ul {
    margin-bottom: 30px;
  }
  
  .pain ul li {
    margin-bottom: 10px;
  }
  
  /* Serviços */
  .discover {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
  }
  
  .discover-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
  }
  
  .discover-grid img {
    width: 60%;
  }
  
  .discover-text {
    flex: 1;
  }
  
  /* Conteúdos do Ebook */
  .ebook-content {
    padding: 80px 0;
    background: #ffffff;
    color: #292929;
    text-align: center;
  }
  
  .ebook-content-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .ebook-content-img img {
    width: 28rem;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  .ebook-content-img h2 {
    width: 300px;
    margin-bottom: 20px;
  }
  
  /* CTA */
  .cta {
    padding: 60px 0;
    text-align: center;
  }
  
  .cta p {
    margin: 20px 0;
  }
  
  /* Imagine */
  .imagine {
    padding: 80px 0;
    text-align: center;
  }
  
  .imagine-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .contato-info {
    flex: 1;
  }
  
  .contato-img {
    text-align: center;
  }
  
  .contact-img {
    width: 30rem;
    max-width: 100%;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #25d366;
    color: #ffffff;
    border-radius: 5px;
  }
  
  /* Footer */
  .footer {
    background: #292929;
    color: #fff;
    padding: 40px 0 20px;
  }
  
  .footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-col h3 {
    margin-bottom: 15px;
  }
  .footer-col ul li {
    margin-bottom: 8px;
  }
  .footer form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .footer input {
    padding: 8px;
    flex: 1;
  }
  
  .footer button {
    border: none;
  }
  
  .footer p {
    font-size: 14px;
    color: #cccccc;
  }
  .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888888;
  }
  
/* ========================= */
/*      Responsividade        */
/* ========================= */
@media (max-width: 1024px) {
    /* Navegação */
    .nav-content nav ul {
      gap: 1px;
    }
  
    /* Hero */
    .hero-img img {
      width: 28rem;
    }
  
    /* Métricas */
    .metrics {
      width: 85%;
      font-size: 18px;
    }
  
    /* Seções */
    .pain {
      padding: 2rem 4rem;
    }
  
    .discover-grid {
      flex-direction: column;
      align-items: center;
    }
    .discover-grid img {
      width: 80%;
    }
  
    .imagine-flex {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    /* Layouts principais */
    .nav-content,
    .sales-content {
      flex-direction: row;
      gap: 15px;
    }
    .sales-content {
      gap: 20px;
    }
  
    /* Hero */
    .hero-img img {
      width: 22rem;
    }
  
    /* Métricas */
    .metrics {
      flex-direction: column;
      gap: 20px;
      height: auto;
      padding: 30px 0;
    }
  
    /* Seções */
    .pain {
      flex-direction: column;
      padding: 2rem;
    }
    .discover,
    .ebook-content,
    .imagine {
      padding: 0 20px 60px;
    }
    .ebook-content-flex,
    .imagine-flex {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      padding: 0 20px;
    }
    .footer-flex {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    /* Botões */
    .btn,
    .btn-gold {
      display: block;
      width: 100%;
      max-width: 300px;
      margin: 12px auto;
    }
  }
  
  @media (max-width: 480px) {
    /* Tipografia */
    h1 {
      font-size: 1.6rem;
    }
    h2 {
      font-size: 1.3rem;
    }
  
    /* Imagens */
    .hero-img img,
    .ebook-content-img img,
    .contact-img {
      width: 100%;
    }
  
    /* Botões */
    .btn,
    .btn-gold {
      max-width: 260px;
      text-align: center;
    }
  
    /* Métricas */
    .metrics {
      width: 95%;
    }
  
    /* Seções */
    .pain {
      padding: 1.5rem;
    }
    .discover,
    .ebook-content,
    .imagine {
      padding: 40px 15px;
    }
  }