.elementor-8474 .elementor-element.elementor-element-f7c57e9{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */<style>
  :root {
    --brand-primary: #22c3a6;
    --brand-secondary: #6b7cff;
    --brand-tertiary: #3ba3ff;
    --brand-warning: #ff9f43;

    --bg-main: #f7fbfa;
    --bg-card: #ffffff;
    --bg-soft: #eef6f4;

    --text-main: #1f2d3d; /* Original dark text color (mantido para outros elementos) */
    --text-muted: #6b7a8c;

    --border-soft: #e4efec;

    --radius-lg: 24px;
    --radius-md: 16px;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-main);
    color: var(--text-main); /* Cor geral do texto */
    font-size: 16px; /* Tamanho base da fonte para mobile */
    line-height: 1.6;
  }

  /* Títulos em preto puro e ajuste de margens para Elementor */
  h1, h2, h3, h4 {
    color: #000; /* Títulos em preto puro, conforme solicitado */
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2; /* Melhor espaçamento entre linhas para títulos */
  }

  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  /* Ajustes para o contêiner principal */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 16px 80px; /* Padding ajustado para mobile */
  }

  /* Fontes fluidas com clamp() para melhor responsividade */
  .badge {
    display: inline-block;
    background: #e6f4f1;
    color: var(--brand-primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: clamp(12px, 3vw, 14px); /* Tamanho fluido */
    font-weight: 600;
    margin-bottom: 12px;
  }

  .cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #22c3a6, #2dd4bf);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15px, 3.5vw, 18px); /* Tamanho fluido */
    transition: 0.25s ease;
    box-shadow: 0 10px 20px rgba(34,195,166,0.35);
  }

  .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(34,195,166,0.45);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: coluna única */
    gap: 28px;
    align-items: center;
    margin-bottom: 72px;
  }

  @media (min-width: 900px) {
    .hero {
      grid-template-columns: 1fr 1fr; /* Desktop: duas colunas */
    }
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px); /* Inicia em 32px, escala, máximo 48px */
    margin-bottom: 16px;
  }

  .hero p {
    font-size: clamp(16px, 4vw, 20px); /* Inicia em 16px, escala, máximo 20px */
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .phone-preview {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
    border-radius: 36px;
    background: linear-gradient(135deg, #e9fbf6, #f2f1ff);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    border: 8px solid #000;
  }

  .phone-preview span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: clamp(13px, 3vw, 15px); /* Tamanho fluido */
    text-align: center;
    padding: 16px;
  }

  .section {
    margin-bottom: 80px;
  }

  .section h2 {
    font-size: clamp(26px, 6vw, 40px); /* Inicia em 26px, escala, máximo 40px */
    margin-bottom: 14px;
  }

  .section p {
    font-size: clamp(16px, 3.5vw, 18px); /* Inicia em 16px, escala, máximo 18px */
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: coluna única */
    gap: 20px;
    margin-top: 32px;
  }

  @media (min-width: 768px) {
    .steps {
      grid-template-columns: repeat(3, 1fr); /* Tablet/Desktop: três colunas */
    }
  }

  .step {
    background: white;
    padding: 26px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-soft);
  }

  .step h3 {
    font-size: clamp(20px, 4vw, 24px); /* Inicia em 20px, escala, máximo 24px */
  }

  .step p {
    font-size: clamp(14px, 3vw, 16px); /* Inicia em 14px, escala, máximo 16px */
    color: var(--text-muted);
    line-height: 1.6;
  }

  .features {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: coluna única */
    gap: 20px;
    margin-top: 32px;
  }

  @media (min-width: 768px) {
    .features {
      grid-template-columns: repeat(2, 1fr); /* Tablet/Desktop: duas colunas */
    }
  }

  .feature {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-soft);
  }

  .feature h4 {
    font-size: clamp(18px, 3.5vw, 22px); /* Inicia em 18px, escala, máximo 22px */
    margin: 0 0 8px 0;
  }

  .feature p {
    margin: 0;
    font-size: clamp(14px, 3vw, 16px); /* Inicia em 14px, escala, máximo 16px */
    color: var(--text-muted);
    line-height: 1.6;
  }

  .comparison {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: coluna única */
    gap: 24px;
    margin-top: 40px;
  }

  @media (min-width: 768px) {
    .comparison {
      grid-template-columns: 1fr 1fr; /* Tablet/Desktop: duas colunas */
    }
  }

  .comparison-box {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-soft);
  }

  .comparison-box h3 {
    font-size: clamp(20px, 4vw, 24px); /* Inicia em 20px, escala, máximo 24px */
  }

  .comparison-box ul {
    padding-left: 18px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .comparison-box li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: clamp(14px, 3vw, 16px); /* Tamanho fluido */
  }

  .pricing {
    background: linear-gradient(135deg, #ecfeff, #f0fdfa);
    padding: 56px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .pricing h2 {
    margin-bottom: 12px;
  }

  .price {
    font-size: clamp(40px, 10vw, 60px); /* Inicia em 40px, escala, máximo 60px */
    font-weight: 700;
    margin: 16px 0;
    color: var(--brand-primary);
  }

  .price small {
    font-size: clamp(14px, 3vw, 18px); /* Tamanho fluido */
    color: var(--text-muted);
    font-weight: 400;
  }

  .faq {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-item {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    border: 1px solid var(--border-soft);
  }

  .faq-item h4 {
    font-size: clamp(17px, 3.5vw, 20px); /* Inicia em 17px, escala, máximo 20px */
    margin: 0 0 6px 0;
  }

  .faq-item p {
    margin: 0;
    font-size: clamp(14px, 3vw, 16px); /* Inicia em 14px, escala, máximo 16px */
    color: var(--text-muted);
    line-height: 1.6;
  }

  .footer-cta {
    text-align: center;
    margin-top: 72px;
  }

  /* Regras adicionais para Elementor para evitar conflitos */
  .elementor-widget-container h1,
  .elementor-widget-container h2,
  .elementor-widget-container h3,
  .elementor-widget-container h4,
  .elementor-widget-container p,
  .elementor-widget-container ul,
  .elementor-widget-container li {
      /* Estas regras são um exemplo. Pode ser necessário ajustá-las
         ou adicionar mais para resetar estilos do Elementor que podem
         interferir nos seus. Por exemplo: */
      /* margin-bottom: 1rem; */
      /* font-family: inherit; */
      /* font-weight: inherit; */
  }
</style>/* End custom CSS */