.elementor-6086 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-6086 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-c14fc42 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp2{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp2:before,
.btn-whatsapp2:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay2:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5848a10 */<style>
    /* ===================== GLOBAL OVERFLOW PROTECTION ===================== */
    html, body { overflow-x: hidden; max-width: 100%; margin: 0; padding: 0; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { max-width: 100%; height: auto; display: block; }

    :root {
      --green-dark:   #1E2234;
      --green-mid:    #25293F;
      --green-light:  #ECEDF6;
      --green-pale:   #F5F5FA;
      --gold:         #A8ADBE;
      --gold-light:   #ECEDF6;
      --gold-dark:    #7C8099;
      --white:        #FFFFFF;
      --off-white:    #F7F7FA;
      --text-dark:    #1E2234;
      --text-mid:     #25293F;
      --text-muted:   #6B7080;
      --border:       #D8DAE8;
      --shadow-sm:    0 2px 12px rgba(30,34,52,0.08);
      --shadow-md:    0 6px 28 rgba(30,34,52,0.14);
      --ff-serif:     'Cinzel', Georgia, serif;
      --ff-sans:      'Poppins', system-ui, sans-serif;
      --radius-sm:    6px;
      --radius-md:    12px;
      --radius-lg:    20px;
      --max-w:        1140px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--ff-sans); color: var(--text-dark); background: var(--off-white); -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }

    .container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* BUTTONS */
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: #25D366; color: var(--white);
      font-family: var(--ff-sans); font-size: 15px; font-weight: 600;
      padding: 16px 32px; border-radius: 50px; border: none; cursor: pointer;
      transition: background .2s, transform .15s; white-space: nowrap;
    }
    .btn-primary:hover { background: #1ebc5a; transform: translateY(-1px); }

    /* TYPOGRAPHY */
    .section-label {
      display: inline-block; font-size: 12px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--green-mid); background: var(--green-light);
      padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
    }
    .section-label.light { color: var(--gold); background: rgba(168,173,190,.15); }

    .section-title {
      font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 42px);
      font-weight: 700; line-height: 1.2; color: var(--text-dark);
    }
    .section-title em { font-style: italic; color: var(--green-mid); }
    .section-title.white { color: var(--white); }
    .section-title.white em { color: var(--gold); }

    .text-muted { color: var(--text-muted); font-size: 16px; line-height: 1.75; }

    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .align-start { align-items: start; }

    /* ===================== HEADER ===================== */
    .header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .logo-mark img { height: 60px; width: auto; object-fit: contain; }
    .nav-desktop { display: flex; align-items: center; gap: 28px; }
    .nav-desktop a { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color .15s; }
    .nav-desktop a:hover { color: var(--green-dark); }
    .nav-desktop .btn-nav { background: #25D366; color: var(--white); font-size: 13px; font-weight: 600; padding: 10px 22px; border-radius: 50px; transition: background .2s; }
    .nav-desktop .btn-nav:hover { background: #1ebc5a; }

    /* ===================== HERO ===================== */
    .hero { background: var(--green-dark); position: relative; overflow: hidden; padding: 80px 0 0; }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(168,173,190,.12) 0%, transparent 65%),
                  radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,41,63,.55) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-texture {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: end; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .hero-content { padding-bottom: 80px; }
    .hero-location { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,173,190,.15); border: 1px solid rgba(168,173,190,.35); color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .08em; padding: 6px 14px; border-radius: 50px; margin-bottom: 24px; }
    .hero h1 { font-family: var(--ff-serif); font-size: clamp(34px, 5vw, 56px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 8px; }
    .hero h1 .sub { display: block; font-size: clamp(17px, 2.2vw, 24px); font-weight: 700; font-style: italic; color: var(--gold); line-height: 1.3; margin-top: 10px; }
    .hero-desc { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.75; margin: 24px 0 28px; max-width: 500px; }
    .hero-checks { list-style: none; margin-bottom: 36px; }
    .hero-checks li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.88); font-size: 15px; margin-bottom: 10px; line-height: 1.4; }
    .hero-checks li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .hero-image-wrapper { position: relative; align-self: end; }
    .hero-img-card { position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; background: var(--green-mid); }
    
    .badge-exp { position: absolute; bottom: 24px; left: -20px; background: var(--white); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); z-index: 5; }
    .badge-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .badge-circle span { font-family: var(--ff-serif); font-size: 12px; font-weight: 700; color: var(--gold); text-align: center; line-height: 1.2; }
    .badge-exp .b-title { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--text-dark); 
  line-height: 1; 
  margin: 0; /* Remove a margem padrão do topo e de baixo */
  margin-bottom: 5px; /* Espacinho sutil entre o título e o subtítulo (ajuste se quiser mais ou menos) */
}

.badge-exp .b-sub { 
  font-size: 11px; 
  color: var(--text-muted); 
  margin: 0; /* Remove a margem padrão para grudar no elemento de cima */
}
    .badge-crm-hero { position: absolute; top: 20px; right: -16px; background: var(--white); color: var(--green-dark); font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: var(--radius-sm); text-align: center; line-height: 1.4; box-shadow: var(--shadow-sm); border: 1px solid var(--border); z-index: 5; }
    .hero-image-mobile { display: none; margin-bottom: 32px; }

    /* ===================== SCROLLING BANNER ===================== */
    .scroll-banner { background: var(--green-dark); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(168,173,190,.2); border-bottom: 1px solid rgba(168,173,190,.2); }
    .scroll-track { display: flex; white-space: nowrap; animation: scrollLeft 30s linear infinite; }
    .scroll-track span { font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 0 6px; }
    .scroll-track span.dot { color: var(--gold); }
    @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ===================== PAIN POINTS ===================== */
    .pain-points { padding: 80px 0; background: var(--white); }
    .pain-header { text-align: center; max-width: 660px; margin: 0 auto 52px; }
    .pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
    .pain-card { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px; transition: border-color .2s, box-shadow .2s; }
    .pain-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
    .pain-icon { width: 36px; height: 36px; background: var(--gold-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .pain-icon i { color: var(--gold-dark); font-size: 15px; }
    .pain-card p { font-size: 14px; color: var(--text-mid); line-height: 1.5; font-weight: 500; }

    /* ===================== DIFFERENTIALS ===================== */
    .differentials { padding: 100px 0 48px; background: var(--off-white); }
    .diff-intro { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .diff-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
    .diff-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; transition: border-color .2s, box-shadow .2s, transform .2s; }
    .diff-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .diff-card.highlight { background: var(--green-dark); border-color: var(--green-dark); }
    .diff-num { font-family: var(--ff-serif); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: .08em; margin-bottom: 14px; display: block; }
    .diff-card-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .diff-card-icon i { font-size: 20px; color: var(--green-dark); }
    .diff-card.highlight .diff-card-icon { background: rgba(168,173,190,.18); }
    .diff-card.highlight .diff-card-icon i { color: var(--gold); }
    .diff-card h3 { font-family: var(--ff-serif); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
    .diff-card.highlight h3 { color: var(--white); }
    .diff-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    .diff-card.highlight p { color: rgba(255,255,255,.68); }
    .diff-badge { display: inline-block; margin-top: 14px; background: var(--green-light); color: var(--green-mid); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
    .diff-card.highlight .diff-badge { background: rgba(168,173,190,.2); color: var(--gold); }
    .diff-badge2 { display: inline-block; margin-top: 14px; background: var(--green-light); color: var(--green-mid); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
    .diff-card.highlight .diff-badge2 { background: rgba(168,173,190,.2); color: var(--gold); }
    .diff-bottom-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

    /* ===================== SERVICES ===================== */
    .services { padding: 100px 0; background: var(--white); }
    .services-header { text-align: center; margin-bottom: 60px; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
    .service-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 44px 36px; transition: border-color .2s, box-shadow .2s; background: var(--white); }
    .service-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); }
    .service-card.featured { background: var(--green-dark); border-color: var(--green-dark); }
    .service-card-top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .service-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .service-icon i { font-size: 22px; color: var(--green-dark); }
    .service-card.featured .service-icon { background: rgba(168,173,190,.2); }
    .service-card.featured .service-icon i { color: var(--gold); }
    .service-card-title { flex: 1; }
    .service-card h3 { font-family: var(--ff-serif); font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 4px; }
    .service-card.featured h3 { color: var(--white); }
    .service-card .tagline { font-size: 13px; color: var(--text-muted); font-style: italic; }
    .service-card.featured .tagline { color: rgba(255,255,255,.55); }
    .service-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
    .service-card.featured .service-divider { border-color: rgba(255,255,255,.12); }
    .service-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
    .service-card.featured .service-desc { color: rgba(255,255,255,.68); }
    .service-includes-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
    .service-card.featured .service-includes-title { color: rgba(255,255,255,.4); }
    .service-list { list-style: none; margin-bottom: 32px; }
    .service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.45; }
    .service-list li:last-child { border-bottom: none; }
    .service-list li i { color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 4px; }
    .service-card.featured .service-list li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.1); }
    .btn-card { display: block; text-align: center; padding: 14px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid #25D366; color: #25D366; transition: background .2s, color .2s; }
    .btn-card:hover { background: #25D366; color: var(--white); }
    .service-card.featured .btn-card { background: #25D366; color: var(--white); border-color: #25D366; }
    .service-card.featured .btn-card:hover { background: #1ebc5a; border-color: #1ebc5a; }

    /* ===================== ABOUT ===================== */
    .about { padding: 100px 0; background: var(--green-dark); position: relative; overflow: hidden; }
    .about::before { content: ''; position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(168,173,190,.06); pointer-events: none; }
    .about-image-col { position: relative; }
    .about-photo-frame { border-radius: var(--radius-lg); overflow: hidden; background: var(--green-mid); position: relative; }
    .about-photo-frame img { width: 100%; height: auto; object-fit: cover; object-position: top; }
    .crm-badge { position: absolute; bottom: -16px; left: 24px; background: var(--white); border-radius: var(--radius-md); padding: 14px 20px; box-shadow: var(--shadow-md); min-width: 190px; z-index: 5; }
    .crm-badge p { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
    .crm-badge .crm-val { font-family: var(--ff-serif); font-size: 18px; font-weight: 700; color: var(--green-dark); }
    .crm-divider { border-top: 1px solid var(--border); margin: 8px 0; }
    .crm-badge .crm-extra { font-size: 12px; color: var(--gold-dark); font-weight: 600; }
    .about-text-col { padding-left: 20px; }
    .about-paragraphs { margin: 24px 0 32px; }
    .about-paragraphs p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 14px; }
    .about-paragraphs p strong { color: var(--gold); font-weight: 600; }
    .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
    .stat-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; }
    .stat-val { font-family: var(--ff-serif); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
    .stat-label { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.35; }

    /* ===================== HOW IT WORKS ===================== */
    .how-it-works { padding: 100px 0; background: var(--off-white); }
    .how-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .step-card {
      background-color: var(--white);
      background-image: radial-gradient(circle, rgba(30,34,52,0.13) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      transition: box-shadow .2s, transform .2s;
    }
    .step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .step-num { font-family: var(--ff-serif); font-size: 52px; font-weight: 900; color: var(--green-dark); line-height: 1; margin-bottom: 18px; }
    .step-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
    .step-body { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
    .step-pill { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
    .step-pill.green { background: var(--green-light); color: var(--green-mid); }
    .step-pill.gold { background: rgba(168,173,190,.18); color: var(--gold-dark); }

    /* ===================== VIDEO SECTION ===================== */
    .video-frame { max-width: 860px; margin: 3rem auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1.5px solid var(--border); }
    .video-container { position: relative; width: 100%; padding-top: 56.25%; background: black; }
    .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
    .video-brand-mark { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); z-index: 2; pointer-events: none; text-align: center; width: 90%; }
    .vbm-title { font-family: var(--ff-serif); font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; color: var(--white); letter-spacing: .04em; line-height: 1; margin-bottom: 8px; }
    .vbm-sub { font-size: clamp(11px, 1.5vw, 14px); font-weight: 500; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
    .vbm-divider { width: 40px; height: 1px; background: rgba(168,173,190,.4); margin: 14px auto; }
    .vbm-crm { font-size: clamp(10px, 1.2vw, 12px); font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .12em; text-transform: uppercase; }
    .video-container:has(video:playing) .video-brand-mark { display: none; }

    /* ===================== APP SHOWCASE ===================== */
    .app-showcase-wide { width: 100%; max-width: 1280px; margin: 8px auto 64px; padding: 0 20px; box-sizing: border-box; }
    .app-showcase-container { background: var(--green-dark); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
    .app-showcase-text { padding: 64px 48px; }
    .app-showcase-text h3 { font-family: var(--ff-serif); font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 20px; }
    .app-showcase-text h3 em { font-style: italic; color: var(--gold); }
    .app-showcase-text p { font-size: 15.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.75; margin-bottom: 28px; }
    .app-showcase-text ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .app-showcase-text ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.8); line-height: 1.4; }
    .app-showcase-text ul li i { color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 4px; }
    .app-showcase-image { position: relative; background: #0a0d18; display: flex; align-items: center; justify-content: center; padding: 24px; height: 100%; min-height: 450px; }
    .app-showcase-image img { width: 100%; max-width: 580px; border-radius: var(--radius-md); object-fit: contain; }

    /* ===================== FINAL CTA ===================== */
    .final-cta { padding: 100px 0; background: var(--white); }
    .final-cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
    .final-cta p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin: 20px 0 36px; }
    .address-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--green-light); border-radius: 50px; padding: 8px 20px; font-size: 13px; color: var(--green-dark); margin-top: 28px; font-weight: 500; }
    .address-chip i { color: var(--green-mid); }

    /* ===================== FOOTER ===================== */
    .footer { background: var(--green-dark); padding: 64px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 48px; margin-bottom: 48px; }
    .footer-brand { font-family: var(--ff-serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .footer-spec { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
    .footer-crm { font-size: 12px; color: var(--gold); font-weight: 600; }
    .footer-heading { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
    .footer-address { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
    .footer-address i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 12px; transition: color .15s; }
    .footer-contact a:hover { color: var(--gold); }
    .footer-contact a i { color: var(--gold); width: 16px; }
    .btn-footer-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: var(--white); font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 50px; margin-top: 8px; transition: opacity .2s; }
    .btn-footer-wa:hover { opacity: .88; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

    /* ===================== FLOAT WA ===================== */
    .float-wa { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); animation: pulse-wa 2.5s ease-in-out infinite; }
    .float-wa i { font-size: 26px; color: var(--white); }
    .float-wa:hover { background: #1ebc5a; }
    @keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.38); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,.62); } }

    /* ===================== RESPONSIVE / MOBILE SAFETY ===================== */
    @media (max-width: 992px) {
      .app-showcase-container { grid-template-columns: 1fr; }
      .app-showcase-text { padding: 48px 32px; }
      .app-showcase-image { min-height: 300px; padding: 32px 24px; }
    }

    @media (max-width: 768px) {
      /* Ajuste geral de espaçamentos para o mobile ficar elegante */
      .pain-points, .differentials, .services, .about, .how-it-works, .final-cta { padding: 60px 0; }
      
      /* Menu Desktop Ocultado */
      .nav-desktop { display: none; }
      /* Topo Mobile Simplificado: Logo centralizada e limpa */
      .header-inner { justify-content: center; height: 65px; }

      .hero { padding: 40px 0 0; }
      .hero-container { grid-template-columns: 1fr; gap: 32px; }
      .hero-content { padding-bottom: 40px; }
      .hero-image-wrapper { max-width: 360px; margin: 0 auto; align-self: center; width: 100%; }
      .grid-2 { grid-template-columns: 1fr; gap: 40px; }
      
      .about-text-col { padding-left: 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      
      .badge-exp { left: 10px; bottom: 10px; }
      .badge-crm-hero { right: 10px; top: 10px; }
      
      .hero h1 { word-break: break-word; }
      .section-title { word-break: break-word; }
      .btn-primary { font-size: 14px; padding: 14px 24px; white-space: normal; text-align: center; width: 100%; }
      .address-chip { font-size: 12px; padding: 8px 14px; text-align: center; word-break: break-word; }
      .service-card { padding: 32px 22px; }
      .diff-card { padding: 28px 20px; }
    }

    @media (max-width: 520px) {
      .hero h1 { font-size: 28px; }
      .hero h1 .sub { font-size: 15px; }
      .hero-desc { font-size: 13px; }
      .hero-checks li { font-size: 12px; }
      .footer-grid { gap: 28px; }
    }
  </style>/* End custom CSS */