.secao-principal .coluna {
    border-right: none !important
}


  .fg-timer-wrap{
    border: 2px solid #c0392b;
    border-radius: 12px;
    padding: 14px 14px 12px;
    margin: 12px 0 14px;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
  }
  .fg-timer-top{
    display:flex; align-items:baseline; justify-content:space-between;
    gap:10px; flex-wrap:wrap; margin-bottom:10px;
  }
  .fg-timer-title{ font-size:14px; font-weight:800; color:#111; }
  .fg-timer-sub{ font-size:13px; font-weight:800; color:#c0392b; }
  .fg-timer-grid{
    display:grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap:10px;
    margin: 10px 0 12px;
  }
  .fg-box{
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 10px;
    padding: 10px 8px;
    text-align:center;
    background:#fafafa;
  }
  .fg-num{ font-size:22px; font-weight:900; color:#111; line-height:1.1; }
  .fg-lab{ font-size:11px; font-weight:700; color:#555; text-transform:uppercase; margin-top:4px; letter-spacing:.5px; }
  .fg-bar{
    height:10px; border-radius:999px;
    background: rgba(192,57,43,.12);
    overflow:hidden;
    border: 1px solid rgba(192,57,43,.25);
  }
  .fg-bar > div{
    height:100%;
    width:0%;
    background:#c0392b;
    border-radius:999px;
    transition: width .35s ease;
  }
  .fg-timer-foot{ margin-top:10px; font-size:12px; color:#333; line-height:1.35; }
  .fg-timer-foot strong{ color:#c0392b; }
  .fg-ended{ font-size:13px; font-weight:800; color:#c0392b; margin-top:8px; display:none; }

  @media (max-width: 520px){
    .fg-timer-grid{ grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  }

  .intencao-overlay {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex; justify-content: center; align-items: center;
    z-index: 999999;
  }
  .intencao-popup {
    background: #fff; border: 2px solid #27ae60; border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    width: 90%; max-width: 480px; max-height: 90vh;
    padding: 25px 30px; font-family: sans-serif; text-align: center;
    overflow-y: auto; position: relative;
  }
  .intencao-popup.wide { max-width: 600px; }
  .intencao-close {
    position: absolute; top: 10px; right: 15px;
    cursor: pointer; font-size: 20px; line-height: 1;
    background: none; border: none; padding: 0; color: #555;
  }
  .intencao-close:hover { color: #111; }
  .intencao-progress-bar {
    background: #eee; height: 20px; border-radius: 10px;
    overflow: hidden; margin: 10px 0;
  }
  .intencao-progress-fill {
    background: #27ae60; height: 100%; transition: width .3s ease;
  }
  .intencao-cta {
    padding: 10px 25px; background: #2c3e50; color: white;
    border: none; border-radius: 6px; font-size: 16px;
  }
  .intencao-cta:disabled { cursor: not-allowed; opacity: 0.6; }
  .intencao-cta:not(:disabled) { cursor: pointer; }
