/* ==============================
   AOL Checkout (isolado)
============================== */
.aol-checkout, .aol-checkout *{ box-sizing:border-box; }
.aol-checkout{
  --bg: #ffffff;
  --card:#ffffff;
  --ink:#0f172a;
  --muted:#64748b;
  --line: rgba(15,23,42,.10);
  --soft: rgba(2,6,23,.04);

  --brand:#f36a21;
  --brand2:#e85f18;

  --r:16px;
  --r2:18px;

  --shadow: 0 1px 0 rgba(16,24,40,.04), 0 18px 45px rgba(2,6,23,.10);
  --shadow2: 0 12px 26px rgba(2,6,23,.10);

  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
}

.aol-co-shell{
  max-width: 100%;
  margin: 18px auto 0;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, rgba(243,106,33,.04) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.aol-co-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.aol-co-brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.aol-co-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(243,106,33,.22), rgba(243,106,33,.06) 60%, rgba(2,6,23,.02) 100%);
  border:1px solid rgba(243,106,33,.20);
  color: var(--brand2);
  box-shadow: 0 10px 18px rgba(243,106,33,.10);
}

.aol-co-eyebrow{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted);
}

.aol-co-title{
  font-size:18px;
  font-weight:900;
  margin-top:2px;
}

.aol-co-x{
  width:40px;
  height:40px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  color:#0f172a;
  transition: .15s ease;
}
.aol-co-x:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }

.aol-co-sub{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.aol-co-resumo{
  font-weight:800;
  color:#0f172a;
  background: rgba(2,6,23,.03);
  border:1px solid var(--line);
  padding: 8px 10px;
  border-radius: 12px;
}

.aol-co-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  font-weight:800;
  color:#0f172a;
  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.18);
  padding: 8px 10px;
  border-radius: 999px;
}

.aol-co-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.aol-co-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
  overflow:hidden;
}

.aol-co-cardhead{ padding: 14px 14px 0; }

.aol-co-cardtitle{
  font-size:14px;
  font-weight:900;
}

.aol-co-carddesc{
  margin-top:4px;
  font-size:12.5px;
  color: var(--muted);
  line-height:1.35;
}

.aol-co-form{ padding: 12px 14px 14px; }

.aol-co-field{ margin-top: 10px; }

.aol-co-label{
  display:block;
  font-size:12.5px;
  font-weight:900;
  color:#0f172a;
  margin-bottom:6px;
}

.aol-co-input{
  width:100%;
  height: 44px;
  border-radius: 12px;
  border:1px solid rgba(15,23,42,.14);
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: .15s ease;
}

.aol-co-input:focus{
  border-color: rgba(243,106,33,.45);
  box-shadow: 0 0 0 4px rgba(243,106,33,.14);
}

.aol-co-btn{
  margin-top: 12px;
  width:100%;
  height: 46px;
  border:0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
  color:#fff;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow: 0 14px 26px rgba(243,106,33,.20);
  transition: .15s ease;
}
.aol-co-btn:hover{ transform: translateY(-1px); filter: saturate(1.05); }
.aol-co-btn:active{ transform: translateY(0px) scale(.99); }

.aol-co-help{
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(2,6,23,.03);
  border: 1px solid var(--line);
}

.aol-co-loading{
  margin: 12px 14px 14px;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: var(--ink);
  padding: 12px;
  border-radius: 12px;
  background: rgba(2,6,23,.03);
  border: 1px solid var(--line);
}

.aol-co-spin{
  width:18px;
  height:18px;
  border-radius:50%;
  border: 2px solid rgba(15,23,42,.18);
  border-top-color: rgba(243,106,33,.85);
  animation: aolspin .8s linear infinite;
}

@keyframes aolspin{ to{ transform:rotate(360deg); } }

.aol-co-error{
  margin: 12px 14px 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color:#7a0b0b;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.20);
  font-weight: 800;
  line-height:1.35;
}

.aol-co-paybox{ padding: 12px 14px 14px; }

.aol-co-payhint{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(2,6,23,.03);
  border: 1px dashed rgba(15,23,42,.18);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.aol-co-sec{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.16);
  color:#0f172a;
  font-size: 12.5px;
  font-weight: 800;
  display:flex;
  align-items:center;
  gap:8px;
}

/* Termos recorrente */
.aol-rec-terms-label{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12px;
  color:#555;
  line-height:1.4;
  cursor:pointer;
  margin-top: 10px;
}
.aol-rec-terms-check{ margin-top:2px; flex-shrink:0; }
.aol-rec-terms-text a{ text-decoration:underline; }

/* PIX mini */
.aol-co-pixmini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  background:#fff;
  margin:0 0 12px;
}
.aol-co-pixmini-left{ display:flex; align-items:center; gap:10px; }
.aol-co-pixmini-ic{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.04);
}
.aol-co-pixmini-title{ font-weight:700; }
.aol-co-pixmini-sub{ font-size:13px; opacity:.85; }
.aol-co-pixmini-btn{
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:600;
  cursor:pointer;
}

/* PIX modal */
.aol-co-pixmodal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.aol-co-pixmodal-in{
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
}
.aol-co-pixmodal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.aol-co-pixmodal-title{ font-weight:800; }
.aol-co-pixmodal-x{
  border:0;
  background:transparent;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  padding:0 6px;
}
.aol-co-pixmodal-body{ padding:14px; }
.aol-co-pixqrimg{ display:flex; justify-content:center; margin:0 0 12px; }
.aol-co-pixcopy{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border:1px dashed rgba(0,0,0,.25);
  border-radius:12px;
  cursor:pointer;
}
.aol-co-pixnote{
  margin-top:10px;
  font-size:13px;
  opacity:.85;
  line-height:1.35;
  text-align:center;
}

/* Mobile */
@media (max-width: 860px){
  .aol-co-shell{ padding: 14px; }
  .aol-co-grid{ grid-template-columns: 1fr; }
  .aol-co-title{ font-size: 17px; }
}

/* ================================
   AOL INCLUSOS — Layout (grid)
================================ */
#aolInclusos .inc-grid{
  display:grid;
  gap:16px;
  align-items:start;
}

@media (min-width:980px){
  #aolInclusos .inc-grid{
    grid-template-columns: minmax(0, 1fr) 420px;
  }
  #aolInclusos .left-main{ grid-column:1; grid-row:1; }
  #aolInclusos .right-stack{ grid-column:2; grid-row:1 / span 2; }
  #aolInclusos .left-cta{ grid-column:1; grid-row:2; }
}

#aolInclusos .side-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ================================
   AOL INCLUSOS — CTA simples
   (condizente com os cards)
================================ */
#aolInclusos .cta-card{
  background:#ffffff; /* igual card */
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow: 0 1px 0 rgba(16,24,40,.04), 0 10px 28px rgba(16,24,40,.08);
}

#aolInclusos .cta-card .cta-inner{
  padding:16px;
}

#aolInclusos .cta-card h4{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.25;
  font-weight:800;
  color:#0f172a;
}

#aolInclusos .cta-card p{
  margin:0 0 12px;
  font-size:13px;
  line-height:1.55;
  color: rgba(15,23,42,.78);
}

/* Bot&atilde;o coerente com o resto */
#aolInclusos .cta-card .btn-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background:#0f172a;
  color:#ffffff;
  font-weight:800;
  text-decoration:none;
}

#aolInclusos .cta-card .btn-cta:hover{
  filter:brightness(1.05);
}

/* Mobile: deixa o bot&atilde;o ocupar melhor a largura */
@media (max-width:520px){
  #aolInclusos .cta-card .btn-cta{
    width:100%;
    justify-content:center;
  }
}
