
    /* ===== PÁGINA DE PRICING - ESTILOS REVISADOS ===== */

    /* REMOVER FAIXA BRANCA ENTRE HEADER E HERO */
    body {
      background: var(--brand-blue);
    }

    .pricing-page {
      padding-top: 0;
      background: var(--brand-blue);
    }

    /* HERO - COMEÇA DIRETAMENTE ABAIXO DO HEADER */
    .pricing-hero {
      padding: 40px 0 60px;
      text-align: center;
      background: var(--brand-blue);
      color: white;
      position: relative;
      overflow: hidden;
      margin-top: 0;
    }

    .pricing-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(50, 58, 204, 0.95) 0%, rgba(42, 48, 179, 0.98) 100%);
      z-index: 1;
    }

    .pricing-hero .container {
      position: relative;
      z-index: 2;
      padding-top: 20px;
      /* Espaço extra para compensar o header sticky */
    }

    .pricing-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--brand-yellow);
      margin-bottom: 24px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .pricing-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto 40px;
      opacity: 0.95;
    }

    .pricing-hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .pricing-hero-cta .btn.primary {
      background: var(--brand-yellow);
      color: var(--brand-blue);
      border: 2px solid var(--brand-yellow);
      padding: 14px 32px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .pricing-hero-cta .btn.primary:hover {
      background: #fdfd6b;
      transform: translateY(-2px);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .pricing-hero-cta .btn.secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 14px 32px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .pricing-hero-cta .btn.secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }

    /* SEÇÕES DE CONTEÚDO - ALTERNANDO FUNDOS */
    .pricing-section {
      padding: 80px 0;
      background: white;
      /* Todas as seções após o hero são brancas */
    }

    /* A primeira seção após o hero precisa de padding-top extra */
    .pricing-why {
      padding-top: 80px;
    }

    .pricing-section h2 {
      color: var(--brand-blue);
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

    .pricing-section h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--brand-yellow);
      border-radius: 2px;
    }

    .pricing-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 20px;
      color: var(--ink-700);
    }

    .pricing-section strong {
      color: var(--brand-blue);
      font-weight: 700;
    }

    /* LISTAS ESTILIZADAS */
    .pricing-steps {
      list-style: none;
      counter-reset: step-counter;
      padding-left: 0;
      margin: 40px 0;
    }

    .pricing-steps li {
      counter-increment: step-counter;
      margin-bottom: 25px;
      padding-left: 60px;
      position: relative;
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--ink-700);
    }

    .pricing-steps li::before {
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      height: 40px;
      background: var(--brand-yellow);
      color: var(--brand-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Dosis", sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px rgba(50, 58, 204, 0.2);
    }

    .pricing-assets {
      list-style: none;
      padding-left: 0;
      margin: 30px 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }

    .pricing-assets li {
      padding: 16px 20px;
      background: rgba(50, 58, 204, 0.05);
      border-left: 4px solid var(--brand-blue);
      border-radius: 8px;
      font-weight: 600;
      color: var(--ink-700);
      transition: all 0.3s ease;
    }

    .pricing-assets li:hover {
      background: rgba(50, 58, 204, 0.1);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    }

    /* CALCULADORA - FUNDO CLARO */
    .pricing-calculator {
      background: var(--bg-light);
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-calculator h2 {
      color: var(--brand-blue);
    }

    .pricing-calculator-embed {
      margin: 40px 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pricing-calculator-embed iframe {
      width: 100%;
      height: 600px;
      border: none;
      display: block;
      background: white;
    }

    /* FAQ - FUNDO CLARO */
    .pricing-faq {
      background: white;
    }

    .pricing-faq h2 {
      color: var(--brand-blue);
    }

    .pricing-faq details {
      margin-bottom: 16px;
      border: 1px solid rgba(50, 58, 204, 0.15);
      border-radius: 12px;
      overflow: hidden;
      background: white;
      transition: all 0.3s ease;
    }

    .pricing-faq details[open] {
      box-shadow: 0 8px 24px rgba(50, 58, 204, 0.15);
      border-color: var(--brand-blue);
    }

    .pricing-faq summary {
      padding: 20px 60px 20px 24px;
      font-family: "Dosis", sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--brand-blue);
      cursor: pointer;
      position: relative;
      list-style: none;
      transition: all 0.2s ease;
      background: rgba(50, 58, 204, 0.03);
    }

    .pricing-faq summary:hover {
      background: rgba(50, 58, 204, 0.08);
    }

    .pricing-faq summary::-webkit-details-marker {
      display: none;
    }

    .pricing-faq summary::after {
      content: "+";
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--brand-blue);
      transition: transform 0.3s ease;
    }

    .pricing-faq details[open] summary::after {
      content: "−";
      transform: translateY(-50%) rotate(0deg);
    }

    .pricing-faq details p {
      padding: 0 24px 24px;
      margin: 0;
      color: var(--ink-700);
      line-height: 1.6;
      font-size: 1.05rem;
    }

    /* CTA FINAL - FUNDO AZUL */
    .pricing-final-cta {
      padding: 100px 0;
      text-align: center;
      background: var(--brand-blue);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .pricing-final-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 1;
    }

    .pricing-final-cta .container {
      position: relative;
      z-index: 2;
    }

    .pricing-final-cta h2 {
      color: var(--brand-yellow);
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 32px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .pricing-cta-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .pricing-cta-actions .btn.primary {
      background: var(--brand-yellow);
      color: var(--brand-blue);
      border: 2px solid var(--brand-yellow);
      padding: 16px 36px;
      font-size: 1.1rem;
      font-weight: 700;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .pricing-cta-actions .btn.primary:hover {
      background: #fdfd6b;
      transform: translateY(-2px);
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .pricing-cta-actions .btn.secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 16px 36px;
      font-size: 1.1rem;
      font-weight: 700;
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }

    .pricing-cta-actions .btn.secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
    }

    /* RESPONSIVIDADE */
    @media (max-width: 768px) {
      .pricing-hero {
        padding: 30px 0 40px;
      }

      .pricing-hero .container {
        padding-top: 10px;
      }

      .pricing-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
      }

      .pricing-hero-cta,
      .pricing-cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .pricing-hero-cta .btn,
      .pricing-cta-actions .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 12px;
      }

      .pricing-section {
        padding: 60px 0;
      }

      .pricing-why {
        padding-top: 60px;
      }

      .pricing-calculator-embed iframe {
        height: 600px;
      }

      .pricing-assets {
        grid-template-columns: 1fr;
      }

      .pricing-steps li {
        padding-left: 50px;
      }

      .pricing-steps li::before {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .pricing-calculator-embed iframe {
        height: 600px;
      }

      .pricing-faq summary {
        padding: 16px 50px 16px 20px;
        font-size: 1rem;
      }

      .pricing-final-cta {
        padding: 70px 0;
      }
    }

    /* ESTILO PARA O TEXTO DE CONTATO ENTERPRISE */
    .pricing-contact-note {
      margin-top: 32px;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
      line-height: 1.5;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-contact-note a {
      color: var(--brand-yellow);
      opacity: 0.9;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .pricing-contact-note a::after {
      content: "→";
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .pricing-contact-note a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .pricing-contact-note a:hover::after {
      transform: translateX(3px);
    }

    /* RESPONSIVIDADE */
    @media (max-width: 768px) {
      .pricing-contact-note {
        margin-top: 24px;
        font-size: 0.9rem;
        padding: 0 15px;
      }
    }

    /* ESTILO PARA O TEXTO DE PREÇO MÍNIMO NO HERO */
    .pricing-minimum-note {
      margin: 24px auto 32px;
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      line-height: 1.5;
      max-width: 600px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      border-left: 3px solid var(--brand-yellow);
    }

    .pricing-minimum-note strong {
      color: var(--brand-yellow);
      font-weight: 700;
    }

    /* RESPONSIVIDADE */
    @media (max-width: 768px) {
      .pricing-minimum-note {
        margin: 20px auto 28px;
        font-size: 0.95rem;
        padding: 14px 16px;
      }
    }

    @media (max-width: 480px) {
      .pricing-minimum-note {
        margin: 16px auto 24px;
        font-size: 0.9rem;
        padding: 12px 14px;
      }
    }
