/* Home em seções — identidade visual da HubComex.
   Vermelho mais fechado e tipografia arredondada, diferentes do resto do app
   (que usa --marca #e63946 e Inter). Ver nota no fim do arquivo. */
:root {
  --home-vermelho: #cc0000;        /* botões */
  --home-vermelho-escuro: #9e0000; /* títulos de seção */
  --home-vinho: #8b1a1a;           /* títulos das soluções */
  --home-tinta: #58585a;           /* texto da capa */
  --home-texto: #6e7b8c;           /* corpo das soluções */
  --home-fundo: #f2f2f2;
  --home-fonte: 'Nunito', 'Inter', system-ui, sans-serif;
}

/* A home ocupa a largura inteira da tela: quem segura o recuo do texto é a .faixa
   dentro de cada seção, não o container da página. */
.home { margin: 0; }

/* Botão pílula, comum às seções. */
.pilula {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.9rem;
  border-radius: 999px;
  background: var(--home-vermelho);
  color: #fff;
  font-family: var(--home-fonte);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transicao), transform var(--transicao);
}
.pilula:hover { background: #a80000; }
.pilula:active { transform: translateY(1px); }

/* Sobre fundo cinza, a pílula vermelha pesa demais — esta é a versão clara. */
.pilula--clara { background: #f4f4f4; color: var(--home-tinta); }
.pilula--clara:hover { background: #fff; color: #3f3f41; }

/* Coluna de conteúdo. O recuo à esquerda é o mesmo na capa e nas soluções,
   então os dois blocos de texto começam alinhados. */
.faixa {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 5.5rem);
}

/* ==================================================================== capa */
.capa {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(340px, 46vw, 620px);
  overflow: hidden;
  background: var(--home-fundo);
  isolation: isolate;
}
.capa__fundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* A foto vem em cinza médio; o véu clareia até o tom da referência e devolve
   contraste ao texto. Sem isto o título compete com os contêineres. */
.capa__veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(242 242 242 / 86%) 0%, rgb(242 242 242 / 62%) 45%, rgb(242 242 242 / 72%) 100%),
    linear-gradient(180deg, rgb(242 242 242 / 55%) 0%, rgb(242 242 242 / 30%) 40%, rgb(242 242 242 / 65%) 100%);
}

.capa__conteudo {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 6vw, 5.5rem);
}
.capa__titulo {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.9rem);
  font-family: var(--home-fonte);
  color: var(--home-tinta);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.capa__titulo-leve {
  font-size: clamp(1.6rem, 4.4vw, 3.3rem);
  font-weight: 300;
}
.capa__titulo-forte {
  font-size: clamp(1.9rem, 5.3vw, 4rem);
  font-weight: 800;
}

/* =============================================================== soluções */
.solucoes {
  background: var(--home-fundo);
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3.5rem, 9vw, 7rem);
}
.solucoes__cabecalho {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.2rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.titulo-secao {
  font-family: var(--home-fonte);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--home-vermelho-escuro);
}
.titulo-secao__leve { font-weight: 300; }
.titulo-secao__forte { font-weight: 800; }

.solucoes__grade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem) clamp(1.75rem, 4vw, 4rem);
}
.solucao__titulo {
  font-family: var(--home-fonte);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 800;
  color: var(--home-vinho);
  margin-bottom: 0.9rem;
}
.solucao__texto {
  font-family: var(--home-fonte);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--home-texto);
  /* A referência usa texto justificado; os hífens evitam os "rios" de espaço
     em branco que a justificação abre em coluna estreita. */
  text-align: justify;
  hyphens: auto;
}

/* ================================================================ contato */
.contato {
  background: #deddeb;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  scroll-margin-top: 72px;
}
.contato__conteudo { max-width: 900px; }
.contato__titulo { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.contato__form { display: flex; flex-direction: column; gap: 1.4rem; }
.contato__dupla { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contato__form input,
.contato__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(74 74 88 / 35%);
  border-radius: 0;
  padding: 0.75rem 1.9rem 0.8rem;
  background: transparent;
  color: #343346;
  font: 400 1.05rem var(--home-fonte);
  outline: none;
}
.contato__form textarea { min-height: 150px; resize: vertical; }
.contato__form input::placeholder,
.contato__form textarea::placeholder { color: #343346; opacity: 1; }
.contato__form input:focus,
.contato__form textarea:focus { border-bottom-color: var(--home-vermelho); }
.contato__enviar { align-self: center; min-width: 198px; border: 0; cursor: pointer; }
.contato__enviar:disabled { opacity: 0.65; cursor: wait; }
.contato__erro { color: #9e0000; text-align: center; font-family: var(--home-fonte); }

/* ============================================================= responsivo */
@media (max-width: 900px) {
  .solucoes__grade { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solucoes__grade { grid-template-columns: 1fr; }
  .solucoes__cabecalho { gap: 1.25rem; }
  .solucao__texto { text-align: left; hyphens: manual; }
  .capa__veu {
    /* No celular o texto ocupa quase toda a largura: o véu precisa ser parelho. */
    background: linear-gradient(180deg, rgb(242 242 242 / 78%) 0%, rgb(242 242 242 / 66%) 100%);
  }
  .contato__dupla { grid-template-columns: 1fr; gap: 1.4rem; }
  .contato__form input,
  .contato__form textarea { padding-inline: 0.4rem; }
}

/* NOTA: esta paleta e a fonte Nunito valem só para a home, para não mexer nas
   telas do ciclo, do produto e do admin. Se a identidade nova for adotada no site
   inteiro, o caminho é mover estes tokens para :root em base.css e apagar daqui. */

/* ======================================================= faixa de destaque */
.faixa-destaque {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 32vw, 440px);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 6vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
  /* Sem a imagem, este fundo é o que sustenta o contraste do texto branco. */
  background: #3b3f4a;
}
.faixa-destaque__fundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* Invisível até carregar: enquanto o arquivo não existir, vale o fundo escuro. */
  opacity: 0;
  transition: opacity 300ms ease;
}
.faixa-destaque__fundo.is-carregada { opacity: 1; }
.faixa-destaque__veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(38 41 50 / 74%), rgb(38 41 50 / 66%));
}
.faixa-destaque__titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  margin: 0;
  font-family: var(--home-fonte);
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  text-align: center;
  text-wrap: balance;
}
.faixa-destaque__titulo strong { font-weight: 800; }

/* ============================================================= a HubComex */
.sobre-hub {
  background: #d9d9d9;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}
.sobre-hub__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(240px, 26vw, 340px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.sobre-hub__cabecalho {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
/* O título desta seção é cinza-escuro, não vermelho como o das soluções. */
.titulo-secao--escuro { color: var(--home-tinta); }

.sobre-hub__paragrafo {
  font-family: var(--home-fonte);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--home-texto);
  text-align: justify;
  hyphens: auto;
}
.sobre-hub__subtitulo {
  font-family: var(--home-fonte);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--home-tinta);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0.9rem;
}

.sobre-hub__midia { display: flex; justify-content: center; }
/* O círculo NASCE como placeholder tracejado e só perde a marcação quando a foto
   carrega. Não depende do evento de erro, que pode nunca chegar se o arquivo ainda
   não existe e a imagem estiver fora da tela com loading="lazy". */
.sobre-hub__circulo {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border: 2px dashed rgb(0 0 0 / 18%);
  border-radius: 50%;
  overflow: hidden;
  background: #c4c4c4;
}
.sobre-hub__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
}
.sobre-hub__circulo.is-carregada { border-color: transparent; }
.sobre-hub__circulo.is-carregada .sobre-hub__foto { opacity: 1; }

.sobre-hub__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.sobre-hub__play-icone {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgb(20 20 20 / 72%);
  transition: background var(--transicao), transform var(--transicao);
}
/* Triângulo do play, desenhado com borda — sem imagem nem SVG extra. */
.sobre-hub__play-icone::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 20px 0 0 23px;
  border-left: 17px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.sobre-hub__play:hover .sobre-hub__play-icone { background: rgb(20 20 20 / 88%); transform: scale(1.06); }

@media (max-width: 860px) {
  .sobre-hub__layout { grid-template-columns: 1fr; }
  .sobre-hub__midia { order: -1; }
  .sobre-hub__circulo { max-width: 260px; }
}
@media (max-width: 600px) {
  .sobre-hub__paragrafo { text-align: left; hyphens: manual; }
}

/* ==================================================== clientes & parceiros */
.clientes {
  background: #cbcad8;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}
.clientes__titulo {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.clientes__grade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cliente {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
}
/* Os vetores vêm num viewBox quadrado de 500×500 com a marca numa faixa central —
   sobra muito vazio em cima e embaixo. Por isso a caixa é generosa: o que aparece
   de arte é bem menor do que a altura reservada. */
.cliente__logo {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 300ms ease;
}
/* Sem o arquivo, o nome da marca ocupa o lugar — a seção nunca fica vazia. */
.cliente__rotulo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border: 2px dashed rgb(0 0 0 / 15%);
  border-radius: var(--raio-pequeno);
  font-family: var(--home-fonte);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgb(0 0 0 / 45%);
  text-align: center;
}
.cliente.is-carregada .cliente__logo { opacity: 1; }
.cliente.is-carregada .cliente__rotulo { display: none; }

/* ============================================================== portfólio */
.portfolio { background: #fff; }
.portfolio__moldura { position: relative; }

.portfolio__tira {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x proximate;
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
}
.portfolio__tira::-webkit-scrollbar { display: none; }

.portfolio__item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(160px, 19vw, 240px);
  height: clamp(240px, 30vw, 380px);
  scroll-snap-align: start;
  background: #ededed;
  overflow: hidden;
}
/* Placeholder tracejado enquanto a foto não existe. */
.portfolio__item::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px dashed rgb(0 0 0 / 12%);
  border-radius: 6px;
  pointer-events: none;
}
.portfolio__item.is-carregada::after { display: none; }
.portfolio__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
}
.portfolio__item.is-carregada .portfolio__foto { opacity: 1; }

.portfolio__seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 2px 10px rgb(0 0 0 / 18%);
  color: #3f3f41;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transicao);
}
.portfolio__seta:hover { background: #fff; }
.portfolio__seta--anterior { left: 12px; }
.portfolio__seta--proxima { right: 12px; }
.portfolio__seta[hidden] { display: none; }

@media (max-width: 900px) {
  .clientes__grade { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .clientes__grade { grid-template-columns: 1fr; }
}

/* ==================================================================================
   HOME PÚBLICA DO IMPORTAÇÃO PRONTA (#/importacao-pronta)
   Mesma linguagem visual da home institucional: Nunito, pílulas e faixas cheias.
   ================================================================================== */
.pilula--grande { padding: 0.9rem 2.4rem; font-size: 1.05rem; }

.ip section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.ip .titulo-secao { font-size: clamp(1.7rem, 4vw, 2.9rem); }
.ip-paragrafo {
  font-family: var(--home-fonte);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--home-texto);
  margin-bottom: 1rem;
}
.ip-paragrafo strong { color: var(--home-tinta); font-weight: 800; }
.ip-subtexto {
  font-family: var(--home-fonte);
  font-size: 1rem;
  color: var(--home-texto);
  margin: 0.75rem 0 clamp(2rem, 4vw, 3rem);
  max-width: 62ch;
}

/* ---------------------------------------------------------------------- capa */
.ip-capa { background: var(--home-fundo); }
.ip-capa__etiqueta {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #fdecee;
  color: var(--home-vermelho);
  font-family: var(--home-fonte);
  font-size: 0.8rem;
  font-weight: 800;
}
.ip-capa__titulo {
  font-family: var(--home-fonte);
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--home-tinta);
  margin: 1rem 0;
}
.ip-capa__texto {
  font-family: var(--home-fonte);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--home-texto);
  max-width: 60ch;
}
.ip-capa__acoes { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.25rem; }
.ip-capa__nota {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--home-fonte);
  font-size: 0.88rem;
  color: var(--home-tinta);
  opacity: 0.75;
}
.ip-capa__nota svg { flex-shrink: 0; }

/* ------------------------------------------------------------------- o que é */
.ip-oquee { background: #fff; }
.ip-oquee__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.ip-destaques { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
/* Coluna do número FIXA, não `auto`: cada cartão é um grid independente, então com
   `auto` cada um dimensionava a própria coluna e as descrições começavam em pontos
   diferentes ("+600" 90px, "13 anos" 122px). 6.5rem cobre o maior deles com folga. */
.ip-destaques li {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--raio);
  background: var(--home-fundo);
}
.ip-destaques strong {
  font-family: var(--home-fonte);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--home-vermelho);
  white-space: nowrap;
}
.ip-destaques span { font-family: var(--home-fonte); font-size: 0.92rem; color: var(--home-texto); line-height: 1.45; }

/* ------------------------------------------------------------ esclarecimento */
.ip-esclarecimento { background: var(--home-fundo); }
.ip-esclarecimento__grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.ip-nota {
  padding: 1.4rem 1.5rem;
  border-radius: var(--raio);
  background: #fff;
  border-left: 4px solid #c9c9c9;
}
.ip-nota h3 {
  font-family: var(--home-fonte);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-tinta);
  margin-bottom: 0.55rem;
}
.ip-nota p { font-family: var(--home-fonte); font-size: 0.94rem; line-height: 1.6; color: var(--home-texto); }
.ip-nota--sim { border-left-color: var(--home-vermelho); }
.ip-nota--sim h3 { color: var(--home-vermelho-escuro); }

/* -------------------------------------------------------------------- etapas */
.ip-etapas { background: #fff; }
.ip-etapas__lista { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.ip-etapa {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0 0 2rem;
  position: relative;
}
.ip-etapa:last-child { padding-bottom: 0; }
/* Linha vertical ligando as etapas — a leitura vira uma sequência, não uma lista. */
.ip-etapa:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 6px;
  width: 2px;
  background: #e6e6e6;
}
.ip-etapa__numero {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--home-vermelho);
  color: #fff;
  font-family: var(--home-fonte);
  font-size: 1.1rem;
  font-weight: 800;
}
.ip-etapa__titulo {
  font-family: var(--home-fonte);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--home-tinta);
  margin: 0.6rem 0 0.5rem;
}
.ip-etapa__texto { font-family: var(--home-fonte); font-size: 0.98rem; line-height: 1.62; color: var(--home-texto); }

/* ------------------------------------------------------------------- incluso */
.ip-incluso { background: var(--home-fundo); }
.ip-incluso__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.ip-incluso__lista { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.ip-incluso__lista li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--raio-pequeno);
  background: #fff;
  font-family: var(--home-fonte);
  font-size: 0.96rem;
  color: var(--home-tinta);
}
.ip-incluso__lista svg { color: var(--home-vermelho); flex-shrink: 0; }

/* ----------------------------------------------------------------- condições */
.ip-condicoes { background: #fff; }
.ip-condicoes__grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.ip-condicao { padding: 1.4rem 1.5rem; border-radius: var(--raio); background: var(--home-fundo); }
.ip-condicao__rotulo {
  display: block;
  font-family: var(--home-fonte);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--home-texto);
}
.ip-condicao__valor {
  display: block;
  font-family: var(--home-fonte);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--home-vermelho);
  margin: 0.35rem 0 0.6rem;
}
.ip-condicao__detalhe { font-family: var(--home-fonte); font-size: 0.88rem; line-height: 1.55; color: var(--home-texto); }

/* ---------------------------------------------------------------- requisitos */
.ip-requisitos { background: var(--home-fundo); }
.ip-requisitos__grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.ip-requisito { padding: 1.5rem; border-radius: var(--raio); background: #fff; text-align: center; }
.ip-requisito__icone {
  width: 46px; height: 46px;
  margin: 0 auto 0.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fdecee;
  color: var(--home-vermelho);
}
.ip-requisito h3 { font-family: var(--home-fonte); font-size: 1.02rem; font-weight: 800; color: var(--home-tinta); margin-bottom: 0.45rem; }
.ip-requisito p { font-family: var(--home-fonte); font-size: 0.9rem; line-height: 1.55; color: var(--home-texto); }

/* -------------------------------------------------------------------- planos */
.ip-planos { background: #fff; }
.ip-planos__grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.ip-plano {
  position: relative;
  padding: 1.75rem 1.6rem;
  border: 1px solid #e4e4e4;
  border-radius: var(--raio);
  background: #fff;
}
.ip-plano.is-destaque { border-color: var(--home-vermelho); box-shadow: 0 8px 26px rgb(204 0 0 / 10%); }
.ip-plano__selo {
  position: absolute;
  top: -12px; left: 1.6rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: var(--home-vermelho);
  color: #fff;
  font-family: var(--home-fonte);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ip-plano__nome { font-family: var(--home-fonte); font-size: 1.05rem; font-weight: 800; color: var(--home-tinta); }
.ip-plano__preco {
  display: block;
  font-family: var(--home-fonte);
  font-size: 2rem;
  font-weight: 800;
  color: var(--home-vermelho);
  margin-top: 0.5rem;
}
.ip-plano__unidade { display: block; font-family: var(--home-fonte); font-size: 0.86rem; color: var(--home-texto); margin-bottom: 1.1rem; }
.ip-plano__preco--secundario { margin-top: 1.15rem; }
.ip-plano__itens { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.ip-plano__itens li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  font-family: var(--home-fonte);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--home-texto);
}
.ip-plano__itens svg { color: var(--home-vermelho); margin-top: 3px; }
.ip-plano__observacao {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
  font-family: var(--home-fonte);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--home-texto);
}
.ip-nota-rodape {
  font-family: var(--home-fonte);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--home-texto);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 72ch;
}

/* ------------------------------------------------------------- chamada final */
.ip-chamada { background: #3b3f4a; }
.ip-chamada--planos {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.25rem;
}
.ip-chamada__conteudo { text-align: center; }
.ip-chamada__titulo {
  font-family: var(--home-fonte);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.ip-chamada__texto {
  font-family: var(--home-fonte);
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 78%);
  max-width: 56ch;
  margin: 0 auto clamp(1.75rem, 3vw, 2.25rem);
}
.ip-chamada__acoes { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }

@media (max-width: 860px) {
  .ip-oquee__layout, .ip-incluso__layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ip-capa__acoes .pilula, .ip-chamada__acoes .pilula { width: 100%; }
  .ip-destaques li { grid-template-columns: 1fr; gap: 0.2rem; }
}
