
    :root{
      /* === CORES PRIMÁRIAS DA MARCA === */
      --c-primary:#0170B9;
      --c-primary-light:#2196F3;
      --c-primary-dark:#015a94;

      /* === FUNDOS === */
      --c-bg:#FFFFFF;
      --c-bg-section:#F8FBFF;
      --c-bg-alt:#EDF4FB;

      /* === TEXTOS === */
      --c-text:#FFFFFF;
      --c-titulo:#1a3a5c;
      --c-corpo:#4a5568;
      --c-muted:#718096;

      /* === BORDAS === */
      --c-borda:#E2E8F0;
      --c-borda-destaque:rgba(1,112,185,0.2);

      /* === FEEDBACK === */
      --c-sucesso:#10B981;
      --c-erro:#EF4444;
      --c-aviso:#F59E0B;
      --c-info:#3B82F6;
      --c-whatsapp:#25D366;

      /* === UTILITÁRIOS === */
      --c-gray:#3a3a3a;
      --shadow:0 10px 30px rgba(1,112,185,.15);
      --radius:16px;
      --led:drop-shadow(0 0 6px rgba(1,112,185,.6)) drop-shadow(0 0 18px rgba(33,150,243,.3));

      /* === DEGRADÊS === */
      --grad-principal:linear-gradient(135deg, #0170B9 0%, #2196F3 100%);
      --grad-suave:linear-gradient(180deg, #F8FBFF 0%, #EDF4FB 100%);
      --grad-footer:linear-gradient(180deg, #0170B9 0%, #015a94 100%);
    }
    /* PERFORMANCE: Pausar animações quando não visível */
    .paused *, .paused *::before, .paused *::after {
      animation-play-state: paused !important;
    }
    .reduce-motion * {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
    @keyframes loadingBar {
      0%, 100% { width: 20%; }
      50% { width: 100%; }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    .skeleton {
      background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s ease-in-out infinite;
      border-radius: 8px;
    }
    .skeleton-text { height: 1.2em; margin-bottom: 12px; width: 60%; }
    .skeleton-text-sm { height: 0.9em; margin-bottom: 8px; width: 80%; }
    .skeleton-btn { height: 48px; width: 160px; border-radius: 25px; display: inline-block; }
    .skeleton-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 30px 24px;
      min-height: 380px;
    }
    .skeleton-card .skeleton { margin: 0 auto; }
    .skeleton-circle { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px; }
    .skeleton-badge { height: 24px; width: 80px; border-radius: 12px; margin: 0 auto 16px; }
    .skeleton-price { height: 40px; width: 120px; margin: 16px auto; }
    .skeleton-line { height: 12px; width: 90%; margin: 8px auto; }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;background:#0a0f20 !important;color:var(--c-text);font:16px/1.6 "Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;scroll-behavior:smooth;overflow-x:hidden;overflow-anchor:auto}
    body{background:#0a0f20 !important;position:relative;overflow-x:hidden}
    html{background:#0a0f20 !important;overflow-x:hidden}
    @media (max-width: 980px){
      html,body{overflow-x:clip}
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{width:min(1180px,92vw);margin-inline:auto}
    .hero .container{position:relative;z-index:2}

    /* MENU LOGO */
    .logo-link{
      display:flex;
      align-items:center;
      flex-shrink:0;
    }
    .menu-logo{
      width:110px;
      height:auto;
      object-fit:contain;
      filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)) drop-shadow(0 0 15px rgba(255,255,255,0.3));
      transition:transform .3s ease, filter .3s ease;
    }
    .header-slogan{
      font-size:0.75rem;
      color:rgba(255,255,255,0.9);
      font-weight:500;
      margin-left:12px;
      white-space:nowrap;
      letter-spacing:0.5px;
    }
    .menu-logo:hover{
      transform:scale(1.08);
      filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)) drop-shadow(0 0 25px rgba(255,255,255,0.5)) drop-shadow(0 0 40px rgba(100,200,255,0.4));
    }

    @media (max-width: 980px){
      .logo-link{
        margin-right:auto;
      }
      .menu-logo{
        width:90px;
      }
      .header-slogan{
        display:none;
      }
    }

    /* NAV - Menu Principal (usar .main-header para não afetar outros headers) */
    .main-header{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: linear-gradient(135deg, rgba(1,112,185,0.95) 0%, rgba(0,60,120,0.98) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }
    .main-header nav a{
      color: rgba(255,255,255,0.9);
    }
    .main-header nav a:hover{
      color: #fff;
    }

    /* Efeito vidro quando rolar a página */
    .main-header.scrolled{
      background: linear-gradient(135deg, rgba(1,112,185,0.85) 0%, rgba(0,60,120,0.9) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0,0,0,.2);
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    /* Espaço para compensar header fixo */
    main.hero{
      padding-top: 80px;
    }
    .nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;position:relative;gap:16px}
    .nav nav{display:flex;justify-content:center}
    .nav .cta{flex-shrink:0}
    nav ul{display:flex;list-style:none;gap:18px;margin:0;padding:0}
    nav a{font-weight:600;opacity:.9;color:var(--c-primary);font-size:0.85rem;white-space:nowrap}
    nav a:hover{color:var(--c-primary)}
    .cta{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;background:linear-gradient(135deg,var(--c-primary),var(--c-primary-light));color:#fff;font-weight:800;font-size:0.8rem;letter-spacing:.3px;box-shadow:var(--shadow);transition:transform .15s ease, filter .2s ease;white-space:nowrap}
    .cta:hover{transform:translateY(-1px);filter:brightness(1.05)}

    /* LED bar */
    .led-bar{position:absolute;left:0;bottom:-2px;width:100%;height:3px;background:linear-gradient(90deg,transparent, var(--c-primary-light), var(--c-primary), transparent);filter:var(--led);animation:scan 3.6s linear infinite}
    @keyframes scan{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}

    /* HERO */
    .hero{
      position:relative;
      isolation:isolate;
      overflow:hidden;
      background: linear-gradient(135deg,rgba(1,112,185,.9) 0%, rgba(0,114,254,.7) 100%);
      padding-bottom: 120px;
    }
    .hero-wave{
      position:absolute;
      bottom:-1px;
      left:0;
      width:100%;
      height:150px;
      z-index:100;
      pointer-events:none;
      overflow:hidden;
    }
    .hero-wave svg{
      position:absolute;
      bottom:0;
      left:0;
      width:100%;
      height:100%;
      display:block;
    }
    .hero-wave-path{
      fill:#fff;
    }
    /* Hero Video Background */
    .hero-video-bg{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      min-width:100%;
      min-height:100%;
      width:auto;
      height:auto;
      z-index:0;
      object-fit:cover;
      background:var(--c-primary);
      animation: videoPulse 2s ease-in-out infinite;
    }
    .hero-video-bg.video-loaded{
      animation:none;
    }
    @keyframes videoPulse{
      0%, 100%{ transform:translate(-50%,-50%) scale(1); filter:brightness(1); }
      50%{ transform:translate(-50%,-50%) scale(1.02); filter:brightness(1.1); }
    }
    .hero-video-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(1,112,185,0.5) 0%, rgba(0,60,120,0.6) 100%);
      z-index:1;
    }
    /* Hero Slider */
    .hero-slider{
      position:relative;
      width:100%;
      height:95vh;
      overflow:hidden;
    }
    .hero-slide{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:95vh;
      opacity:0;
      visibility:hidden;
      transition:opacity 0.8s ease-in-out, visibility 0.8s;
      pointer-events:none;
      display:flex;
      align-items:center;
      overflow:hidden;
    }
    .hero-slide.active{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      z-index:3;
    }
    /* Hero Slide com Background Customizado */
    .hero-slide.has-background{
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
    }
    .hero-slide.has-background::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
      z-index:1;
    }
    .slide-effects{
      position:absolute;
      inset:0;
      z-index:2;
      pointer-events:none;
      overflow:hidden;
    }
    .hero-slide.has-background .hero-inner{
      position:relative;
      z-index:3;
    }
    .hero-slide .hero-inner{
      position:relative;
      z-index:3;
    }
    .hero-slide-loading .hero-left h1{
      animation:pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{opacity:1}
      50%{opacity:0.5}
    }
    .hero-slide .hero-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:40px;
      padding:80px 0 60px;
      width:100%;
      max-width:1200px;
      margin:0 auto;
      position:relative;
      z-index:2;
      min-height:400px;
    }
    .hero-slide .hero-left{
      flex:1 1 auto;
      min-width:300px;
      max-width:550px;
      position:relative;
      z-index:5;
    }
    .hero-slide .hero-left h1,
    .hero-slide .hero-left p,
    .hero-slide .hero-left .btn-row{
      opacity:1 !important;
      visibility:visible !important;
    }
    .hero-slide .hero-right{
      flex:0 0 600px;
      height:600px;
      display:flex;
      justify-content:center;
      align-items:center;
      position:relative;
      z-index:4;
    }
    .hero-mascot{
      max-width:100%;
      max-height:100%;
      width:auto;
      height:auto;
      object-fit:contain;
      filter: drop-shadow(0 0 20px rgba(255,255,255,0.4))
              drop-shadow(0 0 40px rgba(0,114,254,0.5))
              drop-shadow(0 0 60px rgba(0,114,254,0.3))
              drop-shadow(0 15px 30px rgba(0,0,0,0.3));
      animation: mascotFloat 4s ease-in-out infinite, mascotGlow 3s ease-in-out infinite alternate;
      position:relative;
      z-index:5;
    }
    @keyframes mascotFloat{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-10px)}
    }
    @keyframes mascotGlow{
      0%{filter: drop-shadow(0 0 20px rgba(255,255,255,0.4)) drop-shadow(0 0 40px rgba(0,114,254,0.5)) drop-shadow(0 0 60px rgba(0,114,254,0.3)) drop-shadow(0 15px 30px rgba(0,0,0,0.3));}
      100%{filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)) drop-shadow(0 0 50px rgba(0,114,254,0.7)) drop-shadow(0 0 80px rgba(0,114,254,0.4)) drop-shadow(0 15px 30px rgba(0,0,0,0.3));}
    }
    .hero-mascot.mascot-square{
      max-height:420px;
    }
    .hero-slider-dots{
      position:absolute;
      bottom:30px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:12px;
      z-index:10;
    }
    .slider-dot{
      width:14px;
      height:14px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,0.8);
      background:transparent;
      cursor:pointer;
      transition:all 0.3s ease;
      padding:0;
    }
    .slider-dot:hover{
      background:rgba(255,255,255,0.5);
      transform:scale(1.2);
    }
    .slider-dot.active{
      background:var(--c-primary-light);
      border-color:var(--c-primary-light);
      box-shadow:0 0 15px var(--c-primary-light);
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(1,112,185,.3), rgba(0,114,254,.2)),
        radial-gradient(ellipse at top, rgba(0,0,0,.1), transparent),
        radial-gradient(ellipse at bottom, rgba(1,112,185,.2), transparent);
      z-index:-1;
      animation: heroOverlay 8s ease-in-out infinite alternate;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 50% 30%, rgba(0,114,254,0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, rgba(1,112,185,0.3) 0%, transparent 60%),
        radial-gradient(circle at 30% 50%, rgba(0,114,254,0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(1,112,185,0.25) 0%, transparent 45%);
      z-index:0;
      animation: smokeFloat 12s ease-in-out infinite alternate;
      pointer-events:none;
    }
    @keyframes smokeFloat{
      0% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.6;
      }
      25% {
        transform: translateX(20px) translateY(-10px) rotate(2deg);
        opacity: 0.8;
      }
      50% {
        transform: translateX(-10px) translateY(15px) rotate(-1deg);
        opacity: 0.7;
      }
      75% {
        transform: translateX(15px) translateY(-5px) rotate(1deg);
        opacity: 0.9;
      }
      100% { 
        transform: translateX(-5px) translateY(10px) rotate(-0.5deg);
        opacity: 0.6;
      }
    }
    @keyframes heroOverlay{
      0% { opacity: 0.7; }
      100% { opacity: 0.5; }
    }
    .hero-canvas{position:absolute;inset:0;z-index:2;opacity:.8;pointer-events:none}
    .floating-orb{
      position:absolute;
      width:120px;
      height:120px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(0,114,254,.6), rgba(1,112,185,.2));
      box-shadow:
        0 0 20px rgba(0,114,254,.4),
        inset 0 0 20px rgba(255,255,255,.1);
      animation:floatOrb 25s infinite ease-in-out;
      opacity:.6;
      z-index:2;
      pointer-events:none;
    }
    @keyframes floatOrb{
      0%,100%{transform:translate(0,0) scale(1)}
      25%{transform:translate(30px,-50px) scale(1.1)}
      50%{transform:translate(-20px,30px) scale(0.9)}
      75%{transform:translate(40px,-10px) scale(1.05)}
    }
    .floating-logo{position:absolute;width:80px;height:80px;opacity:.08;animation:float 20s infinite linear;transform:translateZ(0);will-change:transform;z-index:2;pointer-events:none}
    @keyframes float{
      0%{transform:translate(0,0) rotate(0deg) scale(1)}
      25%{transform:translate(50px,-30px) rotate(90deg) scale(1.1)}
      50%{transform:translate(20px,40px) rotate(180deg) scale(0.9)}
      75%{transform:translate(-30px,-20px) rotate(270deg) scale(1.05)}
      100%{transform:translate(0,0) rotate(360deg) scale(1)}
    }
    .hero-inner{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:80px;
      padding:120px 20px;
    }
    .hero-left{
      flex:1;
      text-align:left;
    }
    .hero-right{
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .hero-logo{
      width:400px;
      height:400px;
      object-fit:contain;
      filter:drop-shadow(0 0 20px #0072fe) drop-shadow(0 0 40px #0170B9);
      animation:heroLogoPulse 6s ease-in-out infinite alternate;
    }
    @keyframes heroLogoPulse{
      0%{transform:scale(1);filter:drop-shadow(0 0 20px #0072fe) drop-shadow(0 0 40px #0170B9)}
      100%{transform:scale(1.05);filter:drop-shadow(0 0 30px #0072fe) drop-shadow(0 0 60px #0170B9)}
    }

    /* LED DIVIDER */
    .led-divider{
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, transparent, rgba(0,114,254,.2), transparent);
      position: relative;
      overflow: hidden;
      margin: -2px 0;
    }
    .led-line{
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,114,254,.3) 20%,
        rgba(0,114,254,.8) 50%,
        rgba(0,114,254,.3) 80%,
        transparent 100%
      );
      transform: translateY(-50%);
      box-shadow:
        0 0 4px rgba(0,114,254,.6),
        0 0 8px rgba(0,114,254,.4),
        0 0 16px rgba(0,114,254,.2);
    }
    .led-pulse{
      position: absolute;
      top: -2px;
      width: 6px;
      height: 6px;
      background: radial-gradient(circle, #0072fe, #0170B9);
      border-radius: 50%;
      box-shadow:
        0 0 6px rgba(0,114,254,.8),
        0 0 12px rgba(1,112,185,.6),
        0 0 18px rgba(0,114,254,.4);
      animation: ledPulse 3s ease-in-out infinite;
      left: -10px;
    }
    @keyframes ledPulse{
      0% { 
        left: -10px; 
        opacity: 0;
        transform: scale(0.5);
      }
      10% { 
        opacity: 1;
        transform: scale(1);
      }
      90% { 
        opacity: 1;
        transform: scale(1);
      }
      100% { 
        left: calc(100% + 10px); 
        opacity: 0;
        transform: scale(0.5);
      }
    }

    /* CAROUSEL SECTION */
    .carousel-section{
      background: #FFFFFF;
      padding: 60px 0;
      margin-top: -1px;
      position: relative;
      overflow: hidden;
    }
    .carousel-section::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg, transparent 0%, var(--c-primary) 20%, var(--c-primary-light) 50%, var(--c-primary) 80%, transparent 100%);
      box-shadow:
        0 0 10px var(--c-primary),
        0 0 20px var(--c-primary-light),
        0 0 40px rgba(0,114,254,0.5);
      animation: linePulse 2s ease-in-out infinite;
    }
    .carousel-section::after{
      content:"";
      position:absolute;
      top:-1px;
      left:0;
      width:80px;
      height:5px;
      background:linear-gradient(90deg, transparent, #fff, var(--c-primary-light), #fff, transparent);
      border-radius:50%;
      filter:blur(1px);
      animation: lineScan 3s linear infinite;
      opacity:0.9;
    }
    @keyframes linePulse{
      0%, 100%{ opacity:0.7; box-shadow: 0 0 10px var(--c-primary), 0 0 20px var(--c-primary-light), 0 0 40px rgba(0,114,254,0.5); }
      50%{ opacity:1; box-shadow: 0 0 15px var(--c-primary), 0 0 30px var(--c-primary-light), 0 0 60px rgba(0,114,254,0.7); }
    }
    @keyframes lineScan{
      0%{ left:-80px; }
      100%{ left:calc(100% + 80px); }
    }
    .carousel-head{
      text-align:center; 
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }
    .carousel-head h2{
      font-size: clamp(1.8rem,3vw,2.5rem);
      margin: 0 0 12px;
      letter-spacing: .2px;
      color: var(--c-titulo);
      font-weight: 800;
    }
    .carousel-head p{
      margin: 0;
      color: var(--c-muted);
      font-size: 1.1rem;
    }

    .streaming-carousel{
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      min-height: 100px; /* Reserva espaço para evitar salto de layout */
    }

    .carousel-nav-btn{
      -webkit-tap-highlight-color: transparent;
      appearance: none;
      border: 2px solid var(--c-primary);
      background: white;
      color: var(--c-primary);
      cursor: pointer;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: all .2s ease;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(1,112,185,0.15);
    }
    .carousel-nav-btn:hover{
      background: var(--c-primary);
      color: white;
      transform: scale(1.05);
    }
    .carousel-nav-btn:active{ transform: scale(.96); }

    .carousel-track-viewport{
      position: relative;
      overflow-x: hidden;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    }
    .carousel-track-viewport::-webkit-scrollbar{ display: none; }

    .carousel-track{
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(150px, 1fr);
      gap: 20px;
      padding: 12px 20px;
      align-items: center;
      width: max-content;
      animation: gentleSlide 120s linear infinite;
      will-change: transform;
    }
    
    @keyframes gentleSlide {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }

    .carousel-slide{
      scroll-snap-align: center;
      position: relative;
      width: 200px;
      height: 110px;
      border-radius: 16px;
      background: #1a3a5c;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,0.15);
      text-decoration: none;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      overflow: hidden;
    }

    .carousel-slide img{
      max-width: 170px;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      pointer-events: none;
      user-select: none;
      transition: transform 0.3s ease;
    }

    .carousel-slide:hover img{
      transform: scale(1.05);
    }


    @media (max-width: 768px){
      .carousel-slide{
        width: 160px;
        height: 90px;
        padding: 12px;
      }
      .carousel-slide img{
        max-width: 136px;
        max-height: 66px;
      }
      .carousel-track{
        gap: 14px;
      }
    }

    .carousel-dots{
      display: flex; 
      gap: 8px; 
      justify-content: center; 
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }
    .carousel-dot{ 
      width: 10px; 
      height: 10px; 
      border-radius: 50%; 
      background: rgba(255,255,255,.3); 
      opacity: .7; 
      transition: all .3s ease; 
      cursor: pointer;
    }
    .carousel-dot.active{ 
      background: var(--c-primary-light); 
      opacity: 1; 
      transform: scale(1.4); 
    }

    .carousel-slide:focus-visible{ 
      outline: 3px solid var(--c-primary-light); 
      outline-offset: 3px; 
    }

    /* PLANS SECTION */
    .plans-section{
      background: var(--grad-suave);
      padding: 50px 0;
      position: relative;
      overflow: visible;
      min-height: 500px; /* Reserva espaço para evitar salto de layout */
      contain: layout style; /* Otimiza renderização */
    }
    /* Animação suave para conteúdo carregado dinamicamente */
    .plans-category{
      animation: fadeInSmooth 0.4s ease-out;
    }
    @keyframes fadeInSmooth{
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .plans-section > .container{
      width: 100% !important;
      max-width: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    @media (max-width: 980px){
      .plans-section{
        overflow: visible !important;
        padding-left: 0;
        padding-right: 0;
      }
      .plans-section > .container{
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: visible;
      }
      .plans-category{
        overflow: visible !important;
        margin-left: 0;
        margin-right: 0;
      }
    }
    .plans-section::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, transparent, var(--c-primary), var(--c-primary-light), var(--c-primary), transparent);
    }
    .plans-headline{
      text-align:center;
      margin-bottom: 80px;
      margin-left: auto;
      margin-right: auto;
      max-width: 1200px;
      padding: 0 20px;
      position: relative;
      z-index: 100;
      isolation: isolate;
    }
    .plans-headline h2{
      margin:0;
      font-size: clamp(2rem,4vw,3rem);
      letter-spacing:.5px;
      color: var(--c-titulo);
      font-weight: 800;
    }
    .plans-headline p{
      margin:.8rem 0 0;
      font-size: 1.1rem;
      color: var(--c-muted);
    }

    /* Plans Category Tabs - OCULTO */
    .plans-tabs{
      display:none !important;
    }
    .plans-tab{
      padding:14px 28px;
      border:2px solid var(--c-primary);
      border-radius:50px;
      background:transparent;
      color:var(--c-primary);
      font-weight:700;
      font-size:1rem;
      cursor:pointer;
      transition:all 0.3s ease;
    }
    .plans-tab:hover{
      background:rgba(1,112,185,0.1);
      transform:translateY(-2px);
    }
    .plans-tab.active{
      background: var(--grad-principal);
      color:#fff;
      border-color:transparent;
      box-shadow:0 4px 15px rgba(1,112,185,0.4);
    }
    .plans-category{
      display:none;
      position: relative;
      z-index: 10;
      isolation: isolate;
      margin-top: 60px;
      margin-bottom: 60px;
      width: 100%;
    }
    .plans-category.active{
      display:block;
      animation:fadeInPlans 0.4s ease;
    }
    @keyframes fadeInPlans{
      from{opacity:0;transform:translateY(10px)}
      to{opacity:1;transform:translateY(0)}
    }

    /* Plans Slider Dots */
    .plans-slider-dots{
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      position: relative;
      z-index: 50;
    }
    @media (max-width: 980px){
      .plans-slider-dots{
        display: flex;
      }
    }
    .plans-slider-dot{
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .plans-slider-dot.active{
      background: var(--c-primary-light);
      transform: scale(1.2);
    }

    /* ===== PLANS GRID - LAYOUT LADO A LADO ===== */
    .plans-carousel-wrapper{
      position: relative;
      padding: 0;
      margin: 0;
      width: 100%;
      max-width: 100%;
      z-index: 1;
    }
    /* Grid de planos - sempre lado a lado */
    .plans-grid{
      display: flex;
      gap: clamp(24px, 3vw, 48px);
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      padding: 20px 5vw;
      width: 100%;
      box-sizing: border-box;
    }
    .plans-grid .plan-card{
      flex: 0 0 320px;
      max-width: 360px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    @media (min-width: 1600px) {
      .plans-grid{
        gap: 48px;
        padding: 20px 8vw;
      }
      .plans-grid .plan-card{
        flex: 0 0 350px;
        max-width: 400px;
      }
    }
    @media (min-width: 1920px) {
      .plans-grid .plan-card{
        flex: 0 0 380px;
        max-width: 420px;
      }
    }
    .plans-grid .plan-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    /* Setas de navegação - só quando tem carousel (mais de 3 planos) */
    .plans-nav-btn{
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      cursor: pointer;
      z-index: 30;
      box-shadow: 0 4px 20px rgba(1,112,185,0.4);
      transition: all 0.3s ease;
      align-items: center;
      justify-content: center;
    }
    .plans-nav-btn svg{
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 2.5;
      fill: none;
    }
    .plans-nav-btn:hover{
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 25px rgba(1,112,185,0.5);
    }
    .plans-nav-btn.prev{ left: 10px; }
    .plans-nav-btn.next{ right: 10px; }
    .plans-nav-btn.hidden{ opacity: 0.3; pointer-events: none; }
    /* Animação pulsante */
    @keyframes pulse-arrow{
      0%, 100%{ transform: translateY(-50%) scale(1); }
      50%{ transform: translateY(-50%) scale(1.12); }
    }
    .plans-nav-btn.pulse{
      animation: pulse-arrow 1.8s ease-in-out infinite;
    }
    .plans-nav-btn.pulse:hover{
      animation: none;
      transform: translateY(-50%) scale(1.1);
    }
    /* Mostrar setas apenas quando tem carousel (mais de 3 planos) */
    .plans-carousel-wrapper.has-carousel .plans-nav-btn{
      display: flex;
    }
    /* Quando tem carousel - scroll horizontal */
    .plans-carousel-wrapper.has-carousel{
      padding: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      width: 100%;
    }
    .plans-carousel-wrapper.has-carousel .plans-grid{
      flex: 1;
      flex-wrap: nowrap;
      justify-content: center;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 20px 60px;
    }
    .plans-carousel-wrapper.has-carousel .plans-grid::-webkit-scrollbar{
      display: none;
    }
    .plans-carousel-wrapper.has-carousel .plans-grid .plan-card{
      scroll-snap-align: center;
      flex-shrink: 0;
    }
    .plans-carousel-wrapper.has-carousel .plans-nav-btn{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      flex-shrink: 0;
    }
    .plans-carousel-wrapper.has-carousel .plans-nav-btn.prev{
      left: 15px;
    }
    .plans-carousel-wrapper.has-carousel .plans-nav-btn.next{
      right: 15px;
    }
    .plans-carousel-wrapper.has-carousel .plans-nav-btn:hover{
      transform: translateY(-50%) scale(1.1);
    }
    /* Desktop dots - OCULTOS */
    .plans-desktop-dots{
      display: none !important;
    }
    @media (max-width: 1200px){
      .plans-carousel-wrapper.has-carousel{
        padding: 0;
      }
    }
    @media (max-width: 980px){
      .plans-carousel-wrapper,
      .plans-carousel-wrapper.has-carousel{
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .plans-carousel-wrapper::-webkit-scrollbar{
        display: none;
      }
      .plans-carousel-wrapper.has-carousel .plans-nav-btn{
        display: none !important;
      }
      .plans-grid{
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 16px !important;
        margin: 0 !important;
        width: fit-content !important;
      }
      .plans-grid,
      .plans-carousel-wrapper.has-carousel .plans-grid{
        scroll-snap-type: none !important;
      }
      .plans-grid .plan-card,
      .plans-carousel-wrapper.has-carousel .plans-grid .plan-card{
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        margin: 0 !important;
        scroll-snap-align: none !important;
      }
    }

    .plan-card{
      position:relative;
      background: linear-gradient(135deg, #2196F3 0%, #42A5F5 50%, #64B5F6 100%);
      border: 2px solid rgba(33,150,243,.3);
      border-radius: 16px;
      padding: 14px 14px 14px;
      box-shadow: 0 10px 30px rgba(33,150,243,.2);
      overflow:hidden;
      isolation:isolate;
      transition: transform .3s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
    }
    .plan-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(33,150,243,.3);
    }
    .plan-card::after{
      content:"";
      position:absolute; 
      inset:-40% -20% auto auto;
      width:60%; 
      height:160%;
      background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
      transform: rotate(20deg);
      pointer-events:none;
      /* filter: blur(8px); REMOVED FOR PERFORMANCE */
    }
    .plan-badge{
      position:absolute; 
      top:14px; 
      right:14px;
      background:rgba(255,255,255,.14);
      color:#fff;
      padding:6px 10px;
      border-radius: 999px;
      font-size:.7rem;
      letter-spacing:.2px;
      background:rgba(10,15,32,0.9); /* blur removed */
      border:1px solid rgba(255,255,255,.25);
      font-weight: 600;
      max-width: 100px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      z-index: 1;
    }
    .plan-badge.popular{
      background:linear-gradient(90deg, #ffd84d, #ffb800);
      color:#262200;
      border:none;
      font-weight:800;
    }

    .plan-title{
      text-align:center;
      margin-bottom: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-shrink: 0;
    }
    .plan-title .plan-name{
      display:block;
      font-weight:800;
      letter-spacing:1px;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: white;
      margin-bottom: 4px;
    }
    .plan-title .plan-speed{
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight:900;
      line-height: .85;
      color: white;
    }
    .plan-title .mega{
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      margin-left:.3ch;
      letter-spacing:.5px;
    }

    .plan-divider{
      height:2px;
      min-height: 2px;
      width:90%;
      margin:10px auto;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
      flex-shrink: 0;
    }

    .plan-brinde{
      text-align:center;
      margin: 0 0 6px;
      width: 100%;
      min-height: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      flex-grow: 1;
    }
    .plan-brinde .plus-icon{
      display:inline-grid;
      place-items:center;
      width:24px;
      height:24px;
      margin: 0 6px 0 0;
      background: #ffc400;
      color:#102000;
      font-weight:900;
      border-radius: 6px;
      transform: translateY(2px) rotate(-6deg);
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .plan-brinde .plus-icon:hover{
      transform: translateY(0) rotate(0deg) scale(1.2);
      background: linear-gradient(135deg, #ffd700, #ffaa00);
      box-shadow: 0 0 20px rgba(255, 196, 0, 0.8), 0 0 40px rgba(255, 196, 0, 0.4);
      border-radius: 50%;
    }
    .plan-brinde small{
      opacity:.9;
      letter-spacing:.3px;
      color: rgba(255,255,255,.9);
      font-weight: 600;
      font-size: .7rem;
    }
    .brandline{
      margin-top:4px;
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      width: 100%;
      justify-content: center;
    }
    .chip{
      border:1px solid rgba(255,255,255,.35);
      background:rgba(255,255,255,.12);
      padding:2px 4px;
      border-radius:999px;
      font-size:.5rem;
      white-space:nowrap;
      color: white;
      font-weight: 500;
      text-align: center;
      box-sizing: border-box;
    }
    /* Chips curtos (streaming) - 4 por linha */
    .plan-brinde:not(.pme-brinde) .chip{
      flex: 0 0 calc(25% - 3px);
      max-width: calc(25% - 3px);
    }
    /* Chips longos (PME benefícios) - auto ajuste */
    .pme-plans-grid .chip{
      flex: 0 0 auto;
      max-width: 100%;
    }
    /* Benefícios PME - layout vertical com texto completo */
    .pme-plans-grid .plan-brinde{
      min-height: auto;
      height: auto;
    }
    .pme-plans-grid .plan-brinde .brandline{
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .pme-plans-grid .plan-brinde .chip{
      max-width: 90%;
      width: auto;
      padding: 8px 16px;
      white-space: normal;
      text-align: center;
      font-size: 12px;
      line-height: 1.3;
    }
    /* Cards da seção Soluções Empresariais */
    .pe-wrapper .plan-brinde .brandline{
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .pe-wrapper .plan-brinde .chip{
      max-width: 90%;
      width: auto;
      padding: 8px 16px;
      white-space: normal;
      text-align: center;
      font-size: 12px;
      line-height: 1.3;
    }
    /* PME cards - descrição centralizada (todas as resoluções) */
    .pme-plans-grid .plan-card .plan-features{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .pme-plans-grid .plan-card .plan-features .feat{
      display: block;
      text-align: center;
      width: 100%;
      line-height: 1.4;
    }

    .plan-features{
      margin-top: auto;
      padding-top: 8px;
      margin-bottom: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      flex-shrink: 0;
      width: 100%;
    }
    .feat{
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.3);
      border-radius: 8px;
      padding: 5px 6px;
      text-align: center;
      font-weight:600;
      letter-spacing:.2px;
      color: white;
      font-size: .65rem;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      line-height: 1.2;
    }

    /* === CARDS DE PLANOS - RESPONSIVO MOBILE === */
    @media (max-width: 480px) {
      .plan-card {
        padding: 12px 10px 12px;
        border-radius: 12px;
      }
      .plan-title {
        margin-bottom: 6px;
      }
      .plan-title .plan-name {
        font-size: 1rem;
        margin-bottom: 2px;
      }
      .plan-speed {
        font-size: 2.2rem;
      }
      .plan-speed .mega {
        font-size: 0.9rem;
      }
      .plan-divider {
        margin: 8px 0;
      }
      .plan-brinde {
        padding: 6px 6px;
        min-height: auto;
      }
      .plan-price {
        padding: 8px 0;
      }
      .plan-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
        padding-top: 6px;
      }
      .feat {
        padding: 4px 3px;
        font-size: 0.55rem;
        border-radius: 5px;
        letter-spacing: 0;
        line-height: 1.1;
      }
      .plan-cta {
        margin-top: 8px;
        min-height: 40px;
      }
      .plan-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
      }
      /* PME cards - centralização forçada (descrição ocupa linha inteira) */
      .pme-plans-grid .plan-card .plan-features {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .pme-plans-grid .plan-card .plan-features .feat {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        font-size: 0.7rem !important;
        padding: 8px 12px !important;
        line-height: 1.4 !important;
      }
    }

    .plan-cta{
      display:flex;
      justify-content:center;
      align-items: center;
      margin-top: 10px;
      padding-top: 0;
      min-height: 45px;
      flex-shrink: 0;
    }
    .plan-btn{
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      color:#fff;
      font-weight:800;
      letter-spacing:.5px;
      border:none;
      border-radius: 50px;
      padding: 10px 22px;
      box-shadow: 0 4px 15px rgba(1,112,185,.4);
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      text-decoration:none;
      display:inline-block;
      font-size: .85rem;
      font-family: inherit;
    }
    .plan-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(1,112,185,.5);
    }
    .plan-btn:active{
      transform: translateY(0);
    }

    /* Variações por plano */
    .plan-card.plus {
      background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
    }
    .plan-card.ultra {
      background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
    }
    .plan-card.gold {
      background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
    }

    .plans-footnote{
      margin-top:30px;
      text-align:center;
      opacity:.7;
      font-size:.9rem;
      color: var(--c-muted);
      position: relative;
      z-index: 100;
    }

    /* NOVA SEÇÃO DE COBERTURA */
    .cobertura-nova{
      background: 
        radial-gradient(1200px 500px at 15% 10%, rgba(25,64,122,.3) 0%, transparent 60%),
        radial-gradient(1000px 800px at 90% 80%, rgba(0,114,254,.15) 0%, transparent 60%),
        linear-gradient(135deg, #0a1629 0%, #1e3a8a 30%, #0f172a 100%);
      padding: 80px 0;
    }
    .cobertura-wrap{
      max-width:1200px;
      padding: clamp(18px, 3vw, 32px);
      margin: 0 auto;
    }
    .cobertura-hero{
      display:grid;
      grid-template-columns: 1.2fr 1fr;
      gap: clamp(20px, 3vw, 36px);
      align-items:center;
      background: linear-gradient(180deg, rgba(11,21,48,.7), rgba(11,21,48,.4));
      border:1px solid rgba(42,59,102,.6);
      border-radius: 20px;
      padding: clamp(18px, 3.5vw, 40px);
      box-shadow: 0 10px 40px rgba(2,12,33,.35);
      background:rgba(10,15,32,0.9); /* blur removed */
    }

    .cobertura-title{
      font-size: clamp(28px, 4.2vw, 54px);
      font-weight: 800;
      margin: 0 0 8px 0;
      letter-spacing:.5px;
      color: white;
      text-shadow:
        0 2px 0 rgba(0,0,0,.5),
        0 0 18px rgba(0,114,254,.55),
        0 0 40px rgba(1,112,185,.35);
    }
    .cobertura-subtitle{
      margin:0 0 26px 0;
      color: rgba(166,182,217,.9);
      font-size: clamp(14px, 1.6vw, 18px);
    }

    .cobertura-map-card{
      position:relative;
      background: radial-gradient(80% 80% at 50% 50%, rgba(18,33,72,.8) 0%, rgba(12,20,48,.6) 60%);
      border-radius: 24px;
      border: 1px solid rgba(39,64,125,.6);
      box-shadow: 
        0 10px 30px rgba(0,114,254,.35), 
        0 0 60px rgba(1,112,185,.25);
      overflow:hidden;
      min-height: 380px;
      margin: 0;
    }
    .cobertura-map-card img{
      width:100%;
      height:100%;
      object-fit: contain;
      display:block;
      filter: drop-shadow(0 6px 22px rgba(0,0,0,.5));
      transform: translateZ(0);
    }
    .cobertura-map-card:before{
      content:"";
      position:absolute; 
      inset:-20% -10% -10% -20%;
      background:
        radial-gradient(600px 240px at 35% 10%, rgba(0,114,254,.15), transparent 60%),
        radial-gradient(500px 300px at 70% 70%, rgba(1,112,185,.12), transparent 60%);
      pointer-events:none;
    }

    .cobertura-right{
      display:flex;
      flex-direction:column;
    }

    .cobertura-pill-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-bottom: clamp(18px, 2.5vw, 28px);
    }
    .cobertura-pill{
      display:flex;
      align-items:center;
      gap:10px;
      padding:14px 16px;
      border-radius: 14px;
      border:2px dashed rgba(127,184,255,.35);
      color: white;
      background: linear-gradient(180deg, rgba(13,26,54,.7), rgba(13,26,54,.15));
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      cursor: default;
      user-select:none;
    }
    .cobertura-pill:hover{
      transform: translateY(-1px);
      border-color:rgba(127,184,255,.6);
      box-shadow: 0 6px 22px rgba(0,114,254,.18);
      background: linear-gradient(180deg, rgba(13,26,54,.9), rgba(13,26,54,.2));
    }
    .cobertura-dot{
      width:10px; 
      height:10px; 
      border-radius:50%;
      background: linear-gradient(180deg, #0072fe, #0170B9);
      box-shadow: 0 0 0 4px rgba(0,114,254,.15);
      flex:0 0 10px;
    }

    .cobertura-cta{
      align-self:center;
      border:none;
      border-radius: 999px;
      padding: 14px 24px;
      font-weight:700;
      letter-spacing:.3px;
      color:#fff;
      background: linear-gradient(90deg, #0072fe, #0170B9);
      box-shadow: 
        0 10px 30px rgba(0,114,254,.35), 
        0 0 60px rgba(1,112,185,.25);
      cursor:pointer;
      transition: transform .18s ease, filter .18s ease, box-shadow .2s ease;
      font-family: inherit;
      font-size: .9rem;
    }
    .cobertura-cta:hover{ 
      transform: translateY(-1px) scale(1.01); 
      filter: brightness(1.05); 
    }
    .cobertura-cta:active{ 
      transform: translateY(0); 
      filter: brightness(.98); 
    }

    .cobertura-pin{
      position:absolute; 
      width:34px; 
      height:34px; 
      right:12%; 
      top:18%;
      background: 
        radial-gradient(circle at 50% 35%, #fff 0 36%, transparent 37%),
        radial-gradient(circle at 50% 50%, rgba(13,26,54,.8) 0 41%, transparent 43%),
        linear-gradient(180deg, #0170B9, #0072fe);
      border-radius: 12px 12px 12px 12px / 16px 16px 10px 10px;
      box-shadow: 0 8px 30px rgba(1,112,185,.35);
      animation: coberturaFloat 5s ease-in-out infinite;
      opacity:.9;
    }
    .cobertura-pin.yellow{
      right:auto; 
      left:22%; 
      top:56%;
      background: 
        radial-gradient(circle at 50% 35%, #fff 0 36%, transparent 37%),
        radial-gradient(circle at 50% 50%, rgba(13,26,54,.8) 0 41%, transparent 43%),
        linear-gradient(180deg, #ffd400, #ffb100);
      box-shadow: 0 8px 30px rgba(255,196,0,.35);
      animation-delay: .8s;
    }
    @keyframes coberturaFloat{
      0%,100%{ transform: translateY(0) }
      50%{ transform: translateY(-8px) }
    }

    @media (max-width: 980px){
      .cobertura-hero{ 
        grid-template-columns: 1fr; 
      }
      .cobertura-map-card{ 
        order: 2; 
        min-height: 320px; 
      }
      .cobertura-right{ 
        order: 1; 
      }
    }
    .title-xl{
      font-size:clamp(1.9rem,3.5vw,3.4rem);
      line-height:1.1;
      margin:0 0 12px;
      font-weight:900;
      letter-spacing:.2px;
      color:white;
      text-shadow:
        0 0 5px #0072fe,
        0 0 15px #0170B9,
        0 0 30px #0170B9,
        0 2px 8px rgba(0,0,0,.6);
    }
    .title-lg{
      font-size:clamp(2.2rem,4vw,4rem);
      line-height:1.1;
      margin:0 0 14px;
      font-weight:900;
      letter-spacing:.2px;
      color:white;
      text-shadow:0 0 5px #0072fe,0 0 15px #0170B9,0 0 30px #0170B9,0 2px 8px rgba(0,0,0,.6);
    }
    .title-xxl{
      font-size:clamp(2.5rem,5vw,5rem);
      line-height:1.05;
      margin:0 0 16px;
      font-weight:900;
      letter-spacing:.3px;
      color:white;
      text-shadow:0 0 5px #0072fe,0 0 15px #0170B9,0 0 30px #0170B9,0 2px 8px rgba(0,0,0,.6);
    }
    .subtitle{
      font-size:1.1rem;
      color:rgba(255,255,255,.9);
      margin-bottom:24px;
      text-shadow:0 2px 12px rgba(0,0,0,.7);
    }
    /* Hero - Telas Grandes (1400px+) */
    @media (min-width: 1400px) {
      .hero-slide .hero-inner {
        max-width: 1400px;
      }
      .hero-slide .hero-left {
        max-width: 650px;
      }
      .hero-slide .hero-right {
        flex: 0 0 700px;
        height: 700px;
      }
      .title-xl { font-size: clamp(2.2rem, 3.5vw, 4rem); }
      .title-lg { font-size: clamp(2.5rem, 4vw, 4.5rem); }
      .title-xxl { font-size: clamp(3rem, 5vw, 5.5rem); }
      .subtitle { font-size: 1.25rem; }
    }
    /* Hero - Telas Extra Grandes (1600px+) */
    @media (min-width: 1600px) {
      .hero-slide .hero-inner {
        max-width: 1500px;
      }
      .hero-slide .hero-left {
        max-width: 700px;
      }
      .hero-slide .hero-right {
        flex: 0 0 750px;
        height: 750px;
      }
      .title-xl { font-size: clamp(2.5rem, 3.5vw, 4.5rem); }
      .title-lg { font-size: clamp(3rem, 4vw, 5rem); }
      .title-xxl { font-size: clamp(3.5rem, 5vw, 6rem); }
      .subtitle { font-size: 1.4rem; }
    }
    /* Hero - Telas Ultra (1920px+) */
    @media (min-width: 1920px) {
      .hero-slide .hero-inner {
        max-width: 1700px;
      }
      .hero-slide .hero-left {
        max-width: 800px;
      }
      .hero-slide .hero-right {
        flex: 0 0 850px;
        height: 850px;
      }
      .title-xl { font-size: 4.5rem; }
      .title-lg { font-size: 5.5rem; }
      .title-xxl { font-size: 6.5rem; }
      .subtitle { font-size: 1.5rem; }
      .btn-row { gap: 20px; }
      .cta, .btn-ghost { padding: 18px 36px; font-size: 1.1rem; }
    }
    .btn-row{display:flex;flex-wrap:wrap;gap:16px;justify-content:flex-start;margin-top:32px}
    .btn-row.justify-center{justify-content:center}
    .btn-row.justify-end{justify-content:flex-end}
    .btn-ghost{
      padding:12px 18px;
      border-radius:999px;
      border:2px solid rgba(255,255,255,.5);
      font-weight:700;
      color:#fff;
      background:rgba(1,112,185,.2);
      transition:all .3s ease;
    }
    .btn-ghost:hover{
      border-color:#fff;
      background:rgba(1,112,185,.4);
      transform:translateY(-2px);
      box-shadow:0 8px 25px rgba(1,112,185,.3);
    }

    /* Availability form */
    .card{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:var(--radius);box-shadow:var(--shadow);position:relative}
    .card-glow{box-shadow:0 0 0 1px rgba(1,112,185,.18), 0 10px 35px rgba(0,114,254,.15)}
    .form{padding:20px}
    .form h3{margin:0 0 8px}
    .grid{display:grid;gap:12px}
    .grid.cols-2{grid-template-columns:1fr 1fr}
    label{font-size:.9rem;font-weight:700}
    input,select{width:100%;padding:12px 14px;border-radius:12px;border:1.5px solid rgba(0,0,0,.12);background:#fff;outline:none}
    input:focus,select:focus{border-color:var(--c-primary);box-shadow:0 0 0 3px rgba(0,114,254,.15)}

    /* Section */
    section{padding:70px 0;position:relative}
    .section-title{font-size:clamp(1.4rem,2.3vw,2.2rem);margin:0 0 14px;font-weight:900}
    .section-title.neon-title{
      color: white;
      text-shadow:
        0 0 5px #0072fe,
        0 0 15px #0170B9,
        0 0 30px #0170B9,
        0 2px 8px rgba(0,0,0,.6);
    }
    .section-sub{color:var(--c-muted);margin:0 0 28px}

    /* LED accents */
    .led-border{position:relative}
    .led-border::after{content:"";position:absolute;inset:0;border-radius:var(--radius);border:1.6px solid transparent;background:linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, rgba(0,114,254,.8), rgba(1,112,185,.8)) border-box;filter:var(--led);pointer-events:none;z-index:-1}

    /* Plans */
    .plans{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px}
    .plan{padding:24px 20px;position:relative;overflow:visible;transition:transform .3s ease, box-shadow .3s ease;z-index:1}
    .plan:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(1,112,185,.2)}
    .plan.featured{border:2px solid var(--c-primary-light);transform:scale(1.02)}
    .plan.featured:hover{transform:scale(1.02) translateY(-5px)}
    .badge{position:absolute;top:12px;right:12px;background:linear-gradient(135deg,var(--c-primary-light),var(--c-primary));color:#fff;padding:4px 10px;border-radius:999px;font-size:.7rem;font-weight:700}
    .plan-header{text-align:center;padding-bottom:16px;border-bottom:1px solid rgba(1,112,185,.1);margin-bottom:12px}
    .plan-icon{width:48px;height:48px;margin:0 auto 12px;background:linear-gradient(135deg,rgba(0,114,254,.1),rgba(1,112,185,.1));border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:24px}
    .plan.featured .plan-icon{background:linear-gradient(135deg,var(--c-primary-light),var(--c-primary));box-shadow:0 6px 16px rgba(0,114,254,.25)}
    .plan-name{font-size:1.1rem;font-weight:700;margin:6px 0}
    .price{font-size:2.2rem;font-weight:900;margin:8px 0 4px;color:var(--c-primary)}
    .price small{font-size:.85rem;color:var(--c-muted);font-weight:600}
    .speed{display:flex;align-items:center;justify-content:center;gap:6px;font-weight:700;font-size:1rem;margin-top:6px}
    .led-dot{width:8px;height:8px;border-radius:50%;background:var(--c-primary-light);filter:var(--led);animation:pulse 1.8s ease-in-out infinite}
    @keyframes pulse{0%,100%{transform:scale(.8);opacity:.7}50%{transform:scale(1.25);opacity:1}}
    .bar{height:6px;border-radius:10px;background:linear-gradient(90deg,rgba(1,112,185,.15),rgba(0,114,254,.15));margin:12px 0}
    .bar > span{display:block;height:100%;width:0%;border-radius:inherit;background:linear-gradient(90deg,var(--c-primary),var(--c-primary-light));filter:var(--led);transition:width 1.2s ease}
    .plan ul{margin:16px 0 20px;padding:0;list-style:none}
    .plan li{margin:8px 0;padding-left:20px;position:relative;font-size:.88rem;line-height:1.4}
    .plan li::before{content:"✓";position:absolute;left:0;color:var(--c-primary-light);font-weight:bold;font-size:1rem}
    .plan-footer{margin-top:16px;padding-top:16px;border-top:1px solid rgba(1,112,185,.1)}

    /* Compare */
    .compare{overflow:auto}
    table.compare{width:100%;border-collapse:separate;border-spacing:0 10px}
    table.compare th,table.compare td{padding:12px 16px;text-align:left;background:#fff;border:1px solid rgba(0,0,0,.06)}
    table.compare th:first-child,table.compare td:first-child{border-radius:12px 0 0 12px}
    table.compare th:last-child,table.compare td:last-child{border-radius:0 12px 12px 0}

    /* Coverage */
    .coverage{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:center}
    .coverage-map{
      width:85%;
      height:auto;
      border-radius:var(--radius);
      transition: transform .3s ease, filter .3s ease;
      display: block;
      filter: 
        drop-shadow(0 0 8px rgba(0,114,254,.4))
        drop-shadow(0 0 16px rgba(0,114,254,.2))
        drop-shadow(0 0 24px rgba(1,112,185,.1))
        brightness(1.05);
    }
    .coverage-map:hover{
      transform: scale(1.02);
      filter: 
        drop-shadow(0 0 12px rgba(0,114,254,.6))
        drop-shadow(0 0 24px rgba(0,114,254,.4))
        drop-shadow(0 0 36px rgba(1,112,185,.2))
        brightness(1.15) 
        saturate(1.1);
    }
    .city-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
    .city{padding:10px 12px;border-radius:12px;border:1px dashed rgba(1,112,185,.3)}

    /* Technology */
    .tech-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    .tech{padding:20px;text-align:center}
    .tech h4{margin:10px 0 6px}
    .icon{font-size:32px;filter:var(--led)}

    /* Testimonials */
    .testimonials{overflow:hidden}
    .carousel{display:flex;gap:16px;transition:transform .6s ease}
    .testimonial{min-width:320px;max-width:420px}
    .stars{color:#f7b500;letter-spacing:2px}
    .avatar{width:44px;height:44px;border-radius:50%;background:var(--grad-principal);filter:var(--led)}

    /* ============================================
       BENEFÍCIOS / DIFERENCIAIS
    ============================================ */
    .benefits-section {
      background: #0a0f20;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .benefits-section .bg-effect {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse 600px 400px at 10% 50%, rgba(1,112,185,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 90% 30%, rgba(0,217,255,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 50% 80%, rgba(0,255,200,0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    #matrixCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }
    .benefits-section::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 0;
      right: 0;
      height: 80px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%2300D9FF' stroke-width='3' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,90 1440,60'/%3E%3C/svg%3E") no-repeat top center;
      background-size: 100% 100%;
      z-index: 5;
      filter: drop-shadow(0 0 8px #0170B9) drop-shadow(0 0 15px #00D9FF) drop-shadow(0 0 25px rgba(0,217,255,0.5));
    }
    .benefits-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #0170B9, #00D9FF, #0170B9, transparent);
      box-shadow: 0 0 20px #0170B9, 0 0 40px rgba(0,217,255,0.5);
    }
    .benefits-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }
    .benefits-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #fff 0%, #00D9FF 50%, #00FFC8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }
    .benefits-header p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin: 0 auto;
    }
    .benefits-wrapper {
      display: flex;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 1;
    }
    .benefits-mascot-single {
      flex-shrink: 0;
      width: 400px;
      z-index: 2;
      position: relative;
    }
    .benefits-mascot-single img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 30px rgba(0,217,255,0.4)) drop-shadow(0 0 60px rgba(1,112,185,0.3));
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      flex: 1;
      position: relative;
      z-index: 1;
    }
    .benefit-card {
      background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #00D9FF, #00FFC8);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .benefit-card:hover {
      transform: translateY(-8px);
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      box-shadow: 0 20px 40px rgba(0,217,255,0.15);
    }
    .benefit-card:hover::before {
      opacity: 1;
    }
    .benefit-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, rgba(0,217,255,0.2), rgba(0,255,200,0.1));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .benefit-icon svg {
      width: 32px;
      height: 32px;
      color: #00D9FF;
    }
    .benefit-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }
    .benefit-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }
    @media (max-width: 1024px) {
      .benefits-header h2 { font-size: 2rem; }
      .benefits-header p { font-size: 1rem; }
      .benefits-wrapper { flex-direction: column; gap: 30px; }
      .benefits-mascot-single { width: 300px; order: -1; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .benefits-header h2 { font-size: 1.6rem; }
      .benefits-grid { grid-template-columns: 1fr; }
      .benefits-mascot-single { width: 220px; }
    }

    /* Seção Tecnologia */
    .tecnologia-section{
      padding:80px 0;
      background:var(--grad-suave);
      position:relative;
    }
    .tecnologia-section::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, transparent, var(--c-primary), var(--c-primary-light), var(--c-primary), transparent);
    }
    .tech-header{
      text-align:center;
      margin-bottom:60px;
    }
    .tech-header h2{
      font-size:2.5rem;
      color:var(--c-titulo);
      margin-bottom:12px;
    }
    .tech-header p{
      font-size:1.1rem;
      color:var(--c-muted);
    }
    .tech-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:24px;
      margin-bottom:60px;
    }
    .tech-card{
      background:#fff;
      border:1px solid var(--c-borda);
      border-radius:16px;
      padding:32px 24px;
      text-align:center;
      transition:all 0.3s ease;
    }
    .tech-card:hover{
      transform:translateY(-8px);
      border-color:var(--c-primary);
      box-shadow:0 12px 40px rgba(1,112,185,0.15);
    }
    .tech-icon{
      width:64px;
      height:64px;
      margin:0 auto 20px;
      background:linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 24px rgba(1,112,185,0.25);
    }
    .tech-icon svg{
      width:32px;
      height:32px;
      fill:#fff;
    }
    .tech-card h3{
      font-size:1.2rem;
      color:var(--c-titulo);
      margin-bottom:12px;
    }
    .tech-card p{
      font-size:0.95rem;
      color:var(--c-corpo);
      line-height:1.6;
    }
    .tech-stats{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:24px;
      background:linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
      border-radius:20px;
      padding:40px;
      box-shadow:0 12px 40px rgba(1,112,185,0.3);
    }
    .stat-item{
      text-align:center;
    }
    .stat-number{
      display:block;
      font-size:2.5rem;
      font-weight:800;
      color:#fff;
      margin-bottom:8px;
    }
    .stat-label{
      font-size:0.9rem;
      color:rgba(255,255,255,0.85);
    }
    @media (max-width: 980px){
      .tech-grid{
        grid-template-columns:repeat(2, 1fr);
      }
      .tech-stats{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
        padding:30px 20px;
      }
      .stat-number{
        font-size:2rem;
      }
    }
    @media (max-width: 600px){
      .tech-grid{
        grid-template-columns:1fr;
      }
      .tech-header h2{
        font-size:1.8rem;
      }
    }

    /* Seção Suporte */
    .suporte-section{
      padding:80px 0;
      background:var(--c-bg-alt);
      position:relative;
    }
    .suporte-section::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, transparent, var(--c-primary), var(--c-primary-light), var(--c-primary), transparent);
    }
    .suporte-header{
      text-align:center;
      margin-bottom:60px;
    }
    .suporte-header h2{
      font-size:2.5rem;
      color:var(--c-titulo);
      margin-bottom:12px;
    }
    .suporte-header p{
      font-size:1.1rem;
      color:var(--c-muted);
    }
    .suporte-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:24px;
    }
    .suporte-card{
      background:#fff;
      border:1px solid var(--c-borda);
      border-radius:16px;
      padding:28px;
      transition:all 0.3s ease;
    }
    .suporte-card:hover{
      border-color:var(--c-primary);
      box-shadow:0 8px 32px rgba(1,112,185,0.12);
    }
    .suporte-card.principal{
      grid-column:1 / 2;
      grid-row:1 / 3;
      background:linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
      border:none;
      display:flex;
      flex-direction:column;
      justify-content:center;
      text-align:center;
      padding:40px;
      box-shadow:0 12px 40px rgba(1,112,185,0.3);
    }
    .suporte-icon-big{
      width:80px;
      height:80px;
      margin:0 auto 24px;
      background:rgba(255,255,255,0.2);
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .suporte-icon-big svg{
      width:40px;
      height:40px;
      fill:#fff;
    }
    .suporte-icon{
      width:48px;
      height:48px;
      margin-bottom:16px;
      background:var(--c-bg-section);
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .suporte-icon svg{
      width:24px;
      height:24px;
      fill:var(--c-primary);
    }
    .suporte-card h3{
      font-size:1.2rem;
      color:var(--c-titulo);
      margin-bottom:12px;
    }
    .suporte-card.principal h3{
      font-size:1.5rem;
      color:#fff;
    }
    .suporte-card p{
      font-size:0.95rem;
      color:var(--c-corpo);
      line-height:1.6;
      margin-bottom:12px;
    }
    .suporte-card.principal p{
      color:rgba(255,255,255,0.9);
    }
    .suporte-contatos{
      display:flex;
      gap:12px;
      justify-content:center;
      margin-top:24px;
      flex-wrap:wrap;
    }
    .suporte-btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:12px 20px;
      border-radius:8px;
      font-weight:600;
      font-size:0.95rem;
      text-decoration:none;
      transition:all 0.3s ease;
    }
    .suporte-btn svg{
      width:20px;
      height:20px;
    }
    .suporte-btn.whatsapp{
      background:var(--c-whatsapp);
      color:#fff;
    }
    .suporte-btn.whatsapp:hover{
      background:#1da851;
      transform:translateY(-2px);
      box-shadow:0 4px 16px rgba(37,211,102,0.4);
    }
    .suporte-btn.telefone{
      background:rgba(255,255,255,0.2);
      color:#fff;
      border:1px solid rgba(255,255,255,0.4);
    }
    .suporte-btn.telefone:hover{
      background:rgba(255,255,255,0.3);
      transform:translateY(-2px);
    }
    .suporte-btn.ouvidoria{
      background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color:#fff;
      border:none;
      cursor:pointer;
    }
    .suporte-btn.ouvidoria:hover{
      background:linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
      transform:translateY(-2px);
      box-shadow:0 4px 16px rgba(102,126,234,0.4);
    }
    .suporte-link{
      display:inline-block;
      color:var(--c-primary);
      font-size:0.9rem;
      font-weight:600;
      text-decoration:none;
      transition:all 0.3s ease;
    }
    .suporte-link:hover{
      color:var(--c-primary-dark);
      text-decoration:underline;
    }
    .ouvidoria-contatos{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-top:12px;
    }
    .ouvidoria-contatos .suporte-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:0.85rem;
    }
    .ouvidoria-contatos .suporte-link svg{
      flex-shrink:0;
    }
    .suporte-card.ouvidoria .suporte-icon{
      background:linear-gradient(135deg, #6366f1, #8b5cf6);
    }
    @media (max-width: 980px){
      .suporte-grid{
        grid-template-columns:1fr 1fr;
      }
      .suporte-card.principal{
        grid-column:1 / -1;
        grid-row:auto;
      }
    }
    @media (max-width: 600px){
      .suporte-grid{
        grid-template-columns:1fr;
      }
      .suporte-header h2{
        font-size:1.8rem;
      }
    }

    /* Footer */
    footer{background:var(--grad-footer);color:var(--c-text);position:relative;overflow:hidden}
    footer::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,var(--c-primary-light),#fff,var(--c-primary-light),transparent)}
    footer h4{color:var(--c-text);font-weight:700;margin-bottom:12px}
    .footer-logo{width:140px;height:auto;margin-bottom:16px;object-fit:contain;filter:brightness(1.1) drop-shadow(0 4px 12px rgba(1,112,185,.3))}
    .footer-slogan{font-size:1rem;color:var(--c-primary-light);font-style:italic;margin:0 0 12px 0;opacity:0.95;letter-spacing:0.5px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:24px;padding:48px 0}
    .footer-grid a{color:rgba(255,255,255,.8);transition:all .3s ease}
    .footer-grid a:hover{color:var(--c-primary-light);text-decoration:none}
    .footer-grid p{color:rgba(255,255,255,.7);font-size:.9rem;line-height:1.6}
    .socials{display:flex;gap:12px;margin-top:16px}
    .socials a{padding:12px;border-radius:12px;background:rgba(1,112,185,.15);border:1px solid rgba(1,112,185,.2);transition:all .3s ease}
    .socials a:hover{background:rgba(1,112,185,.3);transform:translateY(-3px);box-shadow:0 4px 15px rgba(1,112,185,.3)}
    .socials svg{width:20px;height:20px;fill:var(--c-text)}

    /* ============================================
       NOSSAS LOJAS
    ============================================ */
    .stores-section{
      background:linear-gradient(180deg,#0a0f20 0%,#0d1529 100%);
      padding:120px 0 130px;
      position:relative;
      overflow:hidden;
      z-index:1;
    }
    .stores-wave{
      position:absolute;
      left:0;
      width:100%;
      overflow:hidden;
      line-height:0;
      z-index:3;
    }
    .stores-wave-top{top:-1px}
    .stores-wave-bottom{bottom:-1px;transform:rotate(180deg)}
    .stores-wave svg{position:relative;display:block;width:calc(100% + 1.3px);height:70px}
    .stores-wave-top .shape-fill{fill:#EDF4FB}
    .stores-wave-bottom .shape-fill{fill:#0a0f20}
    .stores-bg-effects{
      position:absolute;
      inset:0;
      overflow:hidden;
      pointer-events:none;
      z-index:0;
    }
    .stores-orb{
      position:absolute;
      border-radius:50%;
      filter:blur(40px);
      animation:storeOrbFloat 20s infinite ease-in-out;
    }
    .stores-orb-1{width:350px;height:350px;background:rgba(0,217,255,0.3);top:-50px;left:-100px;animation-delay:0s}
    .stores-orb-2{width:300px;height:300px;background:rgba(1,112,185,0.4);top:40%;right:-80px;animation-delay:-5s}
    .stores-orb-3{width:250px;height:250px;background:rgba(0,217,255,0.25);bottom:-50px;left:40%;animation-delay:-10s}
    .stores-orb-4{width:200px;height:200px;background:rgba(1,112,185,0.35);top:20%;left:60%;animation-delay:-15s}
    @keyframes storeOrbFloat{
      0%,100%{transform:translate(0,0) scale(1)}
      25%{transform:translate(40px,-30px) scale(1.1)}
      50%{transform:translate(-20px,40px) scale(0.95)}
      75%{transform:translate(30px,20px) scale(1.05)}
    }
    .stores-grid-pattern{
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
      background-size:40px 40px;
    }
    .stores-section>.container{position:relative;z-index:1}
    .stores-header{text-align:center;margin-bottom:50px}
    .stores-header h2{font-size:2.2rem;font-weight:800;color:white;margin-bottom:12px}
    .stores-header p{color:rgba(255,255,255,0.6);font-size:1.1rem}
    .stores-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
    .store-card{
      background:linear-gradient(145deg,rgba(255,255,255,0.06),rgba(255,255,255,0.02));
      border:1px solid rgba(255,255,255,0.08);
      border-radius:16px;
      overflow:hidden;
      transition:all 0.3s ease;
      position:relative;
    }
    .store-card:hover{transform:translateY(-6px);border-color:rgba(0,217,255,0.5);box-shadow:0 15px 35px rgba(0,217,255,0.2)}
    .store-image{width:100%;height:140px;overflow:hidden;position:relative}
    .store-image::after{
      content:'';
      position:absolute;
      bottom:0;left:0;right:0;
      height:60px;
      background:linear-gradient(to top,rgba(10,15,32,0.9),transparent);
    }
    .store-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}
    .store-card:hover .store-image img{transform:scale(1.08)}
    .store-city{
      position:absolute;
      top:12px;left:12px;
      background:linear-gradient(135deg,#0170B9,#00D9FF);
      color:white;
      font-size:0.7rem;
      font-weight:700;
      padding:5px 12px;
      border-radius:20px;
      text-transform:uppercase;
      letter-spacing:0.5px;
      z-index:2;
      box-shadow:0 4px 15px rgba(0,0,0,0.3);
    }
    .store-info{padding:16px}
    .store-address{display:flex;align-items:flex-start;gap:8px;margin-bottom:12px}
    .store-address svg{width:16px;height:16px;color:#00D9FF;flex-shrink:0;margin-top:2px}
    .store-address p{color:rgba(255,255,255,0.85);font-size:0.78rem;line-height:1.4;margin:0}
    .store-hours{display:flex;align-items:flex-start;gap:8px;padding-top:12px;border-top:1px solid rgba(255,255,255,0.08)}
    .store-hours svg{width:16px;height:16px;color:#10B981;flex-shrink:0;margin-top:2px}
    .store-hours p{color:rgba(255,255,255,0.6);font-size:0.72rem;line-height:1.5;margin:0}
    .store-actions{display:flex;gap:8px;margin-top:14px}
    .store-btn{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:10px 8px;
      border-radius:8px;
      font-size:0.72rem;
      font-weight:600;
      text-decoration:none;
      transition:all 0.3s ease;
    }
    .store-btn svg{width:14px;height:14px}
    .store-btn-maps{background:rgba(16,185,129,0.15);color:#10B981;border:1px solid rgba(16,185,129,0.3)}
    .store-btn-maps:hover{background:#10B981;color:white;transform:scale(1.02)}
    .store-btn-whatsapp{background:rgba(37,211,102,0.15);color:#25D366;border:1px solid rgba(37,211,102,0.3)}
    .store-btn-whatsapp:hover{background:#25D366;color:white;transform:scale(1.02)}
    .stores-carousel-dots{display:none}
    @media(max-width:1100px){
      .stores-grid{grid-template-columns:repeat(2,1fr)}
      .store-image{height:160px}
    }
    @media(max-width:768px){
      .stores-section{padding:80px 0 100px}
      .stores-grid{
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        gap:16px;
        padding:10px 20px 20px;
        margin:0 -20px;
        scrollbar-width:none;
        -ms-overflow-style:none;
      }
      .stores-grid::-webkit-scrollbar{display:none}
      .store-card{flex:0 0 280px;scroll-snap-align:center}
      .store-image{height:160px}
      .store-info{padding:16px}
      .store-address p,.store-hours p{font-size:0.8rem}
      .store-btn{font-size:0.78rem;padding:10px}
      .stores-carousel-dots{
        display:flex;
        justify-content:center;
        gap:8px;
        margin-top:20px;
      }
      .stores-carousel-dots span{
        width:8px;height:8px;
        border-radius:50%;
        background:rgba(255,255,255,0.3);
        transition:all 0.3s ease;
        cursor:pointer;
      }
      .stores-carousel-dots span.active{background:#00D9FF;width:24px;border-radius:4px}
    }

    /* Floating WhatsApp Button - Papito */
    .whatsapp-fab{
      position:fixed;
      right:20px;
      bottom:20px;
      z-index:60;
      display:block;
      cursor:pointer;
      transition:all .3s ease;
      animation:papitoBounce 3s ease-in-out infinite;
      text-decoration:none;
    }
    .whatsapp-fab:hover{
      transform:scale(1.1) translateY(-5px);
    }
    .whatsapp-fab img{
      width:180px;
      height:auto;
      filter:drop-shadow(0 8px 20px rgba(0,0,0,.3));
      transition:all .3s ease;
    }
    .whatsapp-fab:hover img{
      filter:drop-shadow(0 12px 30px rgba(0,0,0,.4));
    }
    @keyframes papitoBounce{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-8px)}
    }
    @media(max-width:768px){
      .whatsapp-fab{
        right:10px;
        bottom:10px;
      }
      .whatsapp-fab img{
        width:90px;
      }
    }

    /* Enhanced Background Effects */
    .circuits{position:fixed;pointer-events:none;inset:0;z-index:-1;background:
      radial-gradient(60% 80% at -10% 20%, rgba(0,114,254,.08), transparent),
      radial-gradient(60% 80% at 110% 80%, rgba(1,112,185,.08), transparent),
      linear-gradient(45deg, rgba(0,114,254,.02) 25%, transparent 25%),
      linear-gradient(-45deg, rgba(1,112,185,.02) 25%, transparent 25%);
      background-size: 60px 60px, 60px 60px, 40px 40px, 40px 40px;
      animation: backgroundShift 20s ease-in-out infinite}
    @keyframes backgroundShift{
      0%, 100% { background-position: 0% 0%, 100% 100%, 0 0, 0 0 }
      50% { background-position: 100% 100%, 0% 0%, 20px 20px, -20px 20px }
    }
    .circuit-line{position:absolute;height:2px;background:linear-gradient(90deg,transparent,rgba(0,114,254,.8),transparent);filter:var(--led);opacity:.7;box-shadow:0 0 10px rgba(0,114,254,.5)}
    .floating-orb{position:absolute;width:100px;height:100px;background:radial-gradient(circle, rgba(0,114,254,.15), rgba(1,112,185,.05), transparent);border-radius:50%;filter:blur(1px);animation:floatOrb 15s ease-in-out infinite}
    @keyframes floatOrb{
      0%, 100% { transform: translate(0, 0) scale(1) }
      25% { transform: translate(100px, -50px) scale(1.2) }
      50% { transform: translate(-80px, -100px) scale(0.8) }
      75% { transform: translate(-120px, 60px) scale(1.1) }
    }

    /* Animations on scroll */
    [data-animate]{opacity:0;transform:translateY(16px);transition:all .7s ease}
    [data-animate].visible{opacity:1;transform:none}

    /* Special effects for featured plan */
    .plan.featured::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4, #FFD700);
      border-radius: var(--radius);
      background-size: 400% 400%;
      z-index: -1;
      animation: gradient-border 3s ease infinite;
      opacity: 0.8;
    }
    @keyframes gradient-border {
      0% { background-position: 0% 50% }
      50% { background-position: 100% 50% }
      100% { background-position: 0% 50% }
    }
    
    /* Mobile Menu */
    .menu-btn{
      display: none;
      background: linear-gradient(135deg,var(--c-primary),var(--c-primary-light));
      color: #fff;
      border: none;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      margin-left: 10px;
    }

    /* Mobile Overlay Menu */
    .mobile-menu-overlay{
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow: visible;
    }
    .mobile-menu-overlay.show{
      opacity: 1;
    }
    .mobile-menu-content{
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 300px;
      max-width: 85vw;
      background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
      display: flex;
      flex-direction: column;
      padding: 20px;
      box-sizing: border-box;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      box-shadow: -5px 0 30px rgba(1, 112, 185, 0.4);
      overflow: visible;
    }
    .mobile-menu-overlay.show .mobile-menu-content{
      transform: translateX(0);
    }
    .menu-close{
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      z-index: 10;
    }
    .menu-close:hover{
      background: rgba(255, 255, 255, 0.25);
    }
    .mobile-menu-mascot{
      position: fixed;
      right: 220px;
      top: 50%;
      transform: translateY(-50%) translateX(100%);
      height: 280px;
      width: auto;
      filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
      z-index: 10000;
      pointer-events: none;
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .mobile-menu-overlay.show .mobile-menu-mascot{
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }
    .mobile-menu-header{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 0 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 20px;
    }
    .mobile-menu-logo{
      height: 40px;
      width: auto;
      margin-bottom: 6px;
      display: block;
    }
    .mobile-menu-slogan{
      display: block;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .mobile-menu-nav{
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .mobile-menu-nav a{
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.2s ease;
    }
    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:active{
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }
    .mobile-menu-contact{
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }
    .contact-whatsapp,
    .contact-phone{
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 8px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .contact-whatsapp{
      background: rgba(37, 211, 102, 0.9);
      color: #fff;
      border: none;
    }
    .contact-whatsapp:hover{
      background: #25d366;
    }
    .contact-phone{
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: none;
    }
    .contact-phone:hover{
      background: rgba(255, 255, 255, 0.25);
    }
    .mobile-cta{
      background: #fff;
      color: var(--c-primary);
      padding: 14px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      margin-bottom: 16px;
      transition: all 0.2s ease;
    }
    .mobile-cta:hover{
      background: var(--c-bg-section);
    }
    .mobile-menu-social{
      display: flex;
      justify-content: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: auto;
    }
    .mobile-menu-social a{
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
    }
    .mobile-menu-social a:hover{
      background: rgba(255, 255, 255, 0.25);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero{
        min-height: 80vh;
      }
      .hero-inner{
        flex-direction:column;
        text-align:center;
        gap:30px;
        padding: 60px 0 40px;
        min-height: 80vh;
      }
      .hero-left{
        text-align:center;
        order: 2;
      }
      .hero-right{
        order: 1;
        margin-bottom: 20px;
      }
      .hero-logo{
        width:240px;
        height:240px;
      }
      .hero-slider{
        height:85vh;
        overflow:hidden;
      }
      .hero-slide{
        height:85vh;
        position:relative;
        display:none;
        overflow:hidden;
      }
      .hero-slide.active{
        display:flex;
      }
      .hero-slide .hero-inner{
        padding:50px 20px 30px;
        flex-direction:column;
        text-align:center;
        gap:10px;
      }
      .hero-slide .hero-left{
        max-width:100%;
        text-align:center;
        order:2;
        position:relative;
        z-index:5;
      }
      .hero-slide .hero-left .btn-row{
        justify-content:center;
      }
      .hero-slide .hero-right{
        flex:0 0 auto;
        height:240px;
        width:100%;
        order:1;
        margin-bottom:0;
        display:flex;
        align-items:center;
        justify-content:center;
        position:relative;
        z-index:4;
      }
      .hero-mascot{
        max-height:220px;
        max-width:220px;
        width:auto;
        height:auto;
        object-fit:contain;
      }
      .hero-mascot.mascot-square{
        max-height:220px;
        max-width:220px;
      }
      .hero h1{
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 10px;
      }
      .hero p{
        font-size: 0.95rem;
        margin-bottom: 16px;
      }
      .hero .cta{
        padding: 14px 28px;
        font-size: 16px;
      }
      .hero{
        padding-bottom: 90px;
      }
      .hero-wave{
        height:110px;
      }
      /* Vídeo menor no mobile */
      .hero-video-bg{
        transform: scale(0.8) translate(-80%, -70%);
      }
      /* Reduzir elementos decorativos no mobile */
      .floating-logo{
        width: 50px;
        height: 50px;
        opacity: 0.05;
      }
      .floating-orb{
        width: 60px;
        height: 60px;
        opacity: 0.4;
      }
      .coverage{grid-template-columns:1fr}
      .tech-grid{grid-template-columns:1fr 1fr}
      .plans{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid a{word-break: break-word; overflow-wrap: break-word;}

      /* Hide desktop nav elements */
      nav ul{display:none}
      .nav .cta{display:none}
      
      /* Show mobile menu button */
      .menu-btn{display:inline-flex}
    }
    @media (min-width:981px){.menu-btn{display:none}}

    /* Footer Mobile Pequeno */
    @media (max-width: 480px){
      .footer-grid{
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
      }
      .footer-grid > div{
        padding: 0 16px;
      }
      .footer-grid a{
        word-break: break-all;
        overflow-wrap: anywhere;
        font-size: 0.85rem;
      }
      .socials{
        justify-content: center;
      }
    }

    /* NOVA SEÇÃO CONTATO */
    .contato-nova{
      background: var(--grad-principal);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      z-index: 10;
      isolation: isolate;
      width: 100%;
      min-height: auto;
    }
    .contato-nova *{
      background-color: transparent !important;
    }
    .contato-nova .wrap{
      background: transparent !important;
    }
    .contato-nova::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,0.5), #fff, rgba(255,255,255,0.5), transparent);
    }
    /* Anula o background dos circuits na seção de contato */
    .contato-nova .circuits{
      display: none !important;
    }
    .contato-nova .wrap{ 
      max-width:1200px; 
      margin:0 auto; 
      padding: clamp(20px, 3.5vw, 48px); 
      position: relative; 
      z-index: 2; 
    }
    .contato-nova .header{
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 3;
      background: transparent !important;
      background-color: transparent !important;
    }
    .contato-nova .header h2{
      margin:0 0 16px 0;
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 800;
      letter-spacing:.5px;
      color:white !important;
      text-shadow:
        0 0 10px rgba(0,114,254,.8),
        0 0 20px rgba(0,114,254,.6),
        0 0 30px rgba(1,112,185,.4),
        0 2px 4px rgba(0,0,0,.3);
      background: transparent !important;
      background-color: transparent !important;
      -webkit-text-fill-color: white !important;
    }
    .contato-nova .header p{
      margin:0 0 0 0;
      color:rgba(255,255,255,0.8) !important;
      font-size: clamp(16px, 1.8vw, 20px);
      font-weight: 300;
      text-shadow: 0 1px 2px rgba(0,0,0,.2);
      opacity: 0.9;
      background: transparent !important;
      background-color: transparent !important;
    }
    .contato-nova .grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr;
      gap: clamp(18px, 3vw, 32px);
    }
    .contato-nova .card{
      background: rgba(1,112,185,0.15);
      border:1px solid rgba(1,112,185,0.2);
      border-radius: 22px;
      box-shadow: 0 10px 40px rgba(0,0,0,.2);
      overflow:hidden;
    }
    .contato-nova .card-inner{ padding: clamp(18px, 3vw, 32px); }
    .contato-nova .form-title{ margin:0 0 14px 0; font-size: clamp(18px, 2.2vw, 26px); color:var(--c-text); }
    .contato-nova form{ display:grid; gap:16px; }
    .contato-nova .field{
      position:relative;
    }
    .contato-nova .input{
      width:100%;
      background: rgba(255,255,255,0.1);
      border:2px solid rgba(255,255,255,0.5);
      border-radius: 14px;
      padding: 18px 44px 18px 48px;
      color:var(--c-text);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
      font-family:inherit;
    }
    .contato-nova .input::placeholder{ color:rgba(255,255,255,0.6); opacity:1 }
    .contato-nova .input:focus{
      border-color: #fff;
      box-shadow: 0 0 0 4px rgba(255,255,255,.2);
      background:rgba(255,255,255,0.15);
    }
    .contato-nova .icon{
      position:absolute; left:14px; top:50%; transform:translateY(-50%);
      width:20px; height:20px; opacity:.9; color:rgba(255,255,255,0.8);
    }
    .contato-nova .label{
      position:absolute; left:48px; top:10px; font-size:12px; color:rgba(255,255,255,0.8); pointer-events:none;
      transition: transform .15s ease, opacity .15s ease;
      opacity:.9;
    }
    .contato-nova .input:not(:placeholder-shown) + .label,
    .contato-nova .input:focus + .label{
      transform: translateY(-10px) scale(.95);
      opacity:1;
    }
    .contato-nova textarea.input{ min-height:120px; resize: vertical; }
    .contato-nova .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
    .contato-nova .lgpd{
      display:flex; align-items:center; justify-content:center; gap:8px;
      font-size:14px; color:rgba(255,255,255,0.8); line-height:1.4;
      text-align:center; width:100%;
    }
    .contato-nova .lgpd input{
      flex-shrink:0;
      width:18px;
      height:18px;
      cursor:pointer;
    }
    .contato-nova .lgpd span{
      text-align:left;
    }
    @media (max-width: 480px){
      .contato-nova .lgpd{
        font-size:12px;
        gap:6px;
      }
    }
    .contato-nova .error{ color:#ff5577; font-size:13px; display:none; }
    .contato-nova .actions{ display:flex; align-items:center; justify-content:center; gap:12px; margin-top:6px; }
    .contato-nova .btn{
      border:none; border-radius: 999px; padding: 14px 24px; font-weight:700; letter-spacing:.3px;
      color:#fff; background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      box-shadow: 0 4px 15px rgba(1,112,185,.4); cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease; font-family:inherit;
    }
    .contato-nova .btn:hover{ transform: translateY(-2px); box-shadow: 0 6px 20px rgba(1,112,185,.5); }
    .contato-nova .btn:active{ transform: translateY(0); }
    .contato-nova .contacts{
      display:flex; flex-direction:column; gap:18px;
    }
    .contato-nova .contacts h3{ margin:0 0 6px 0; font-size: clamp(18px, 2.2vw, 26px); color:var(--c-text); }
    .contato-nova .line{
      display:flex; align-items:center; gap:12px;
      padding:12px 14px; border:1px solid rgba(255,255,255,0.5); border-radius:12px;
      background: rgba(255,255,255,0.1);
    }
    .contato-nova .line a{ color:rgba(255,255,255,0.9); text-decoration:none }
    .contato-nova .line small{ color:rgba(255,255,255,0.7) }
    .contato-nova .cta-big{
      margin-top: 8px; align-self:flex-start;
      padding: 16px 26px; font-size:16px;
    }
    .contato-nova .toast{
      position:fixed; right:18px; bottom:18px; padding:12px 16px; border-radius:12px;
      background:rgba(1,112,185,0.95); border:1px solid rgba(1,112,185,0.3); color:var(--c-text);
      box-shadow: 0 10px 40px rgba(0,0,0,.35);
      display:none; z-index:10000;
    }

    /* ===== MODAL DE ENVIO DE MENSAGEM ===== */
    .envio-modal-overlay{
      position: fixed;
      inset: 0;
      background: rgba(10, 15, 32, 0.9);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .envio-modal-overlay.active{
      display: flex;
      opacity: 1;
    }
    .envio-modal{
      background: linear-gradient(145deg, #1a2a4a 0%, #0d1a30 100%);
      border: 2px solid rgba(1, 112, 185, 0.4);
      border-radius: 24px;
      padding: 40px 50px;
      text-align: center;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(1, 112, 185, 0.2);
      transform: scale(0.8) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      max-width: 400px;
      width: 90%;
    }
    .envio-modal-overlay.active .envio-modal{
      transform: scale(1) translateY(0);
    }
    .envio-estado h3{
      color: #fff;
      font-size: 1.5rem;
      margin: 20px 0 10px;
      font-weight: 700;
    }
    .envio-estado p{
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      margin: 0;
    }

    /* Spinner de Loading */
    .envio-spinner{
      width: 80px;
      height: 80px;
      position: relative;
      margin: 0 auto;
    }
    .spinner-ring{
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 4px solid transparent;
      animation: spinnerRotate 1.5s linear infinite;
    }
    .spinner-ring:nth-child(1){
      border-top-color: #0170B9;
      animation-delay: 0s;
    }
    .spinner-ring:nth-child(2){
      border-right-color: #2196F3;
      animation-delay: 0.15s;
      width: 70%;
      height: 70%;
      top: 15%;
      left: 15%;
    }
    .spinner-ring:nth-child(3){
      border-bottom-color: #64B5F6;
      animation-delay: 0.3s;
      width: 40%;
      height: 40%;
      top: 30%;
      left: 30%;
    }
    @keyframes spinnerRotate{
      0%{ transform: rotate(0deg); }
      100%{ transform: rotate(360deg); }
    }

    /* Ícones de Sucesso/Erro */
    .envio-icone{
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }
    .envio-icone svg{
      width: 40px;
      height: 40px;
    }
    .envio-icone.sucesso{
      background: linear-gradient(135deg, #10B981 0%, #059669 100%);
      box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
      animation: sucessoPulse 0.6s ease;
    }
    .envio-icone.sucesso svg{
      stroke: white;
    }
    .envio-icone.sucesso .check-path{
      stroke-dasharray: 30;
      stroke-dashoffset: 30;
      animation: checkDraw 0.5s ease 0.3s forwards;
    }
    @keyframes checkDraw{
      to{ stroke-dashoffset: 0; }
    }
    @keyframes sucessoPulse{
      0%{ transform: scale(0); opacity: 0; }
      50%{ transform: scale(1.2); }
      100%{ transform: scale(1); opacity: 1; }
    }
    .envio-icone.erro{
      background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
      box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
      animation: erroPulse 0.6s ease;
    }
    .envio-icone.erro svg{
      stroke: white;
    }
    @keyframes erroPulse{
      0%{ transform: scale(0) rotate(-90deg); opacity: 0; }
      50%{ transform: scale(1.2) rotate(10deg); }
      100%{ transform: scale(1) rotate(0deg); opacity: 1; }
    }

    /* Botão do Modal */
    .envio-btn{
      margin-top: 24px;
      padding: 14px 40px;
      background: linear-gradient(135deg, #0170B9 0%, #2196F3 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(1, 112, 185, 0.4);
    }
    .envio-btn:hover{
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(1, 112, 185, 0.5);
    }

    @media (max-width: 480px){
      .envio-modal{
        padding: 30px 25px;
      }
      .envio-estado h3{
        font-size: 1.25rem;
      }
    }

    @media (max-width:980px){
      .contato-nova .grid{ grid-template-columns:1fr; }
    }
    @media (max-width:880px){
      .contato-nova .form-row{ grid-template-columns:1fr }
    }

    /* SEÇÃO DEPOIMENTOS FUTURÍSTICA */
    .depoimentos-futurista{
      background: var(--grad-suave);
      padding: 80px 0;
      position: relative;
    }
    .depoimentos-futurista::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, transparent, var(--c-primary), var(--c-primary-light), var(--c-primary), transparent);
    }
    .depo-header{
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    .google-rating{
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }
    .rating-badge{
      display: flex;
      align-items: center;
      gap: 16px;
      background: white;
      border: 1px solid rgba(33,150,243,0.3);
      border-radius: 20px;
      padding: 16px 24px;
      box-shadow: 0 8px 32px rgba(33,150,243,0.15);
    }
    .google-icon{
      width: 32px;
      height: 32px;
    }
    .rating-stars{
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 4px;
    }
    .star{
      color: #FFD700;
      font-size: 18px;
      filter: drop-shadow(0 0 4px rgba(255,215,0,0.5));
    }
    .star.half{
      background: linear-gradient(90deg, #FFD700 50%, transparent 50%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .rating-number{
      font-size: 20px;
      font-weight: 800;
      color: var(--c-primary-dark);
      margin-left: 8px;
    }
    .rating-text{
      color: #546e7a;
      font-size: 14px;
      font-weight: 500;
    }
    .section-title-futurista{
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      color: var(--c-titulo);
      margin: 0 0 16px 0;
    }
    .section-sub-futurista{
      color: var(--c-muted);
      font-size: clamp(16px, 1.8vw, 20px);
      margin: 0;
      font-weight: 400;
    }
    .depo-carousel{
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      padding: 20px 0;
    }
    .depo-viewport{
      overflow: hidden;
      width: 100%;
    }
    .depo-track{
      display: flex;
      gap: 30px;
      transition: transform 0.5s ease;
      align-items: stretch;
      justify-content: center;
      width: 100%;
    }
    .depo-card{
      background: white;
      border: 1px solid rgba(33,150,243,0.2);
      border-radius: 24px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 10px 40px rgba(33,150,243,0.12);
      flex: 0 0 350px;
      min-height: 280px;
    }
    .depo-card::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light), var(--c-primary));
    }
    .depo-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(33,150,243,0.2);
    }
    .depo-header-card{
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .depo-avatar{
      position: relative;
      width: 48px;
      height: 48px;
    }
    .avatar-inner{
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #0072fe, #0170B9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: white;
      font-size: 16px;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    .avatar-inner img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .avatar-glow{
      position: absolute;
      top: -2px;
      left: -2px;
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, rgba(0,114,254,0.4), rgba(1,112,185,0.4));
      border-radius: 50%;
      z-index: 1;
      animation: pulse 2s infinite;
    }
    @keyframes pulse{
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }
    .depo-info{
      flex: 1;
      min-width: 120px;
    }
    .depo-info h4{
      margin: 0 0 4px 0;
      color: #1a237e;
      font-size: 18px;
      font-weight: 600;
    }
    .depo-stars span{
      color: #FFD700;
      font-size: 14px;
      filter: drop-shadow(0 0 3px rgba(255,215,0,0.5));
    }
    .verified-badge{
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(34,197,94,0.2);
      color: #22c55e;
      padding: 4px 8px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 500;
      border: 1px solid rgba(34,197,94,0.3);
    }
    .verified-badge svg{
      width: 14px;
      height: 14px;
    }
    .depo-text{
      color: #455a64;
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 20px 0;
      font-style: italic;
    }
    .depo-footer{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid rgba(33,150,243,0.15);
    }
    .depo-date{
      color: #78909c;
      font-size: 14px;
    }
    /* Carousel Navigation */
    .depo-nav{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
    }
    .depo-nav-btn{
      background: white;
      border: 2px solid var(--c-primary);
      color: var(--c-primary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 15px rgba(33,150,243,0.2);
    }
    .depo-nav-btn:hover{
      background: var(--c-primary);
      color: white;
      transform: scale(1.05);
    }
    .depo-nav-btn:disabled{
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }
    .depo-dots{
      display: flex;
      gap: 8px;
    }
    .depo-dot{
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(33,150,243,0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .depo-dot.active{
      background: var(--c-primary);
      transform: scale(1.2);
    }

    @media (max-width: 768px){
      .depo-card{
        flex: 0 0 280px;
        min-height: 260px;
      }
      .rating-badge{
        padding: 12px 20px;
      }
      .google-icon{
        width: 28px;
        height: 28px;
      }
      .depo-header-card{
        gap: 12px;
      }
      .verified-badge{
        margin-left: auto;
      }
    }

    /* ============================================
       SEÇÃO NOSSOS PRODUTOS - V2
       ============================================ */
    .produtos-section{
      background: linear-gradient(180deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
      padding: clamp(60px, 8vw, 100px) 0;
      padding-top: clamp(100px, 12vw, 140px);
      padding-bottom: clamp(120px, 14vw, 160px);
      position: relative;
      overflow: visible;
    }
    /* Ondas SVG */
    .produtos-wave-top,
    .produtos-wave-bottom{
      position: absolute;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 1;
    }
    .produtos-wave-top{
      top: -1px;
    }
    .produtos-wave-bottom{
      bottom: -1px;
    }
    .produtos-wave-top svg,
    .produtos-wave-bottom svg{
      position: relative;
      display: block;
      width: 100%;
      height: 60px;
    }
    .produtos-wave-top .shape-fill{
      fill: #EDF4FB;
    }
    .produtos-wave-bottom .shape-fill{
      fill: #F8FBFF;
    }
    @media (min-width: 768px){
      .produtos-wave-top svg,
      .produtos-wave-bottom svg{
        height: 80px;
      }
    }
    @media (min-width: 1200px){
      .produtos-wave-top svg,
      .produtos-wave-bottom svg{
        height: 100px;
      }
    }
    .produtos-section .container{
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .produtos-header{
      text-align: center;
      margin-bottom: 50px;
    }
    .produtos-header h2{
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .produtos-header p{
      font-size: clamp(16px, 2vw, 18px);
      color: rgba(255,255,255,0.7);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Grid V2 - Layout Compacto */
    .produtos-grid-v2{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
      overflow: visible;
      padding-bottom: 30px;
    }

    /* Card Base V2 - Compacto */
    .produto-card-v2{
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .produto-card-v2 .produto-card-bg{
      display: none;
    }
    .produto-card-v2:hover{
      border-color: rgba(1, 112, 185, 0.5);
      box-shadow: 0 12px 40px rgba(1, 112, 185, 0.2);
      transform: translateY(-4px);
    }

    /* Badge - Compacto */
    .produto-badge{
      display: inline-block;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      color: white;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .produto-badge.premium{
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #1a1a2e;
    }

    /* ===== CARD CÂMERAS IP com Papito ===== */
    .camera-card{
      grid-column: span 1;
      padding: 16px;
      min-height: 280px;
      overflow: visible !important;
      position: relative;
    }
    .camera-card .produto-card-content{
      display: flex;
      flex-direction: column;
      flex: 1;
      position: relative;
      z-index: 2;
    }
    .camera-card h3{
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .camera-card p{
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .camera-card .produto-features{
      display: grid;
      grid-template-columns: auto auto;
      gap: 3px;
      justify-content: start;
    }
    .camera-card .produto-features span{
      padding: 2px 6px;
    }
    .produto-obs{
      font-size: 9px !important;
      color: rgba(255,255,255,0.6) !important;
      line-height: 1.3;
      margin-bottom: 8px;
      padding: 8px 10px;
      background: rgba(0,0,0,0.2);
      border-radius: 6px;
      border-left: 2px solid rgba(255,193,7,0.7);
    }
    .produto-obs strong{
      color: rgba(255,193,7,0.9);
    }
    .camera-card .produto-card-image{
      position: absolute;
      right: -30px;
      bottom: -20px;
      width: 180px;
      height: 200px;
      z-index: 3;
      pointer-events: none;
    }
    .camera-card .produto-card-image img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom right;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
      transition: transform 0.3s ease;
    }
    .camera-card:hover .produto-card-image img{
      transform: scale(1.08) translateY(-5px);
    }

    /* ===== CARDS WiFi e Mesh ===== */
    .wifi-card, .mesh-card{
      min-height: 280px;
    }
    .produto-icon-v2{
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 0 4px 16px rgba(1, 112, 185, 0.3);
      flex-shrink: 0;
    }
    .produto-icon-v2 svg{
      width: 24px;
      height: 24px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    .wifi-card .produto-card-content,
    .mesh-card .produto-card-content{
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .wifi-card h3, .mesh-card h3{
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .wifi-card p, .mesh-card p{
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    /* ===== CARD EXPANSÃO MESH ===== */
    .expansao-card{
      grid-column: span 1;
      background: linear-gradient(145deg, rgba(1, 112, 185, 0.15) 0%, rgba(1, 112, 185, 0.05) 100%);
      border-color: rgba(1, 112, 185, 0.3);
      min-height: 280px;
    }
    .expansao-card .produto-card-content{
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .expansao-card h3{
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .expansao-card p{
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      line-height: 1.4;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Checklist - Compacto */
    .produto-checklist{
      list-style: none;
      padding: 0;
      margin: 0 0 12px 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .produto-checklist li{
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: rgba(255,255,255,0.8);
    }
    .produto-checklist svg{
      width: 12px;
      height: 12px;
      stroke: #4CAF50;
      fill: none;
      stroke-width: 3;
      flex-shrink: 0;
    }

    /* Ideal para - esconder em cards pequenos */
    .produto-ideal{
      display: none;
    }

    /* Visual House - esconder */
    .produto-card-visual{
      display: none;
    }

    /* Features - Compacto */
    .produto-features{
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-bottom: 12px;
    }
    .produto-features span{
      background: rgba(1, 112, 185, 0.2);
      color: var(--c-primary-light);
      padding: 3px 8px;
      border-radius: 10px;
      font-size: 9px;
      font-weight: 600;
      border: 1px solid rgba(1, 112, 185, 0.3);
    }

    /* Botão - Compacto */
    .produto-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 11px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto;
      width: fit-content;
    }
    .produto-btn:hover{
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(1, 112, 185, 0.4);
    }
    .produto-btn svg{
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }
    .premium-btn{
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #1a1a2e;
    }
    .premium-btn:hover{
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }

    /* Responsivo */
    @media (max-width: 980px){
      .produtos-grid-v2{
        grid-template-columns: repeat(2, 1fr);
      }
      .camera-card .produto-card-image{
        width: 150px;
        height: 170px;
        right: -20px;
        bottom: -15px;
      }
    }
    @media (max-width: 640px){
      .produtos-grid-v2{
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .produto-card-v2{
        padding: 16px;
        min-height: auto;
      }
      .camera-card, .wifi-card, .mesh-card, .expansao-card{
        min-height: auto;
      }
      .camera-card{
        min-height: 200px;
        padding-right: 100px;
      }
      .camera-card .produto-card-image{
        width: 130px;
        height: 150px;
        right: -15px;
        bottom: -10px;
      }
      .produtos-header h2{
        font-size: 22px;
      }
      .produtos-header p{
        font-size: 14px;
      }
    }

    /* SEÇÃO SOLUÇÕES EMPRESARIAIS */
    .pe-wrapper{
      background: var(--grad-suave);
      color: var(--c-titulo);
      padding: clamp(40px, 6vw, 80px) 0;
      font-family: inherit;
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .pe-wrapper::before{
      display: none;
    }
    .pe-wrapper *{
      background-color: transparent !important;
    }
    .pe-container{
      max-width:1200px; 
      margin:0 auto; 
      padding:0 clamp(20px, 3vw, 32px);
    }

    .pe-head{
      text-align:center;
      margin-bottom: 50px;
      background: transparent !important;
      background-color: transparent !important;
    }
    .pe-head h2{
      font-size: clamp(32px, 5vw, 48px);
      margin:0 0 16px 0;
      font-weight: 800;
      letter-spacing:.3px;
      color: var(--c-titulo) !important;
      background: transparent !important;
      background-color: transparent !important;
      -webkit-text-fill-color: var(--c-titulo) !important;
    }
    .pe-head p{
      color: var(--c-muted) !important;
      font-size: clamp(16px, 1.8vw, 20px);
      margin: 0;
      font-weight: 400;
      background: transparent !important;
      background-color: transparent !important;
    }

    /* Benefícios */
    .pe-benefits{
      list-style:none; 
      padding:0; 
      margin:0 0 40px 0;
      display:grid; 
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
      gap:20px;
    }
    .pe-benefits li{
      background: white;
      border:1px solid rgba(33,150,243,0.2);
      border-radius: 20px;
      padding: 24px;
      display:flex;
      gap:16px;
      align-items:flex-start;
      transition: box-shadow 0.3s ease;
      box-shadow: 0 10px 40px rgba(33,150,243,0.1);
    }
    .pe-benefits li:hover{
      box-shadow: 0 20px 50px rgba(33,150,243,0.18);
    }
    .pe-benefits .ico{
      width:48px;
      height:48px;
      display:flex;
      align-items:center;
      justify-content:center;
      color: white;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
      border-radius: 12px;
      flex-shrink: 0;
    }
    .pe-benefits .ico svg{
      width: 24px;
      height: 24px;
    }
    .pe-benefits h3{
      margin:0 0 8px 0;
      font-size:20px;
      font-weight:700;
      color: #1a237e;
    }
    .pe-benefits p{
      margin:0;
      color: #546e7a;
      font-size:15px;
      line-height: 1.5;
    }

    /* Título PMEs */
    .pe-title{
      text-align:center;
      margin: 40px 0 30px 0;
    }
    .pe-title h3{
      font-size: clamp(24px, 3vw, 32px);
      color: var(--c-primary-dark);
      margin: 0;
      font-weight:800;
    }

    /* Cards */
    .pe-grid{ 
      display:grid; 
      grid-template-columns:repeat(auto-fit, minmax(350px, 1fr)); 
      gap:24px;
      margin-bottom: 40px;
    }
    .pe-card{
      background: var(--grad-principal);
      border:2px solid rgba(1,112,185,0.2);
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(1,112,185,0.15);
      overflow: hidden;
      display:flex;
      flex-direction:column;
      transition: box-shadow 0.3s ease;
      position: relative;
    }
    .pe-card *{
      background-color: transparent !important;
    }
    .pe-card::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--c-primary-light), #fff, var(--c-primary-light), transparent);
      border-radius: 24px 24px 0 0;
    }
    .pe-card:hover{
      box-shadow: 0 20px 50px rgba(33,150,243,0.3);
    }
    .pe-card.highlight{
      border-color: var(--c-primary-light);
      box-shadow: 0 10px 40px rgba(33,150,243,0.25), 0 0 30px rgba(100,181,246,0.2);
    }
    .pe-card.highlight::before{
      background: linear-gradient(90deg, transparent, #fff, var(--c-primary-light), #fff, transparent);
    }
    .pe-card-head{ 
      padding:20px 24px 12px 24px;
      background: transparent !important;
      background-color: transparent !important;
    }
    .pe-card-head h4{ 
      font-size: clamp(24px, 3.5vw, 32px); 
      margin:8px 0 6px 0; 
      font-weight:800; 
      letter-spacing:.3px;
      color:white !important;
      text-shadow: 
        0 0 12px rgba(0,114,254,0.7),
        0 0 24px rgba(1,112,185,0.4),
        0 2px 4px rgba(0,0,0,0.3);
      background: transparent !important;
      background-color: transparent !important;
    }
    .pe-card-head h4 strong{ 
      font-size:1.2em; 
      color:#fff !important;
      text-shadow: 
        0 0 16px rgba(0,114,254,0.8),
        0 0 32px rgba(1,112,185,0.5),
        0 0 48px rgba(0,114,254,0.2);
      background: transparent !important;
      background-color: transparent !important;
    }
    .pe-card-head p{
      margin:0;
      color:rgba(255,255,255,0.8);
      line-height: 1.4;
      font-size: 15px;
    }
    .badge{
      display:inline-block;
      padding:6px 12px;
      border-radius:20px;
      font-weight:700;
      font-size:12px;
      background:rgba(255,255,255,0.2);
      color:rgba(255,255,255,0.9);
      border:1px solid rgba(255,255,255,0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .badge.gold{
      background: linear-gradient(90deg, #ffd84d, #ffb800);
      color:#262200;
      border:none;
    }

    .pe-includes{ 
      list-style:none; 
      margin:16px 24px; 
      padding:0; 
      display:grid; 
      gap:8px; 
    }
    .pe-includes li{
      display:flex;
      gap:10px;
      align-items:center;
      padding:12px 14px;
      border-radius:12px;
      background: rgba(255,255,255,0.1);
      border:1px solid rgba(255,255,255,0.15);
      color:rgba(255,255,255,0.9);
      transition: all 0.2s ease;
      font-size: 14px;
    }
    .pe-includes li:hover{
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.25);
    }
    .pe-includes li span{
      width:20px;
      height:20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pe-includes li span svg{
      width: 18px;
      height: 18px;
      fill: #fff;
    }

    .pe-card-foot{
      padding: 0 24px 24px 24px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:12px;
      margin-top: auto;
    }
    .pe-whatsapp-btn{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      margin: 20px 24px 24px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    }
    .pe-whatsapp-btn:hover{
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(37,211,102,0.4);
      background: linear-gradient(135deg, #128C7E, #075E54);
    }
    .pe-whatsapp-btn svg{
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }
    .pe-card.highlight .pe-whatsapp-btn{
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #1a1a1a;
      box-shadow: 0 4px 15px rgba(255,165,0,0.4);
    }
    .pe-card.highlight .pe-whatsapp-btn:hover{
      background: linear-gradient(135deg, #FFA500, #FF8C00);
      box-shadow: 0 8px 25px rgba(255,165,0,0.5);
    }

    /* ===== PME CAROUSEL DESKTOP ===== */
    .pme-carousel-wrapper{
      position: relative;
      overflow: hidden;
      padding: 0 60px;
      margin: 0 -60px;
    }
    .pme-carousel-wrapper:not(.has-carousel){
      padding: 0;
      margin: 0;
    }
    .pme-carousel-wrapper .pe-grid{
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
    }
    .pme-carousel-wrapper .pe-grid .pe-card{
      flex: 0 0 calc((100% - 24px) / 2);
      min-width: calc((100% - 24px) / 2);
    }
    /* Setas de navegação PME */
    .pme-nav-btn{
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
      border: none;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 20px rgba(1,112,185,0.4);
      transition: all 0.3s ease;
      z-index: 10;
    }
    .pme-nav-btn svg{
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
    }
    .pme-nav-btn:hover{
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 30px rgba(1,112,185,0.5);
    }
    .pme-nav-btn.prev{ left: 10px; }
    .pme-nav-btn.next{ right: 10px; }
    .pme-nav-btn.hidden{ display: none !important; }
    /* Animação pulsante PME */
    .pme-nav-btn.pulse{
      animation: pulse-arrow 1.5s ease-in-out infinite;
    }
    .pme-nav-btn.pulse:hover{
      animation: none;
      transform: translateY(-50%) scale(1.1);
    }
    /* Mostrar setas quando tem carousel */
    .pme-carousel-wrapper.has-carousel .pme-nav-btn{
      display: flex;
    }
    /* Desktop dots PME */
    .pme-desktop-dots{
      display: none;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }
    .pme-carousel-wrapper.has-carousel .pme-desktop-dots{
      display: flex;
    }
    .pme-desktop-dot{
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: 2px solid rgba(1,112,185,0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .pme-desktop-dot.active{
      background: var(--c-primary);
      border-color: var(--c-primary);
      transform: scale(1.2);
    }
    @media (max-width: 980px){
      .pme-carousel-wrapper{
        padding: 0;
        margin: 0;
        overflow: visible;
      }
      .pme-carousel-wrapper.has-carousel .pme-nav-btn{ display: none; }
      .pme-carousel-wrapper.has-carousel .pme-desktop-dots{ display: none; }
      .pme-carousel-wrapper .pe-grid{
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 20px 20px;
        margin: 0 -20px;
        scrollbar-width: none;
        transition: none;
        transform: none !important;
      }
      .pme-carousel-wrapper .pe-grid::-webkit-scrollbar{ display: none; }
      .pme-carousel-wrapper .pe-grid .pe-card{
        flex: 0 0 85%;
        max-width: 380px;
        min-width: 300px;
        scroll-snap-align: center;
      }
    }

    .pe-wrapper .btn{
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      border:none;
      padding:12px 24px;
      border-radius:999px;
      color:#fff;
      font-weight:700;
      letter-spacing:.2px;
      text-decoration:none;
      display:inline-block;
      box-shadow: 0 4px 15px rgba(1,112,185,.4);
      transition: transform .2s ease, box-shadow .2s ease;
      font-family: inherit;
      font-size: 14px;
      min-width: 180px;
      text-align: center;
    }
    .pe-wrapper .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(1,112,185,.5);
    }
    .pe-wrapper .btn.ghost{
      background: white;
      border:2px solid var(--c-primary);
      color: var(--c-primary);
      box-shadow: none;
    }
    .pe-wrapper .btn.ghost:hover{
      background: var(--c-primary);
      color: #fff;
    }

    /* Plan Cards dentro do pe-wrapper (PME) */
    .pme-plans-container{
      width: 100%;
      margin: 0 auto 40px auto;
    }
    .pme-plans-grid{
      display: flex !important;
      justify-content: center !important;
      gap: 24px !important;
      flex-wrap: wrap !important;
      padding: 0 !important;
      background: transparent !important;
    }
    .pe-wrapper .plan-card{
      background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%) !important;
      border: 1px solid rgba(1,112,185,0.15) !important;
      box-shadow: 0 8px 32px rgba(1,112,185,0.12) !important;
    }
    .pe-wrapper .plan-card:hover{
      transform: translateY(-8px) !important;
      box-shadow: 0 16px 48px rgba(1,112,185,0.2) !important;
    }
    .pe-wrapper .plan-card .plan-title,
    .pe-wrapper .plan-card .plan-name,
    .pe-wrapper .plan-card .plan-speed,
    .pe-wrapper .plan-card .plan-features .feat,
    .pe-wrapper .plan-card small{
      color: var(--c-titulo) !important;
    }
    .pe-wrapper .plan-card .plan-btn{
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)) !important;
      color: white !important;
    }
    .pe-wrapper .plan-card .plan-btn:hover{
      background: linear-gradient(135deg, var(--c-primary-light), var(--c-primary)) !important;
    }
    .pe-wrapper .plan-card .chip{
      background: rgba(1,112,185,0.1) !important;
      color: var(--c-primary) !important;
    }

    .sla{
      color: #78909c;
      font-size:12px;
      font-style: italic;
    }

    /* Split corporativo */
    .pe-split{
      margin-top:40px;
      display:grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap:32px;
      align-items:center;
      background: white;
      border:1px solid rgba(33,150,243,0.2);
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(33,150,243,0.12);
      overflow: hidden;
      position: relative;
    }
    .pe-split::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light), var(--c-primary));
      border-radius: 24px 24px 0 0;
    }
    .pe-split-text{ 
      padding: clamp(24px, 4vw, 40px);
    }
    .pe-split-text h3{
      margin:0 0 16px 0;
      font-size: clamp(24px, 3vw, 32px);
      color: var(--c-primary-dark);
      font-weight:800;
    }
    .pe-split-text p{
      margin:0 0 20px 0;
      color: #546e7a;
      line-height: 1.6;
    }
    .pe-list{
      list-style: none;
      padding:0;
      margin:0 0 24px 0;
      display:grid;
      gap:12px;
    }
    .pe-list li{
      padding-left:24px;
      position:relative;
      color: #455a64;
      line-height: 1.5;
    }
    .pe-list li::before{
      content:"•";
      position:absolute;
      left:8px;
      color: var(--c-primary);
      font-size: 18px;
    }

    .pe-actions{ 
      display:flex; 
      gap:16px; 
      flex-wrap:wrap;
    }
    .pe-split-media{ 
      margin:0; 
      display:flex;
      align-items:center;
      justify-content:center;
      height:100%;
      min-height: 300px;
    }
    .pe-split-media img{ 
      width:100%; 
      height:100%; 
      object-fit:cover; 
      display:block;
    }
    .pe-split-media > div{
      border-radius: 0 24px 24px 0;
    }

    /* Responsivo */
    @media (max-width: 980px){
      .pe-benefits{ 
        grid-template-columns:1fr;
        gap: 16px;
      }
      .pe-grid{ 
        grid-template-columns:1fr;
        gap: 20px;
      }
      .pe-split{ 
        grid-template-columns:1fr;
        gap: 0;
      }
      .pe-split-media{
        min-height: 250px;
      }
    }
    @media (max-width: 640px){
      .pe-card-head{
        padding: 24px 20px 12px 20px;
        text-align: center;
      }
      .pe-card-head p{
        text-align: center;
      }
      .pe-includes{
        margin: 16px 20px;
      }
      .pe-card-foot{
        padding: 0 20px 24px 20px;
      }
      .pe-wrapper .btn{
        width: 100%;
        text-align: center;
      }
    }

    /* PME Plans Cards Responsivo */
    @media (max-width: 980px){
      .pme-plans-grid{
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        padding: 16px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .pme-plans-grid::-webkit-scrollbar{
        display: none;
      }
      .pme-plans-container{
        overflow-x: auto;
        margin: 0 -16px 40px -16px;
        padding: 0;
      }
      .pme-plans-grid .plan-card{
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        text-align: center !important;
      }
      .pme-plans-grid .plan-card .plan-title,
      .pme-plans-grid .plan-card .plan-name,
      .pme-plans-grid .plan-card .plan-speed,
      .pme-plans-grid .plan-card .plan-brinde,
      .pme-plans-grid .plan-card .plan-cta{
        text-align: center !important;
      }
      .pme-plans-grid .plan-card .plan-features{
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
      }
      .pme-plans-grid .plan-card .plan-features .feat{
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 8px 12px !important;
        line-height: 1.4 !important;
      }
    }

    /* ============================================
       MODAL SELEÇÃO DE CIDADE - ESTILO CLARO
       ============================================ */
    /* Bloqueia scroll quando modal de cidade está aberto */
    body:not(.cidade-selecionada) {
      overflow: hidden !important;
    }
    .cidade-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.4s ease;
      overflow: hidden;
    }
    .cidade-overlay.hidden {
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
    }
    .cidade-modal {
      background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
      border: none;
      border-radius: 24px;
      padding: 40px 32px;
      width: 90%;
      max-width: 480px;
      box-shadow: 0 20px 60px rgba(1, 112, 185, 0.4);
      text-align: center;
      animation: modalEnter 0.5s ease;
    }
    @keyframes modalEnter {
      from { transform: scale(0.9) translateY(20px); opacity: 0; }
      to { transform: scale(1) translateY(0); opacity: 1; }
    }
    .cidade-modal-logo {
      width: 100px;
      margin: 0 auto 20px;
      filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    }
    .cidade-modal h2 {
      color: #fff;
      font-size: 1.5rem;
      margin: 0 0 6px;
      font-weight: 700;
    }
    .cidade-modal .cidade-subtitulo {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin: 0 0 24px;
    }
    /* Campo de busca */
    .cidade-cep-wrapper {
      position: relative;
      margin-bottom: 16px;
    }
    .cidade-cep-input {
      width: 100%;
      padding: 16px 50px 16px 20px;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0;
      text-align: left;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }
    .cidade-cep-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0;
      font-weight: 400;
    }
    .cidade-cep-input:focus {
      outline: none;
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255,255,255,0.2);
    }
    .cidade-cep-input.error {
      border-color: #ff4757;
      animation: shake 0.4s ease;
    }
    .cidade-cep-input.success {
      border-color: #2ed573;
    }
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-8px); }
      75% { transform: translateX(8px); }
    }
    .cidade-cep-icon {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.6);
      pointer-events: none;
    }
    .cidade-cep-icon svg {
      width: 22px;
      height: 22px;
    }
    .cidade-cep-icon.loading svg {
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      from { transform: translateY(-50%) rotate(0deg); }
      to { transform: translateY(-50%) rotate(360deg); }
    }
    /* Autocomplete dropdown */
    .cidade-autocomplete {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      max-height: 280px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      margin-top: 4px;
    }
    .cidade-autocomplete.active {
      display: block;
    }
    .cidade-autocomplete-item {
      padding: 12px 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid #eee;
      transition: background 0.2s;
    }
    .cidade-autocomplete-item:last-child {
      border-bottom: none;
    }
    .cidade-autocomplete-item:hover {
      background: #f0f7ff;
    }
    .cidade-autocomplete-item.selected {
      background: #e3f2fd;
    }
    .cidade-autocomplete-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cidade-autocomplete-icon svg {
      width: 16px;
      height: 16px;
      fill: #fff;
    }
    .cidade-autocomplete-text {
      flex: 1;
      min-width: 0;
    }
    .cidade-autocomplete-nome {
      font-size: 0.95rem;
      font-weight: 600;
      color: #333;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cidade-autocomplete-tipo {
      font-size: 0.75rem;
      color: #666;
      margin-top: 2px;
    }
    .cidade-autocomplete-badge {
      font-size: 0.7rem;
      padding: 3px 8px;
      border-radius: 20px;
      background: #e8f5e9;
      color: #2e7d32;
      font-weight: 600;
    }
    .cidade-autocomplete-badge.google {
      background: #e3f2fd;
      color: #1565c0;
    }
    /* Mensagem de erro/resultado */
    .cidade-feedback {
      min-height: 24px;
      margin-bottom: 16px;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }
    .cidade-feedback.error {
      color: #ffb3b3;
    }
    .cidade-feedback.success {
      color: #90EE90;
    }
    /* Resultado da busca */
    .cidade-resultado {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 20px;
      display: none;
    }
    .cidade-resultado.show {
      display: block;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .cidade-resultado-local {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .cidade-resultado-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cidade-resultado-icon svg {
      width: 20px;
      height: 20px;
      color: #fff;
    }
    .cidade-resultado-info {
      text-align: left;
      flex: 1;
    }
    .cidade-resultado-cidade {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0;
    }
    .cidade-resultado-uf {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
    }
    .cidade-resultado-check {
      color: #90EE90;
    }
    .cidade-resultado-check svg {
      width: 28px;
      height: 28px;
    }
    /* Botão confirmar */
    .cidade-btn-confirmar {
      width: 100%;
      padding: 16px 24px;
      background: #fff;
      border: none;
      border-radius: 12px;
      color: var(--c-primary);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .cidade-btn-confirmar:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .cidade-btn-confirmar:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .cidade-btn-confirmar svg {
      width: 20px;
      height: 20px;
    }
    /* Footer */
    .cidade-footer {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .cidade-footer small {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.75rem;
    }
    .cidade-footer a {
      color: #fff;
      text-decoration: underline;
    }
    /* Esconder lista de cidades e divisor */
    .cidade-divisor,
    .cidade-rapidas-titulo,
    .cidade-lista {
      display: none;
    }
    /* Resultado sem cobertura */
    .cidade-resultado.sem-cobertura {
      border-color: rgba(255, 180, 180, 0.3);
      background: rgba(255, 100, 100, 0.1);
    }
    .cidade-resultado.sem-cobertura .cidade-resultado-check {
      color: #ffb3b3;
    }
    .cidade-resultado.sem-cobertura .cidade-resultado-check svg {
      display: none;
    }
    .cidade-resultado.sem-cobertura .cidade-resultado-check::before {
      content: '!';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: rgba(255, 180, 180, 0.3);
      border-radius: 50%;
      font-weight: bold;
      font-size: 18px;
    }
    /* Aviso de sem cobertura no topo */
    .aviso-sem-cobertura {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
      color: #fff;
      z-index: 99998;
      padding: 12px 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      animation: slideDown 0.3s ease;
    }
    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }
    .aviso-conteudo {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
    }
    .aviso-conteudo svg {
      flex-shrink: 0;
    }
    .aviso-conteudo span {
      flex: 1;
    }
    .aviso-conteudo a {
      color: #fff;
      font-weight: 600;
      text-decoration: underline;
    }
    .aviso-conteudo button {
      background: rgba(255,255,255,0.2);
      border: none;
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .aviso-conteudo button:hover {
      background: rgba(255,255,255,0.3);
    }
    /* Badge no header */
    .cidade-selecionada-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 1);
      border-radius: 25px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--c-primary);
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .cidade-selecionada-badge:hover {
      background: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .cidade-selecionada-badge svg {
      width: 14px;
      height: 14px;
      fill: var(--c-primary);
    }
    .cidade-selecionada-badge .badge-alterar {
      font-size: 0.7rem;
      color: var(--c-primary-light);
      margin-left: 4px;
    }
    /* Preços dinâmicos nos cards */
    .plan-price-tag {
      margin: 16px 0;
      padding: 12px;
      background: rgba(0, 168, 255, 0.05);
      border-radius: 12px;
      min-height: 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }
    .plan-price-value {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .plan-price-value small {
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
    }
    .plan-price-periodo {
      font-size: 0.8rem;
      color: var(--c-muted);
    }
    /* Preços ocultos antes de selecionar cidade */
    .plan-price-tag {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    body.cidade-selecionada .plan-price-tag {
      opacity: 1;
      transform: translateY(0);
    }
    /* Placeholder de preço antes da seleção */
    .plan-price-placeholder {
      margin: 16px 0;
      padding: 16px 12px;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
      border: 2px dashed rgba(255, 255, 255, 0.4);
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      animation: pulsePlaceholder 2s ease-in-out infinite;
      min-height: 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }
    .plan-price-placeholder:hover {
      background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
      border-color: rgba(255, 255, 255, 0.6);
      transform: scale(1.02);
    }
    @keyframes pulsePlaceholder {
      0%, 100% { border-color: rgba(255, 255, 255, 0.4); }
      50% { border-color: rgba(255, 255, 255, 0.7); }
    }
    .plan-price-placeholder .placeholder-icon {
      font-size: 1.5rem;
      margin-bottom: 6px;
      display: block;
    }
    .plan-price-placeholder span {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.85rem;
      font-weight: 600;
      display: block;
    }
    .plan-price-placeholder .placeholder-cta {
      color: #fbbf24;
      font-size: 0.75rem;
      font-weight: 700;
      margin-top: 6px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    body.cidade-selecionada .plan-price-placeholder {
      display: none;
    }
    /* Responsivo */
    @media (max-width: 600px) {
      .cidade-modal {
        padding: 28px 20px;
        margin: 16px;
        border-radius: 20px;
      }
      .cidade-modal h2 {
        font-size: 1.3rem;
      }
      .cidade-lista {
        grid-template-columns: 1fr;
      }
      .cidade-cep-input {
        font-size: 1rem;
        padding: 14px 45px 14px 16px;
      }
    }

    /* ============================================
       MODAL DE BRINDES
       ============================================ */
    .brinde-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 15, 32, 0.95);
      z-index: 99998;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .brinde-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .brinde-modal {
      background: linear-gradient(145deg, #0d1526, #0a0f20);
      border: 1px solid rgba(255, 196, 0, 0.3);
      border-radius: 24px;
      padding: 32px;
      width: 90%;
      max-width: 500px;
      max-height: 85vh;
      overflow-y: auto;
      box-shadow: 0 0 60px rgba(255, 196, 0, 0.2);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s ease;
    }
    .brinde-overlay.active .brinde-modal {
      transform: scale(1) translateY(0);
    }
    .brinde-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .brinde-modal-title {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brinde-modal-title .icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #ffd700, #ffaa00);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 900;
      color: #102000;
    }
    .brinde-modal-title h3 {
      margin: 0;
      color: #fff;
      font-size: 1.3rem;
    }
    .brinde-modal-title h3 span {
      display: block;
      font-size: 0.8rem;
      color: var(--c-primary-light);
      font-weight: 600;
    }
    .brinde-close {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brinde-close:hover {
      background: rgba(255, 59, 48, 0.3);
      transform: rotate(90deg);
    }
    .brinde-lista {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .brinde-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
    }
    .brinde-item:hover {
      background: rgba(255, 196, 0, 0.05);
      border-color: rgba(255, 196, 0, 0.2);
      transform: translateX(5px);
    }
    .brinde-item-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .brinde-item-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    .brinde-item-name {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0;
    }
    .brinde-item-desc {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
    }
    @media (max-width: 600px) {
      .brinde-modal {
        padding: 24px 20px;
        margin: 16px;
      }
      .brinde-modal-title h3 {
        font-size: 1.1rem;
      }
      .brinde-item {
        padding: 16px;
      }
    }

    /* ============================================
       MODAL/GAVETA DE SELEÇÃO DE BRINDES
       ============================================ */
    .selecao-brinde-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .selecao-brinde-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Modal Desktop */
    .selecao-brinde-modal {
      background: #fff;
      border-radius: 24px;
      width: 90%;
      max-width: 720px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
      transform: scale(0.9) translateY(30px);
      transition: transform 0.3s ease;
    }
    .selecao-brinde-overlay.active .selecao-brinde-modal {
      transform: scale(1) translateY(0);
    }

    /* Drag handle - só aparece no mobile */
    .selecao-brinde-drag {
      display: none;
    }

    .selecao-brinde-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 24px 16px;
      border-bottom: 1px solid var(--c-borda);
    }
    .selecao-brinde-title {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .selecao-brinde-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(1, 112, 185, 0.3);
    }
    .selecao-brinde-icon svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }
    .selecao-brinde-title h3 {
      margin: 0;
      font-size: 1.4rem;
      color: var(--c-titulo);
    }
    .selecao-brinde-title p {
      margin: 4px 0 0;
      font-size: 0.9rem;
      color: var(--c-primary);
      font-weight: 600;
    }
    .selecao-brinde-close {
      width: 40px;
      height: 40px;
      border: none;
      background: var(--c-bg-section);
      border-radius: 50%;
      font-size: 1.8rem;
      color: var(--c-muted);
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .selecao-brinde-close:hover {
      background: var(--c-erro);
      color: #fff;
    }

    .selecao-brinde-info {
      padding: 16px 24px;
      margin: 0;
      font-size: 0.95rem;
      color: var(--c-corpo);
      background: var(--c-bg-section);
    }

    /* Grid de brindes */
    .selecao-brinde-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      padding: 24px;
    }
    @media (max-width: 600px) {
      .selecao-brinde-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .selecao-brinde-card {
      background: #fff;
      border: 2px solid var(--c-borda);
      border-radius: 16px;
      padding: 20px;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
      text-align: center;
    }
    .selecao-brinde-card:hover {
      border-color: var(--c-primary-light);
      box-shadow: 0 8px 24px rgba(1, 112, 185, 0.12);
    }
    .selecao-brinde-card.selected {
      border-color: var(--c-primary);
      background: linear-gradient(180deg, rgba(1, 112, 185, 0.05) 0%, rgba(1, 112, 185, 0.02) 100%);
      box-shadow: 0 8px 24px rgba(1, 112, 185, 0.15);
    }
    .selecao-brinde-card.selected::after {
      content: '';
      position: absolute;
      top: 12px;
      right: 12px;
      width: 24px;
      height: 24px;
      background: var(--c-sucesso);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
      background-size: 16px;
      background-position: center;
      background-repeat: no-repeat;
    }

    .selecao-brinde-card-img {
      width: 80px;
      height: 80px;
      margin: 0 auto 12px;
      object-fit: contain;
      border-radius: 12px;
    }
    .selecao-brinde-card-nome {
      font-size: 1rem;
      font-weight: 700;
      color: var(--c-titulo);
      margin: 0 0 4px;
    }
    .selecao-brinde-card-desc {
      font-size: 0.8rem;
      color: var(--c-muted);
      margin: 0;
    }

    /* Footer */
    .selecao-brinde-footer {
      padding: 20px 24px 24px;
      border-top: 1px solid var(--c-borda);
      text-align: center;
    }
    .selecao-brinde-btn-confirmar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 32px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(1, 112, 185, 0.3);
    }
    .selecao-brinde-btn-confirmar:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(1, 112, 185, 0.4);
    }
    .selecao-brinde-btn-confirmar:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    .selecao-brinde-btn-confirmar svg {
      width: 20px;
      height: 20px;
    }
    .selecao-brinde-footer small {
      display: block;
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--c-muted);
    }

    /* ============================================
       GAVETA MOBILE (Bottom Sheet)
       ============================================ */
    @media (max-width: 768px) {
      .selecao-brinde-overlay {
        align-items: flex-end;
      }
      .selecao-brinde-modal {
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
      }
      .selecao-brinde-overlay.active .selecao-brinde-modal {
        transform: translateY(0);
      }

      /* Drag handle visível no mobile */
      .selecao-brinde-drag {
        display: block;
        width: 40px;
        height: 5px;
        background: var(--c-borda);
        border-radius: 3px;
        margin: 12px auto 0;
      }

      .selecao-brinde-header {
        padding: 12px 20px 16px;
      }
      .selecao-brinde-icon {
        width: 44px;
        height: 44px;
      }
      .selecao-brinde-icon svg {
        width: 24px;
        height: 24px;
      }
      .selecao-brinde-title h3 {
        font-size: 1.15rem;
      }
      .selecao-brinde-title p {
        font-size: 0.85rem;
      }
      .selecao-brinde-close {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
      }

      .selecao-brinde-info {
        padding: 12px 20px;
        font-size: 0.9rem;
      }

      .selecao-brinde-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px 20px;
      }
      .selecao-brinde-card {
        padding: 16px 12px;
      }
      .selecao-brinde-card-img {
        width: 60px;
        height: 60px;
      }
      .selecao-brinde-card-nome {
        font-size: 0.9rem;
      }
      .selecao-brinde-card.selected::after {
        width: 20px;
        height: 20px;
        top: 8px;
        right: 8px;
        background-size: 12px;
      }

      .selecao-brinde-footer {
        padding: 16px 20px 24px;
      }
      .selecao-brinde-btn-confirmar {
        padding: 14px 24px;
        font-size: 1rem;
      }
    }

    /* Animação de entrada suave para os cards */
    .selecao-brinde-card {
      animation: fadeInUp 0.4s ease backwards;
    }
    .selecao-brinde-card:nth-child(1) { animation-delay: 0.1s; }
    .selecao-brinde-card:nth-child(2) { animation-delay: 0.15s; }
    .selecao-brinde-card:nth-child(3) { animation-delay: 0.2s; }
    .selecao-brinde-card:nth-child(4) { animation-delay: 0.25s; }
    .selecao-brinde-card:nth-child(5) { animation-delay: 0.3s; }
    .selecao-brinde-card:nth-child(6) { animation-delay: 0.35s; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ============================================
       SEÇÃO DE COMBOS NO MODAL
       ============================================ */
    .selecao-combos-section {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px dashed rgba(255,255,255,0.2);
    }
    .selecao-combos-title {
      font-size: 1rem;
      color: #10b981;
      margin-bottom: 16px;
      margin-left: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
    }
    .selecao-combos-title svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }
    /* Combo Card Modal - Fundo branco, textos azuis */
    #selecaoCombosGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
      gap: 12px;
      justify-content: center;
    }
    .combo-card-modal {
      background: #ffffff;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .combo-card-modal:hover {
      border-color: #1a3a5c;
      box-shadow: 0 6px 20px rgba(26,58,92,0.15);
    }
    .combo-card-modal.selected {
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
      background: #f0fdf4;
    }
    .combo-card-modal.selected::after {
      content: '✓';
      position: absolute;
      top: 10px;
      right: 10px;
      width: 22px;
      height: 22px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: white;
      font-weight: bold;
    }
    .combo-card-modal-nome {
      font-size: 0.95rem;
      font-weight: 700;
      color: #1a3a5c;
      margin: 0 0 4px 0;
    }
    .combo-card-modal-desc {
      font-size: 0.75rem;
      color: #64748b;
      line-height: 1.3;
      margin: 0 0 10px 0;
    }
    .combo-card-modal-itens {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }
    .combo-card-modal .combo-card-modal-itens .combo-card-modal-item {
      width: 100%;
      height: 45px;
      border-radius: 10px;
      background: rgba(26, 58, 92, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      border: 1px solid rgba(26, 58, 92, 0.25);
      box-shadow: 0 2px 12px rgba(26, 58, 92, 0.1);
    }
    .combo-card-modal .combo-card-modal-itens .combo-card-modal-item img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .combo-card-modal .combo-card-modal-itens .combo-card-modal-item.text-item {
      width: auto;
      height: auto;
      padding: 5px 10px;
      background: #1a3a5c;
      border: none;
      font-size: 0.7rem;
      font-weight: 600;
      color: #ffffff;
    }
    .combo-card-modal-badge {
      display: inline-block;
      padding: 4px 8px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: #1a1a1a;
      font-size: 0.6rem;
      font-weight: 800;
      border-radius: 12px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    @media (max-width: 600px) {
      #selecaoCombosGrid {
        grid-template-columns: 1fr;
      }
      .combo-card-modal {
        padding: 12px;
      }
      .combo-card-modal-nome {
        font-size: 0.9rem;
      }
      .combo-card-modal .combo-card-modal-itens .combo-card-modal-item {
        height: 40px;
      }
    }

    /* ============================================
       MODAL 2ª VIA DE BOLETO - STEP BY STEP
       ============================================ */
    .boleto-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .boleto-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .boleto-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow: hidden;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .boleto-overlay.active .boleto-modal {
      transform: scale(1) translateY(0);
    }
    .boleto-header {
      background: var(--grad-principal);
      color: #fff;
      padding: 20px 24px;
      position: relative;
    }
    .boleto-header h2 {
      font-size: 1.3rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .boleto-header h2 svg {
      width: 26px;
      height: 26px;
    }
    .boleto-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.2);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .boleto-close:hover {
      background: rgba(255,255,255,0.3);
    }
    /* Steps Indicator */
    .boleto-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 24px;
      background: var(--c-bg-section);
      border-bottom: 1px solid var(--c-borda);
      gap: 8px;
    }
    .boleto-step {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .boleto-step-number {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--c-borda);
      color: var(--c-muted);
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .boleto-step.active .boleto-step-number {
      background: var(--c-primary);
      color: #fff;
    }
    .boleto-step.completed .boleto-step-number {
      background: var(--c-sucesso);
      color: #fff;
    }
    .boleto-step-label {
      font-size: 0.8rem;
      color: var(--c-muted);
      font-weight: 500;
      display: none;
    }
    .boleto-step.active .boleto-step-label {
      color: var(--c-primary);
      display: block;
    }
    .boleto-step-line {
      width: 30px;
      height: 2px;
      background: var(--c-borda);
      transition: background 0.3s;
    }
    .boleto-step.completed + .boleto-step-line,
    .boleto-step.completed ~ .boleto-step-line {
      background: var(--c-sucesso);
    }
    /* Body */
    .boleto-body {
      padding: 0;
      overflow: hidden;
      flex: 1;
      position: relative;
    }
    /* Step Content */
    .boleto-step-content {
      display: none;
      padding: 24px;
      animation: stepFadeIn 0.3s ease;
      overflow-y: auto;
      max-height: calc(90vh - 180px);
    }
    .boleto-step-content.active {
      display: block;
    }
    @keyframes stepFadeIn {
      from { opacity: 0; transform: translateX(20px); }
      to { opacity: 1; transform: translateX(0); }
    }
    /* Step Title */
    .boleto-step-title {
      text-align: center;
      margin-bottom: 24px;
    }
    .boleto-step-title h3 {
      font-size: 1.2rem;
      color: var(--c-titulo);
      margin: 0 0 6px 0;
    }
    .boleto-step-title p {
      color: var(--c-muted);
      margin: 0;
      font-size: 0.9rem;
    }
    /* Input Group */
    .boleto-input-group {
      margin-bottom: 20px;
    }
    .boleto-input-group label {
      display: block;
      font-weight: 600;
      color: var(--c-titulo);
      margin-bottom: 8px;
      font-size: 0.95rem;
    }
    .boleto-input-wrapper {
      position: relative;
    }
    .boleto-input-wrapper input {
      width: 100%;
      padding: 16px 16px 16px 50px;
      border: 2px solid var(--c-borda);
      border-radius: 12px;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 1px;
      transition: border-color 0.2s, box-shadow 0.2s;
      color: var(--c-titulo);
      text-align: center;
    }
    .boleto-input-wrapper input:focus {
      outline: none;
      border-color: var(--c-primary);
      box-shadow: 0 0 0 4px rgba(1,112,185,0.1);
    }
    .boleto-input-wrapper input.error {
      border-color: var(--c-erro);
    }
    .boleto-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--c-muted);
    }
    .boleto-input-icon svg {
      width: 22px;
      height: 22px;
    }
    /* Buttons */
    .boleto-btn {
      width: 100%;
      padding: 14px 24px;
      background: var(--grad-principal);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: transform 0.15s, filter 0.2s;
    }
    .boleto-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }
    .boleto-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    .boleto-btn svg {
      width: 20px;
      height: 20px;
    }
    .boleto-btn-secondary {
      background: #fff;
      color: var(--c-primary);
      border: 2px solid var(--c-primary);
    }
    .boleto-btn-secondary:hover:not(:disabled) {
      background: var(--c-bg-section);
    }
    /* Loading */
    .boleto-loading {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .boleto-loading.show {
      display: block;
    }
    .boleto-spinner {
      width: 48px;
      height: 48px;
      border: 4px solid var(--c-borda);
      border-top-color: var(--c-primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin: 0 auto 16px;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .boleto-loading p {
      color: var(--c-muted);
      margin: 0;
    }
    /* Error */
    .boleto-error {
      display: none;
      background: #FEE2E2;
      border: 1px solid #FECACA;
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 20px;
      color: #991B1B;
    }
    .boleto-error.show {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .boleto-error svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    .boleto-error p {
      margin: 0;
      font-size: 0.9rem;
    }
    /* Cliente Info Card */
    .boleto-cliente-card {
      background: linear-gradient(135deg, var(--c-bg-section) 0%, #fff 100%);
      border: 2px solid var(--c-borda);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .boleto-cliente-avatar {
      width: 56px;
      height: 56px;
      background: var(--grad-principal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(1,112,185,0.3);
    }
    .boleto-cliente-dados {
      flex: 1;
      min-width: 0;
    }
    .boleto-cliente-card h4 {
      margin: 0 0 2px 0;
      color: var(--c-titulo);
      font-size: 1.05rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .boleto-cliente-cpf {
      display: block;
      color: var(--c-muted);
      font-size: 0.85rem;
      margin-bottom: 8px;
    }
    .boleto-cliente-contato {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 8px;
    }
    .boleto-cliente-contato span {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--c-primary);
      font-size: 0.8rem;
    }
    .boleto-cliente-contato span:empty {
      display: none;
    }
    .boleto-cliente-endereco {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      color: var(--c-primary);
      font-size: 0.8rem;
      line-height: 1.4;
      background: rgba(1,112,185,0.08);
      padding: 8px 10px;
      border-radius: 8px;
    }
    .boleto-cliente-endereco:empty {
      display: none;
    }
    .boleto-cliente-endereco svg {
      flex-shrink: 0;
      color: var(--c-primary);
    }
    .boleto-cliente-endereco span {
      color: var(--c-primary);
    }
    /* Serviços Lista */
    .boleto-servicos-lista {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }
    .boleto-servico-card {
      background: #fff;
      border: 2px solid var(--c-borda);
      border-radius: 12px;
      padding: 16px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .boleto-servico-card:hover {
      border-color: var(--c-primary-light);
      background: var(--c-bg-section);
      transform: translateY(-2px);
    }
    .boleto-servico-card.selected {
      border-color: var(--c-primary);
      background: rgba(1,112,185,0.08);
      box-shadow: 0 4px 12px rgba(1,112,185,0.15);
    }
    .boleto-servico-radio {
      width: 22px;
      height: 22px;
      border: 2px solid var(--c-borda);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      margin-top: 2px;
    }
    .boleto-servico-card.selected .boleto-servico-radio {
      border-color: var(--c-primary);
      background: var(--c-primary);
    }
    .boleto-servico-card.selected .boleto-servico-radio::after {
      content: '';
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
    }
    .boleto-servico-info {
      flex: 1;
      min-width: 0;
    }
    .boleto-servico-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 4px;
    }
    .boleto-servico-info strong {
      color: var(--c-titulo);
      font-size: 1rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .boleto-servico-contrato {
      display: block;
      color: var(--c-muted);
      font-size: 0.8rem;
      margin-bottom: 8px;
    }
    .boleto-servico-endereco {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      color: var(--c-primary);
      font-size: 0.85rem;
      line-height: 1.4;
      margin-bottom: 6px;
      background: rgba(1,112,185,0.08);
      padding: 8px 10px;
      border-radius: 8px;
    }
    .boleto-servico-endereco svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--c-primary);
    }
    .boleto-servico-endereco span {
      color: var(--c-primary);
      font-size: 0.85rem;
    }
    .boleto-servico-data {
      display: block;
      color: var(--c-muted);
      font-size: 0.75rem;
      font-style: italic;
    }
    .boleto-servico-status {
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .boleto-servico-status.ativo {
      background: #D1FAE5;
      color: #065F46;
    }
    .boleto-servico-status.inativo {
      background: #FEE2E2;
      color: #991B1B;
    }
    /* Navegação entre steps */
    .boleto-nav {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .boleto-nav .boleto-btn {
      flex: 1;
    }
    .boleto-btn-back {
      background: transparent;
      color: var(--c-muted);
      border: 2px solid var(--c-borda);
    }
    .boleto-btn-back:hover:not(:disabled) {
      background: var(--c-bg-section);
      color: var(--c-titulo);
      transform: none;
    }
    /* Filtros de Faturas */
    .boleto-filtros {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px;
    }
    .boleto-filtro-btn {
      padding: 8px 16px;
      border: 2px solid var(--c-borda);
      border-radius: 20px;
      background: #fff;
      color: var(--c-corpo);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .boleto-filtro-btn:hover {
      border-color: var(--c-primary-light);
    }
    .boleto-filtro-btn.active {
      background: var(--c-primary);
      border-color: var(--c-primary);
      color: #fff;
    }
    .boleto-filtro-btn .count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      background: rgba(0,0,0,0.1);
      border-radius: 10px;
      font-size: 0.75rem;
      margin-left: 6px;
    }
    .boleto-filtro-btn.active .count {
      background: rgba(255,255,255,0.2);
    }
    /* Lista de Faturas */
    .boleto-faturas {
      display: none;
    }
    .boleto-faturas.show {
      display: block;
    }
    .boleto-faturas-empty {
      text-align: center;
      padding: 32px 20px;
      color: var(--c-muted);
    }
    .boleto-faturas-empty svg {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
      opacity: 0.5;
    }
    .boleto-fatura-card {
      background: #fff;
      border: 1px solid var(--c-borda);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 12px;
      transition: box-shadow 0.2s;
    }
    .boleto-fatura-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .boleto-fatura-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }
    .boleto-fatura-valor {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--c-titulo);
    }
    .boleto-fatura-status {
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .boleto-fatura-status.aberta {
      background: #FEF3C7;
      color: #92400E;
    }
    .boleto-fatura-status.vencida {
      background: #FEE2E2;
      color: #991B1B;
    }
    .boleto-fatura-status.paga {
      background: #D1FAE5;
      color: #065F46;
    }
    .boleto-fatura-info {
      display: flex;
      gap: 20px;
      color: var(--c-muted);
      font-size: 0.85rem;
      margin-bottom: 12px;
    }
    .boleto-fatura-info span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .boleto-fatura-info svg {
      width: 16px;
      height: 16px;
    }
    /* Código de barras no card */
    .boleto-codigo-barras {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 12px;
      margin-top: 12px;
    }
    .boleto-codigo-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #6c757d;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .boleto-codigo-label svg {
      width: 14px;
      height: 14px;
    }
    .boleto-codigo-valor {
      font-family: 'Courier New', monospace;
      font-size: 0.85rem;
      font-weight: 600;
      color: #212529;
      background: #fff;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid #dee2e6;
      word-break: break-all;
      line-height: 1.5;
      margin-bottom: 10px;
    }
    .boleto-codigo-copiar {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 16px;
      background: var(--c-primary);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .boleto-codigo-copiar:hover {
      background: var(--c-primary-dark, #0056b3);
      transform: translateY(-1px);
    }
    .boleto-codigo-copiar svg {
      width: 16px;
      height: 16px;
    }
    .boleto-codigo-copiar.copiado {
      background: #28a745;
    }

    .boleto-fatura-actions {
      display: flex;
      gap: 10px;
    }
    .boleto-fatura-btn {
      flex: 1;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s;
      text-decoration: none;
    }
    .boleto-fatura-btn svg {
      width: 16px;
      height: 16px;
    }
    .boleto-fatura-btn.primary {
      background: var(--grad-principal);
      color: #fff;
      border: none;
    }
    .boleto-fatura-btn.primary:hover {
      filter: brightness(1.05);
    }
    .boleto-fatura-btn.secondary {
      background: #fff;
      color: var(--c-primary);
      border: 2px solid var(--c-primary);
    }
    .boleto-fatura-btn.secondary:hover {
      background: var(--c-bg-section);
    }
    .boleto-fatura-btn.pix {
      background: #00B37E;
      color: #fff;
      border: none;
    }
    .boleto-fatura-btn.pix:hover {
      filter: brightness(1.05);
    }

    /* ===== MODAL PIX ===== */
    .pix-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      z-index: 999999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .pix-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .pix-modal {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 400px;
      overflow: hidden;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }
    .pix-modal-overlay.active .pix-modal {
      transform: scale(1);
    }
    .pix-modal-header {
      background: #00B37E;
      color: #fff;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .pix-modal-header h3 {
      margin: 0;
      font-size: 1.1rem;
    }
    .pix-modal-close {
      background: rgba(255,255,255,0.2);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
    }
    .pix-modal-body {
      padding: 24px;
    }
    .pix-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 40px 0;
    }
    .pix-content {
      text-align: center;
    }
    .pix-qrcode {
      margin-bottom: 16px;
      display: flex;
      justify-content: center;
    }
    .pix-qrcode img {
      width: 200px;
      height: 200px;
      border: 4px solid #00B37E;
      border-radius: 12px;
    }
    .pix-info {
      margin-bottom: 16px;
    }
    .pix-valor {
      font-size: 1.4rem;
      font-weight: 700;
      color: #00B37E;
      margin: 0 0 4px 0;
    }
    .pix-devedor {
      font-size: 0.9rem;
      color: var(--c-muted);
      margin: 0;
    }
    .pix-codigo {
      text-align: left;
    }
    .pix-codigo label {
      font-size: 0.85rem;
      color: var(--c-muted);
      display: block;
      margin-bottom: 8px;
    }
    .pix-codigo-wrapper {
      display: flex;
      gap: 8px;
    }
    .pix-codigo-wrapper input {
      flex: 1;
      padding: 12px;
      border: 2px solid var(--c-borda);
      border-radius: 8px;
      font-size: 0.75rem;
      font-family: monospace;
    }
    .pix-copiar-btn {
      background: #00B37E;
      color: #fff;
      border: none;
      padding: 12px 16px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .pix-copiar-btn:hover {
      filter: brightness(1.05);
    }
    .pix-copiar-btn.copiado {
      background: var(--c-sucesso);
    }
    .pix-error {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 20px 0;
      color: var(--c-erro);
    }
    .pix-error p {
      margin: 0;
      text-align: center;
    }

    /* Serviço selecionado resumo */
    .boleto-servico-resumo {
      background: var(--c-bg-section);
      border: 1px solid var(--c-borda);
      border-radius: 10px;
      padding: 12px 16px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .boleto-servico-resumo svg {
      width: 20px;
      height: 20px;
      color: var(--c-primary);
    }
    .boleto-servico-resumo span {
      color: var(--c-titulo);
      font-weight: 600;
      font-size: 0.9rem;
    }
    /* Responsivo */
    @media (max-width: 600px) {
      .boleto-modal {
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
      }
      .boleto-header {
        padding: 16px 20px;
      }
      .boleto-header h2 {
        font-size: 1.1rem;
      }
      .boleto-steps {
        padding: 12px 16px;
      }
      .boleto-step-label {
        display: none !important;
      }
      .boleto-step-content {
        padding: 20px;
        max-height: calc(95vh - 160px);
      }
      .boleto-cliente-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
      }
      .boleto-fatura-info {
        flex-direction: column;
        gap: 8px;
      }
      .boleto-fatura-actions {
        flex-direction: column;
      }
      .boleto-nav {
        flex-direction: column-reverse;
      }
    }

    /* ============================================
       MODAL OUVIDORIA
       ============================================ */
    .ouvidoria-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .ouvidoria-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .ouvidoria-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow: hidden;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .ouvidoria-overlay.active .ouvidoria-modal {
      transform: scale(1) translateY(0);
    }
    .ouvidoria-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      padding: 20px 24px;
      position: relative;
    }
    .ouvidoria-header h2 {
      font-size: 1.3rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ouvidoria-header h2 svg {
      width: 26px;
      height: 26px;
    }
    .ouvidoria-header p {
      margin: 6px 0 0;
      font-size: 0.9rem;
      opacity: 0.9;
    }
    .ouvidoria-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.2);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .ouvidoria-close:hover {
      background: rgba(255,255,255,0.3);
    }
    .ouvidoria-body {
      padding: 24px;
      overflow-y: auto;
      max-height: calc(90vh - 120px);
    }
    .ouvidoria-form-group {
      margin-bottom: 18px;
    }
    .ouvidoria-form-group label {
      display: block;
      font-weight: 600;
      color: var(--c-titulo);
      margin-bottom: 6px;
      font-size: 0.9rem;
    }
    .ouvidoria-form-group input,
    .ouvidoria-form-group select,
    .ouvidoria-form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid var(--c-borda);
      border-radius: 10px;
      font-size: 0.95rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      color: var(--c-titulo);
      font-family: inherit;
    }
    .ouvidoria-form-group input:focus,
    .ouvidoria-form-group select:focus,
    .ouvidoria-form-group textarea:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
    }
    .ouvidoria-form-group textarea {
      resize: vertical;
      min-height: 100px;
    }
    .ouvidoria-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .ouvidoria-tipo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .ouvidoria-tipo-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border: 2px solid var(--c-borda);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 0.85rem;
    }
    .ouvidoria-tipo-item:hover {
      border-color: #667eea;
      background: rgba(102,126,234,0.05);
    }
    .ouvidoria-tipo-item.selected {
      border-color: #667eea;
      background: rgba(102,126,234,0.1);
    }
    .ouvidoria-tipo-item input {
      display: none;
    }
    .ouvidoria-tipo-icon {
      font-size: 1.1rem;
    }
    .ouvidoria-submit {
      width: 100%;
      padding: 14px 24px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: transform 0.15s, filter 0.2s;
      margin-top: 10px;
    }
    .ouvidoria-submit:hover:not(:disabled) {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }
    .ouvidoria-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    .ouvidoria-sucesso {
      text-align: center;
      padding: 40px 20px;
    }
    .ouvidoria-sucesso-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: #fff;
    }
    .ouvidoria-sucesso-icon svg {
      width: 40px;
      height: 40px;
    }
    .ouvidoria-sucesso h3 {
      font-size: 1.4rem;
      color: var(--c-titulo);
      margin: 0 0 10px;
    }
    .ouvidoria-sucesso p {
      color: var(--c-muted);
      margin: 0 0 24px;
    }
    .ouvidoria-sucesso .protocolo {
      background: var(--c-bg-section);
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      color: #667eea;
      font-size: 1.1rem;
      display: inline-block;
      margin-bottom: 20px;
    }
    @media (max-width: 576px) {
      .ouvidoria-modal {
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
      }
      .ouvidoria-form-row {
        grid-template-columns: 1fr;
      }
      .ouvidoria-tipo-grid {
        grid-template-columns: 1fr;
      }
    }
  