  :root {
      --primary: #f9c015;
      /* Amarelo exato da imagem */
      --bg-black: #000000;
      --text-white: #FFFFFF;
      --radius-btn: 8px;
      --radius-badge: 50px;
  }

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

  body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-black);
      color: var(--text-white);
      overflow-x: hidden;
  }

  .container-seo {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
  }

  /* --- HERO SECTION --- */
  .hero {
      padding: 120px 0 160px;
      position: relative;
      background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.08) 0%, rgba(0, 0, 0, 1) 50%);
  }

  /* O brilho sutil que aparece no fundo à direita */
  .hero::after {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: var(--primary);
      filter: blur(150px);
      opacity: 0.12;
      z-index: 0;
      pointer-events: none;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
  }

  /* Badge amarela superior */
  .badge {
      display: inline-block;
      background-color: var(--primary);
      color: #000;
      font-size: 11px;
      font-weight: 800;
      padding: 6px 14px;
      border-radius: var(--radius-badge);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 32px;
  }

  /* Título Principal */
  h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 5vw, 64px);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
  }

  h1 span {
      color: var(--primary);
  }

  /* Parágrafo */
  .hero p {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 48px;
      max-width: 580px;
  }

  /* Botão "Quero saber mais" */
  .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: var(--primary);
      color: #000;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: var(--radius-btn);
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s ease;
  }

  .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
  }

  .btn-hero i {
      font-size: 18px;
  }

  .benefits-section {
      font-family: 'Inter', sans-serif;
      /* Sugestão de fonte moderna */
      margin: 0px auto;
      padding: 20px;
      color: #333;
      background-color: #fff;
  }

  .benefits-header {
      margin-bottom: 40px;
      text-align: center;
  }

  .benefits-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 10px;
  }

  .benefits-header span {
      color: var(--primary);
      /* Tom de amarelo da imagem */
  }

  .benefits-header p {
      color: #666;
      line-height: 1.5;
  }

  /* Grid Layout */
  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 20px;
  }

  /* Estilo Base dos Cards */
  .benefit-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 16px;
      padding: 30px;
      transition: transform 0.3s ease;
  }

  .benefit-card h2 {
      font-size: 1.25rem;
      margin: 20px 0 15px 0;
      font-weight: 700;
  }

  .benefit-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
  }

  /* Card de Destaque (Preto) */
  .feature-card {
      background: #000;
      color: #fff;
      grid-column: span 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .feature-card p {
      color: #ccc;
  }

  /* Ícones */
  .icon-box {
      background: var(--primary);
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.2rem;
  }

  .icon-light {
      background: #fff9e6;
      /* Amarelo clarinho para os cards brancos */
      color: var(--primary);
  }

  .how-it-works {
      background-color: #f9f9f9;
      /* Fundo levemente cinza como na imagem */
      padding: 80px 20px;
      text-align: center;
      font-family: 'Inter', sans-serif;
  }

  .how-it-works .container {
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 15px;
  }

  .section-title span {
      color: #ffcc00;
  }

  .title-underline {
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 0 auto 60px;
      border-radius: 2px;
  }

  /* Grid de Passos */
  .steps-grid {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
  }

  .step-item {
      flex: 1;
      min-width: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Estilo do Número Amarelo */
  .step-number {
      background-color: #ffcc00;
      color: #000;
      width: 60px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.2rem;
      border-radius: 12px;
      margin-bottom: 25px;
  }

  .step-item h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 12px;
  }

  .step-item p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
      max-width: 260px;
  }

  .market-stats {
      padding: 80px 20px;
      background-color: #fff;
      font-family: 'Inter', sans-serif;
  }

  .market-stats .container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
  }

  /* Lado do Texto */
  .content-side {
      flex: 1.2;
  }

  .content-side h2 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 30px;
      color: #000;
  }

  .content-side h2 span {
      color: #ffcc00;
  }

  .text-block p {
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 20px;
  }

  /* Lado das Estatísticas */
  .stats-side {
      flex: 1;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .stat-card {
      background: #f8f9fa;
      /* Cinza bem claro */
      border: 1px solid #eee;
      border-radius: 15px;
      padding: 30px 15px;
      text-align: center;
      transition: transform 0.3s ease;
  }

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

  .stat-icon {
      font-size: 1.5rem;
      color: #ffcc00;
      display: block;
      margin-bottom: 15px;
  }

  .stat-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: #000;
  }

  .stat-card p {
      font-size: 0.85rem;
      color: #777;
      font-weight: 500;
  }

  .cta-section {
      background-color: #ffcc00;
      /* Amarelo vibrante da identidade visual */
      padding: 80px 20px;
      text-align: center;
      font-family: 'Inter', sans-serif;
  }

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

  .cta-section h2 {
      color: #000;
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
  }

  .cta-section p {
      color: #333;
      font-size: 1.1rem;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  /* Estilo do Botão */
  .cta-button {
      display: inline-flex;
      align-items: center;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      padding: 18px 35px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .cta-button .arrow {
      margin-left: 10px;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
  }

  /* Efeito Hover */
  .cta-button:hover {
      background-color: #222;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .cta-button:hover .arrow {
      transform: translateX(5px);
  }
  
  .container-seo {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
  }

  /* O Número Grande em Amarelo */
  .stat-number {
      display: block;
      font-size: 36px;
      font-weight: 800;
      color: #FFB800;
      margin-bottom: 8px;
      font-family: 'Space Grotesk', sans-serif;
  }

  .stat-card h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #000;
  }

  .stat-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #6B7280;
  }

  .unidades-section {
      background: #f5f5f5;
      padding: 90px 0;
      text-align: center;
  }

  .container-seo {
      width: 90%;
      max-width: 1200px;
      margin: auto;
  }

  .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--bg-black);
  }

  .section-title span {
      color: #f4b400;
  }

  .section-subtitle {
      margin-top: 15px;
      color: #555;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .title-divider {
      width: 60px;
      height: 4px;
      background: #f4b400;
      margin: 25px auto 50px;
      border-radius: 2px;
  }

  .unidades-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .unidade-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
  }

  .unidade-card:hover {
      transform: translateY(-6px);
  }

  .card-top {
      background: #000;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .card-body {
      padding: 25px;
      text-align: left;
  }

  .card-body h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #000;
  }

  .address {
      color: #666;
      font-size: 14px;
      margin-bottom: 10px;
  }

  .features-seo {
      color: #f4b400;
      font-size: 14px;
      font-weight: 500;
  }

  /* --- ESTILOS DA SEÇÃO UNIDADES --- */
  .units {
      background-color: #F9FAFB;
      /* Cinza bem claro para destacar os cards brancos */
      padding: 100px 0;
      text-align: center;
  }

  .units h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 32px;
      margin-bottom: 12px;
      color: #000;
  }

  .units h2 span {
      color: #FFB800;
  }

  .units>.container-seo>p {
      color: #6B7280;
      margin-bottom: 60px;
      font-size: 15px;
  }

  .units-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  /* --- ESTILOS DA SEÇÃO TIPOS DE BOXES --- */
  .boxes-section {
      background-color: #FFFFFF;
      padding: 100px 0;
      text-align: center;
      color: #1A1A1A;
  }

  .boxes-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 36px;
      margin-bottom: 12px;
  }

  .boxes-section h2 span {
      color: #FFB800;
  }

  .boxes-section>.container-seo>p {
      color: #6B7280;
      max-width: 600px;
      margin: 0 auto 60px;
      font-size: 15px;
      line-height: 1.6;
  }

  /* Linha amarela decorativa abaixo do título */
  .title-underline {
      width: 60px;
      height: 4px;
      background-color: #FFB800;
      margin: 15px auto 30px;
      border-radius: 2px;
  }

  .boxes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 50px;
  }

  /* Estilo do Card de Box */
  .box-card {
      background-color: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
  }

  .box-card:hover {
      transform: translateY(-8px);
      border-color: #FFB800;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  /* Cabeçalho Bege do Card */
  .box-card-header {
      background-color: #FFF9EB;
      /* Bege claro da imagem */
      padding: 110px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .box-card-header i {
      color: #FFB800;
      font-size: 40px;
  }

  /* Corpo do Card */
  .box-card-body {
      padding: 30px 20px;
      flex-grow: 1;
  }

  .box-card-body h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 4px;
      color: #000;
  }

  .box-type-label {
      color: #FFB800;
      font-size: 13px;
      font-weight: 700;
      text-transform: capitalize;
      margin-bottom: 15px;
      display: block;
  }

  .box-description {
      font-size: 13px;
      color: #6B7280;
      margin-bottom: 15px;
      min-height: 40px;
  }

  .box-price {
      font-size: 15px;
      font-weight: 800;
      color: #000;
  }

  /* Responsividade */
  @media (max-width: 992px) {
      .market-stats .container {
          flex-direction: column;
          text-align: center;
      }

      .stats-side {
          width: 100%;
      }

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

      .feature-card {
          grid-column: span 2;
      }
  }

  @media (max-width: 768px) {
      .hero {
          padding: 80px 0;
      }

      .steps-grid {
          flex-direction: column;
          align-items: center;
      }

      .step-item {
          margin-bottom: 40px;
      }
  }

  @media (max-width: 600px) {
      .cta-section h2 {
          font-size: 1.8rem;
      }

      .cta-button {
          width: 100%;
          justify-content: center;
          box-sizing: border-box;
      }

      .benefits-grid {
          grid-template-columns: 1fr;
      }

      .feature-card {
          grid-column: span 1;
      }

      .benefits-header h1 {
          font-size: 1.8rem;
      }
  }

  @media (max-width: 480px) {
      .stats-grid {
          grid-template-columns: 1fr;
      }
  }