/* ==========================================================================
   AeroKids — checkout próprio (substitui o da Yampi)
   ========================================================================== */

:root {
  --vinho: #6d2529;
  /* Azul e navy tirados do logo do Smart Lar. Trocar aqui
     reveste a página, o checkout e as páginas institucionais. */
  --marca: #0070E8;
  --marca-hover: #0063CF;
  --marca-total: #c92c2d;
  --texto: #2b2b2b;
  --texto-suave: #666;
  --texto-fraco: #a9a9a9;
  --borda: #e1e1e1;
  --borda-input: #dcdcdc;
  --fundo: #f2f2f2;
  --card-inativo: #efefef;
  --raio: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--fundo);
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

/* O atributo [hidden] precisa vencer os display: flex/inline-flex daqui.
   Sem isto, esconder um elemento por JS não surte efeito. */
[hidden] { display: none !important; }

a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
:focus-visible { outline: 2px solid var(--marca); outline-offset: 2px; }

/* ---------- Header ---------- */
.co-header {
  background: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.co-seguro {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; line-height: 1.2; letter-spacing: .3px;
}
.co-seguro svg { width: 15px; height: 15px; flex: 0 0 auto; }
.co-seguro span { display: block; font-weight: 400; color: var(--texto-suave); }
@media (max-width: 767px) {
  .co-header { padding: 12px 14px; justify-content: space-between; }
  .co-header__logo { margin: 0; }
  .co-seguro { position: static; transform: none; }
  .co-seguro strong { font-size: 10px; }
}

/* ---------- Faixa da oferta ---------- */
.co-oferta {
  background: var(--vinho); color: #fff;
  text-align: center; padding: 14px 16px;
  font-size: 14px; line-height: 1.7;
}
.co-oferta__contador {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; margin-top: 2px;
}
.co-oferta__contador svg { width: 16px; height: 16px; }
.co-oferta b { font-weight: 700; }

/* ---------- Grid ---------- */
.co-main {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 360px;
  align-items: start;
  gap: 24px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 24px 48px;
}
.co-col-resumo { display: flex; flex-direction: column; gap: 22px; }

@media (max-width: 1099px) {
  .co-main { grid-template-columns: minmax(0, 1fr) 340px; }
  .co-col-pagamento { grid-column: 1; grid-row: 2; }
  .co-col-resumo { grid-column: 2; grid-row: 1 / span 2; }
}
@media (max-width: 767px) {
  .co-main { grid-template-columns: minmax(0, 1fr); padding: 16px 14px 32px; gap: 16px; }
  .co-col-pagamento, .co-col-resumo { grid-column: 1; grid-row: auto; }
}

.co-col-passos { display: flex; flex-direction: column; gap: 22px; }

/* ---------- Cartões de passo ---------- */
.passo {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: var(--raio);
  padding: 24px;
}
.passo[data-estado="bloqueado"] {
  background: var(--card-inativo);
  border-color: transparent;
}
.passo[data-estado="concluido"] { border-color: var(--borda); }

.passo__cabecalho { display: flex; align-items: center; gap: 12px; }
.passo__num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #2b2b2b; color: #fff;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.passo[data-estado="bloqueado"] .passo__num { background: #c4c4c4; }
.passo__titulo { font-size: 19px; font-weight: 700; }
.passo[data-estado="bloqueado"] .passo__titulo { color: #b0b0b0; }

.passo__ajuda { font-size: 13px; color: var(--texto-suave); margin-top: 10px; }
.passo[data-estado="bloqueado"] .passo__ajuda { color: #b0b0b0; margin-top: 8px; }

.passo__corpo { margin-top: 18px; }
.passo[data-estado="bloqueado"] .passo__corpo,
.passo[data-estado="concluido"] .passo__corpo { display: none; }
.passo[data-estado="bloqueado"] .passo__resumo { display: none; }

.passo__resumo { display: none; margin-top: 12px; font-size: 13px; color: var(--texto-suave); }
.passo[data-estado="concluido"] .passo__resumo { display: block; }
.passo__resumo b { color: var(--texto); font-weight: 600; }
.passo__editar {
  display: none;                 /* só aparece quando o passo está concluído */
  margin-top: 10px; font-size: 13px; font-weight: 600;
  color: var(--vinho); text-decoration: underline;
}
.passo[data-estado="concluido"] .passo__editar { display: inline-block; }

/* ---------- Formulário ---------- */
.campo { margin-bottom: 16px; }
.campo:last-of-type { margin-bottom: 0; }
.campo > label {
  display: block; font-size: 13px; font-weight: 500;
  color: #444; margin-bottom: 6px;
}
.campo input, .campo select {
  width: 100%; height: 46px;
  border: 1px solid var(--borda-input); border-radius: 4px;
  padding: 0 14px; font-family: inherit; font-size: 14px;
  color: var(--texto); background: #fff; outline: none;
  transition: border-color .15s;
}
.campo input::placeholder { color: #b5b5b5; }
.campo input:focus, .campo select:focus { border-color: #9a9a9a; }
.campo input[aria-invalid="true"] { border-color: #d04545; }

.campo__erro { display: none; font-size: 12px; color: #d04545; margin-top: 5px; }
.campo input[aria-invalid="true"] ~ .campo__erro { display: block; }

.campo--telefone { display: flex; gap: 8px; }
.campo--telefone .prefixo {
  width: 64px; height: 46px; flex: 0 0 auto;
  border: 1px solid var(--borda-input); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--texto-suave); background: #fff;
}
.campo--telefone input { flex: 1 1 auto; }

.linha { display: grid; gap: 12px; }
.linha--2 { grid-template-columns: 1fr 1fr; }
.linha--cep { grid-template-columns: 160px 1fr; align-items: end; }
@media (max-width: 480px) { .linha--2, .linha--cep { grid-template-columns: 1fr; } }

.btn-avancar {
  width: 100%; height: 52px; margin-top: 22px;
  background: var(--marca); color: #fff;
  border-radius: 4px; font-size: 16px; font-weight: 700;
  transition: background .15s;
}
.btn-avancar:hover { background: var(--marca-hover); }
.btn-avancar[disabled] { background: #c3c3c3; cursor: not-allowed; }

/* ---------- Frete ---------- */
.frete { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.frete__opcao {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--borda-input); border-radius: 4px;
  padding: 14px; cursor: pointer;
}
.frete__opcao:has(input:checked) { border-color: var(--marca); background: #f4fdf8; }
.frete__opcao input { accent-color: var(--marca); width: 18px; height: 18px; }
.frete__nome { font-weight: 600; }
.frete__prazo { font-size: 13px; color: var(--texto-suave); }
.frete__valor { margin-left: auto; font-weight: 700; color: var(--marca-total); }

/* ---------- Pagamento ---------- */
.pgto { display: flex; flex-direction: column; gap: 10px; }
.pgto__opcao {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--borda-input); border-radius: 4px;
  padding: 14px; cursor: pointer;
}
.pgto__opcao:has(input:checked) { border-color: var(--marca); background: #f4fdf8; }
.pgto__opcao input { accent-color: var(--marca); width: 18px; height: 18px; }
.pgto__nome { font-weight: 600; }
.pgto__obs { font-size: 12px; color: var(--texto-suave); }
.pgto__selo {
  margin-left: auto; font-size: 11px; font-weight: 700; white-space: nowrap;
  background: #eafaf3; color: #128a5e; padding: 3px 8px; border-radius: 20px;
}
.pgto__aviso {
  margin-top: 14px; padding: 12px 14px; border-radius: 4px;
  background: #fff8e8; border: 1px solid #f0dcb0;
  font-size: 13px; color: #7a5a1e;
}

/* ---------- Resumo ---------- */
.card { background: #fff; border-radius: var(--raio); padding: 22px; }
.resumo__titulo {
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.cupom__label { font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.cupom__linha { display: flex; align-items: center; gap: 12px; }
.cupom__campo {
  flex: 1 1 auto; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--borda-input); border-radius: 4px; padding: 0 12px; height: 44px;
}
.cupom__campo svg { width: 17px; height: 17px; color: var(--texto-fraco); flex: 0 0 auto; }
.cupom__campo input {
  flex: 1 1 auto; border: none; outline: none; height: 100%;
  font-family: inherit; font-size: 14px; background: none;
}
.cupom__campo input::placeholder { color: #b5b5b5; }
.cupom__add { font-size: 14px; font-weight: 700; color: #8a5a3c; }
.cupom__msg { font-size: 12px; margin-top: 8px; display: none; }
.cupom__msg.erro { display: block; color: #d04545; }
.cupom__msg.ok { display: block; color: #128a5e; }

.totais { background: #f5f5f5; border-radius: 4px; padding: 16px; margin-top: 18px; }
.totais__linha {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; margin-bottom: 10px;
}
.totais__linha:last-child { margin-bottom: 0; }
.totais__linha--total { font-size: 17px; font-weight: 700; }
.totais__linha--total dt { color: var(--marca-total); }
.totais__linha--total dd { color: var(--marca-total); }
.totais__desconto dd { color: var(--marca-total); }

.item { display: flex; gap: 14px; margin-top: 20px; }
.item__img {
  width: 62px; height: 62px; border-radius: 4px; object-fit: cover;
  flex: 0 0 auto; background: #f5f5f5;
}
.item__titulo { font-size: 13px; color: #9a9a9a; line-height: 1.4; }
.item__atributos { font-size: 13px; font-weight: 700; margin-top: 8px; }
.item__linha { font-size: 13px; margin-top: 8px; display: flex; gap: 18px; }
.item__linha b { font-weight: 600; }

/* ---------- Selos de confiança ---------- */
.confia__item { display: flex; gap: 14px; padding: 18px 0; }
.confia__item + .confia__item { border-top: 1px dashed #dcdcdc; }
.confia__item:first-child { padding-top: 0; }
.confia__item:last-child { padding-bottom: 0; }
.confia__icone { width: 44px; height: 44px; flex: 0 0 auto; object-fit: contain; }
.confia__estrelas { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.confia__titulo { font-size: 14px; font-weight: 700; margin: 2px 0 4px; }
.confia__texto { font-size: 13px; color: var(--texto-suave); line-height: 1.5; }

/* ---------- Rodapé ---------- */
.co-footer {
  flex: 0 0 auto;
  background: var(--vinho); color: #fff;
  text-align: center; padding: 34px 20px 28px;
  font-size: 13px; line-height: 1.9;
}
.co-footer__titulo { font-weight: 600; margin-bottom: 14px; }
.co-footer__bandeiras {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px;
}
.co-footer__bandeiras svg {
  width: 46px; height: 30px; background: #fff; border-radius: 4px; padding: 1px;
}
.co-footer .co-seguro {
  position: static; transform: none;
  justify-content: center; margin-top: 18px; color: #fff;
}
.co-footer .co-seguro span { color: rgba(255,255,255,.85); }
.co-footer a { color: #fff; }

/* ---------- Confirmação ---------- */
.confirmacao { max-width: 560px; margin: 0 auto; text-align: center; }
.confirmacao__check {
  width: 64px; height: 64px; border-radius: 50%; background: #eafaf3;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.confirmacao__check svg { width: 32px; height: 32px; color: var(--marca-total); }
.confirmacao h1 { font-size: 22px; margin-bottom: 8px; }
.confirmacao p { color: var(--texto-suave); margin-bottom: 6px; }

/* ---------- Cartão ---------- */
.cartao { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--borda); }
.cartao__seguranca {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12px; color: var(--texto-suave); margin-top: 4px;
}
.cartao__seguranca svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; }

/* ---------- Tela de PIX / boleto ---------- */
.pagar { max-width: 620px; margin: 0 auto; text-align: center; }
.pagar h1 { font-size: 22px; margin-bottom: 6px; }
.pagar__sub { color: var(--texto-suave); margin-bottom: 22px; }
.pagar__qr {
  width: 240px; height: 240px; margin: 0 auto 20px;
  border: 1px solid var(--borda); border-radius: 8px; padding: 10px; background: #fff;
}
.pagar__codigo {
  display: flex; gap: 8px; align-items: stretch; margin: 0 auto 14px; max-width: 460px;
}
.pagar__codigo code {
  flex: 1 1 auto; min-width: 0;
  background: #f5f5f5; border-radius: 4px; padding: 12px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; text-align: left; word-break: break-all;
  max-height: 84px; overflow-y: auto;
}
.pagar__copiar {
  flex: 0 0 auto; padding: 0 18px; border-radius: 4px;
  background: var(--marca); color: #fff; font-weight: 700; font-size: 14px;
}
.pagar__copiar:hover { background: var(--marca-hover); }
.pagar__aguardando {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--texto-suave); margin-top: 16px;
}
.pagar__bolinha {
  width: 9px; height: 9px; border-radius: 50%; background: var(--marca);
  animation: pulsa 1.4s ease-in-out infinite;
}
@keyframes pulsa { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }
.pagar__nota {
  margin-top: 20px; padding: 12px 14px; border-radius: 4px;
  background: #fff8e8; border: 1px solid #f0dcb0; font-size: 13px; color: #7a5a1e;
}
.pagar__link {
  display: inline-block; margin-top: 8px;
  font-weight: 700; text-decoration: underline; color: var(--vinho);
}

/* ==========================================================================
   Ajustes para celular
   ========================================================================== */
@media (max-width: 767px) {
  /* Em telas estreitas o botão não cabe ao lado do campo e empurrava a
     página para fora da tela. Abaixo de 380px ele passa para a linha
     de baixo, ocupando a largura toda. */
  .cupom__add { min-height: 44px; padding: 0 4px; }

  .co-header__logo { min-height: 44px; display: flex; align-items: center; }

  .co-footer a, .co-footer__links a { display: inline-block; padding: 6px 0; }

  .co-seguro { font-size: 12px; }
}

@media (max-width: 379px) {
  .cupom__linha { flex-wrap: wrap; }
  .cupom__campo { flex: 1 1 100%; }
  .cupom__add {
    flex: 1 1 100%; height: 44px; border: 1px solid var(--borda-input);
    border-radius: 4px; background: #fff;
  }
}

/* Marca em texto enquanto o arquivo do logo não entra no repositório. */
.co-header__marca { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; color: var(--marca); }


/* ==========================================================================
   Arranjo novo: stepper, resumo colapsável e resumo do pedido fixo
   ========================================================================== */

/* A faixa da oferta e o rodapé passam a usar a cor da marca, como no site. */
.co-oferta { background: var(--marca); }
.co-footer { background: var(--marca); }

/* ---------- Stepper ---------- */
.stepper {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 780px; margin: 26px auto 0; padding: 0 24px;
  list-style: none;
}
.stepper__item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; position: relative; text-align: center;
}
/* A linha que liga um passo ao outro nasce do próprio item, para não
   depender de um elemento extra só para desenhar o traço. */
.stepper__item + .stepper__item::before {
  content: ''; position: absolute; top: 15px; right: 50%; left: -50%;
  height: 2px; background: #dcdcdc;
}
.stepper__item[data-estado="concluido"]::before,
.stepper__item[data-estado="ativo"]::before { background: var(--marca); }

.stepper__bolha {
  position: relative; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 2px solid #dcdcdc; color: #9a9a9a;
  font-size: 13px; font-weight: 700;
}
.stepper__item[data-estado="ativo"] .stepper__bolha,
.stepper__item[data-estado="concluido"] .stepper__bolha {
  background: var(--marca); border-color: var(--marca); color: #fff;
}
.stepper__nome { font-size: 12px; color: var(--texto-suave); }
.stepper__item[data-estado="ativo"] .stepper__nome { color: var(--texto); font-weight: 600; }

@media (max-width: 479px) {
  .stepper { padding: 0 14px; }
  .stepper__nome { font-size: 10.5px; }
}

/* ---------- Colunas ---------- */
.co-main { grid-template-columns: minmax(0, 1fr) 360px; padding-top: 22px; }
.co-col-principal { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.co-col-lateral { min-width: 0; }

@media (max-width: 1099px) {
  .co-main { grid-template-columns: minmax(0, 1fr) 320px; }
}
@media (max-width: 899px) {
  .co-main { grid-template-columns: minmax(0, 1fr); }
  .co-col-lateral { grid-row: 1; }
}

/* ---------- Resumo do carrinho ---------- */
.resumo { padding-top: 0; padding-bottom: 0; }
.resumo__cabecalho {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0; background: none; border: 0;
  font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.resumo__cabecalho .resumo__titulo { margin: 0; }
.resumo__seta { width: 20px; height: 20px; color: #8a8a8a; transition: transform .15s; }
.resumo__cabecalho[aria-expanded="false"] .resumo__seta { transform: rotate(180deg); }
.resumo__corpo { padding-bottom: 20px; }

.item { margin-top: 0; padding-top: 4px; }
.item__dados { flex: 1; min-width: 0; }
.item__img { width: 84px; height: 84px; }
.item__titulo { font-size: 14px; color: var(--texto); font-weight: 500; }
.item__atributos {
  font-size: 12.5px; font-weight: 400; font-style: italic;
  color: var(--texto-suave); margin-top: 4px;
}
.item__preco { font-size: 15px; font-weight: 700; margin-top: 6px; }
.item__acoes {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 10px;
}

.qtd-stepper {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--borda); border-radius: 999px; padding: 2px;
}
.qtd-stepper button {
  width: 30px; height: 28px; border: 0; background: none; cursor: pointer;
  font-size: 16px; line-height: 1; color: var(--texto-suave); border-radius: 999px;
}
.qtd-stepper button:hover { background: #f1f1f1; color: var(--texto); }
.qtd-stepper span { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; }

.item__remover {
  display: grid; place-items: center; width: 34px; height: 34px;
  color: #9a9a9a; border-radius: 6px;
}
.item__remover:hover { color: var(--marca); background: #f7f7f7; }
.item__remover svg { width: 19px; height: 19px; }

/* ---------- Resumo do pedido, fixo ---------- */
.lateral { position: sticky; top: 18px; }
.lateral__titulo {
  font-size: 14px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.lateral__item { display: flex; gap: 12px; align-items: flex-start; }
.lateral__img {
  width: 58px; height: 58px; border-radius: 6px; object-fit: cover;
  flex: 0 0 auto; background: #f5f5f5;
}
.lateral__dados { flex: 1; min-width: 0; }
.lateral__nome { font-size: 13px; line-height: 1.4; color: var(--texto); }
.lateral__qtd { font-size: 12.5px; color: var(--texto-suave); margin-top: 4px; }
.lateral__preco { font-size: 13px; font-weight: 600; white-space: nowrap; }

.lateral__totais { margin-top: 18px; border-top: 1px solid var(--borda); padding-top: 16px; }
.lateral__totais > div {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; margin-bottom: 10px;
}
.lateral__totais > div:last-child { margin-bottom: 0; }
.lateral__totais dt { color: var(--texto-suave); }
.lateral__total {
  border-top: 1px solid var(--borda); padding-top: 12px; margin-top: 4px;
  font-size: 17px; font-weight: 700;
}
.lateral__total dt, .lateral__total dd { color: var(--texto); }

@media (max-width: 899px) {
  .lateral { position: static; }
}

/* ---------- Selos ---------- */
.confia__icone { color: var(--marca); }

/* ---------- Rodapé ---------- */
.co-footer { text-align: left; padding: 40px 20px 28px; }
.co-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px; max-width: 1040px; margin: 0 auto;
}
.co-footer__marca { font-size: 20px; font-weight: 700; letter-spacing: -.4px; }
.co-footer__missao { margin-top: 10px; line-height: 1.7; color: rgba(255,255,255,.88); }
.co-footer__col h3 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; margin-bottom: 10px;
}
.co-footer__col ul { list-style: none; }
.co-footer__col li { line-height: 2; color: rgba(255,255,255,.88); }
.co-footer__col a:hover { text-decoration: underline; }

.co-footer__pagamento {
  max-width: 1040px; margin: 32px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.co-footer__pagamento .co-footer__bandeiras { justify-content: flex-start; }
.co-footer__legal {
  max-width: 1040px; margin: 18px auto 0;
  font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.8);
}
.co-footer .co-seguro { max-width: 1040px; margin: 18px auto 0; justify-content: flex-start; }

@media (max-width: 767px) {
  .co-footer__grid { grid-template-columns: 1fr; gap: 22px; }
}

/* O cupom precisa respirar depois do item, como no modelo. */
.resumo__corpo #form-cupom {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--borda);
}
/* A marca no topo é um link, mas não deve parecer um. */
.co-header__marca { text-decoration: none; }
.co-header__logo:hover .co-header__marca { opacity: .85; }

/* No celular as duas caixas de resumo ficam empilhadas dizendo a mesma coisa.
   A lateral é um apoio de tela larga; o card de resumo já traz item, cupom e
   totais. */
@media (max-width: 899px) {
  .co-col-lateral { display: none; }
}

/* Links do rodapé sem sublinhado fixo, como no modelo. */
.co-footer__col a { text-decoration: none; }

/* ---------- Logo do Smart Lar ---------- */
.co-header__logo-img { width: 146px; max-width: none; height: auto; display: block; }
.co-footer__logo { width: 164px; max-width: none; height: auto; display: block; margin-bottom: 8px; }

@media (max-width: 640px) {
  .co-header__logo-img { width: 120px; }
}
