/* Estilos da página principal LMSL (extraídos e corrigidos do index.html) */

/* Altura comum: botão de cookies (esquerda) e globo Crisp (direita) */
:root {
  --lmsl-flutuante-bottom: 3.25rem;
  --lmsl-flutuante-cookies-esq: 0.75rem;
  --lmsl-flutuante-crisp-dir: 0.75rem;
  /* Referência visual dos botões flutuantes (globo de chat) */
  --lmsl-flutuante-base-tamanho: 3.45rem;
  --lmsl-a11y-icone-tamanho: 2.25rem;
  --lmsl-cookie-icone-tamanho: 2.2rem;
  /* Navegação: transições mais naturais */
  --lmsl-nav-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --lmsl-nav-ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* “Ir para o conteúdo” (WCAG 2.4.1, alinhado à LBI / NBR ISO 17225) */
.lmsl-skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 10000060;
  padding: 0.65rem 1rem;
  background: #1f646c;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lmsl-skip-link:focus {
  left: 0.5rem;
  outline: 3px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-skip-target:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .li_vertical.direto:hover {
    transform: none;
  }
}

/* Globo do Crisp (chat): alinhado ao mesmo fundo que o botão de cookies */
#crisp-chatbox,
crisp-client {
  bottom: var(--lmsl-flutuante-bottom) !important;
  right: var(--lmsl-flutuante-crisp-dir) !important;
}

/* ---------- Menu de acessibilidade LMSL (botão acima do globo de mensagens, à direita) ---------- */
.lmsl-a11y {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
}

.lmsl-a11y__fab {
  position: fixed;
  z-index: 10000048;
  /* Alinha o centro horizontal com o globo do chat */
  right: calc(var(--lmsl-flutuante-crisp-dir) + (var(--lmsl-flutuante-base-tamanho) - var(--lmsl-a11y-icone-tamanho)) / 2);
  bottom: calc(var(--lmsl-flutuante-bottom) + 3.45rem + 0.5rem);
  width: var(--lmsl-a11y-icone-tamanho);
  height: var(--lmsl-a11y-icone-tamanho);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.1s ease, filter 0.2s ease;
}

.lmsl-a11y__fab:hover {
  filter: brightness(1.08);
}

.lmsl-a11y__fab:active {
  transform: scale(0.98);
}

.lmsl-a11y__fab:focus {
  outline: none;
  filter: brightness(1.08);
}

.lmsl-a11y__fab-icone {
  display: block;
  width: var(--lmsl-a11y-icone-tamanho);
  height: var(--lmsl-a11y-icone-tamanho);
  /* Ícone de acessibilidade fornecido pelo projeto */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.lmsl-a11y__painel {
  position: fixed;
  z-index: 10000052;
  right: var(--lmsl-flutuante-crisp-dir);
  left: auto;
  bottom: calc(var(--lmsl-flutuante-bottom) + 3.45rem + 0.5rem + 3.45rem + 0.65rem);
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(32rem, 78vh);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 108, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-sizing: border-box;
}

.lmsl-a11y__painel[hidden] {
  display: none !important;
}

.lmsl-a11y__painel-cab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #1f646c;
  color: #fff;
}

.lmsl-a11y__titulo {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lmsl-a11y__fechar {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lmsl-a11y__fechar:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lmsl-a11y__corpo {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0.75rem;
  background: #eef3f4;
}

.lmsl-a11y__info {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  background: rgba(31, 100, 108, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-a11y__info-texto {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  line-height: 1.45;
  color: #1f3d42;
}

.lmsl-a11y__info-texto:last-child {
  margin-bottom: 0;
}

.lmsl-a11y__info a {
  color: #1f646c;
  font-weight: 700;
}

.lmsl-a11y__live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lmsl-a11y__grelha {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (max-width: 380px) {
  .lmsl-a11y__grelha {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lmsl-a11y__opcao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  margin: 0;
  padding: 0.5rem 0.35rem;
  border: 1px solid rgba(31, 100, 108, 0.15);
  border-radius: 10px;
  background: #fff;
  color: #1f646c;
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lmsl-a11y__opcao:hover {
  border-color: rgba(250, 70, 22, 0.45);
  box-shadow: 0 2px 8px rgba(31, 100, 108, 0.12);
}

.lmsl-a11y__opcao.is-ativo {
  background: rgba(31, 100, 108, 0.1);
  border-color: #1f646c;
  box-shadow: inset 0 0 0 2px #fa4616;
}

.lmsl-a11y__opcao:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #fa4616;
}

.lmsl-a11y__rodape {
  padding: 0.65rem 0.75rem 0.85rem;
  background: #eef3f4;
  border-top: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-a11y__repor {
  width: 100%;
  margin: 0;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 10px;
  background: #fa4616;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lmsl-a11y__repor:hover {
  background: #e03d12;
}

/* Efeitos aplicados em <html> */
html.lmsl-a11y--texto-grande {
  font-size: 118%;
}

html.lmsl-a11y--links a {
  outline: 3px solid #fa4616 !important;
  outline-offset: 2px !important;
}

html.lmsl-a11y--espaco-texto body {
  letter-spacing: 0.06em !important;
  word-spacing: 0.14em !important;
}

html.lmsl-a11y--entrelinhas body {
  line-height: 1.85 !important;
}

html.lmsl-a11y--reduzir-movimento *,
html.lmsl-a11y--reduzir-movimento *::before,
html.lmsl-a11y--reduzir-movimento *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.lmsl-a11y--imagens-suaves img {
  opacity: 0.35 !important;
  filter: grayscale(0.85) !important;
}

html.lmsl-a11y--dislexia body {
  font-family: "Lucida Sans Unicode", "DejaVu Sans", Verdana, sans-serif !important;
  letter-spacing: 0.04em !important;
}

html.lmsl-a11y--cursor-grande,
html.lmsl-a11y--cursor-grande * {
  cursor: help !important;
}

html.lmsl-a11y--justificado #conteudo {
  text-align: justify !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: #1f646c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Área principal (carrossel + conteúdo + templates): empurra o rodapé para baixo em todas as “páginas” */
.site-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Espaço para a barra fixa (.ul.site-nav__bar, 60px): evita que heróis/kickers fiquem por baixo do menu */
  padding-top: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#conteudo {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-left: clamp(0.35rem, 2vw, 1rem);
  padding-right: clamp(0.35rem, 2vw, 1rem);
  /* Claro com matiz petróleo (sem branco puro) — legível e alinhado ao carrossel */
  background-color: #bfd8df;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Bloco newsletter + rodapé em largura total da viewport (evita “margens” laterais da tabela antiga) */
.page-footer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #1f646c;
  overflow-x: hidden;
  flex-shrink: 0;
}

.bottom {
  background-color: #1f646c;
  width: 100%;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  padding: 40px;
  margin: 0 auto;
}

.bottom.bottom--newsletter {
  height: auto;
  min-height: unset;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 0.65rem clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
}

.bottom.bottom--newsletter .bottom_newsletter {
  width: auto;
  max-width: min(22rem, 100%);
  height: auto;
  flex: 1 1 12rem;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.bottom.bottom--newsletter .newsletter-strip__intro {
  margin: 0;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.78rem, 1.9vw, 0.875rem);
  line-height: 1.35;
  font-weight: 600;
}

.bottom.bottom--newsletter .bottom_form {
  flex: 2 1 18rem;
  height: auto;
  min-height: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 0.45rem 0.55rem;
}

/* Campos “de formulário” sobre o mesmo fundo petróleo da faixa — sem caixa clara */
.bottom.bottom--newsletter .bottom_input {
  flex: 1 1 8.5rem;
  max-width: 12rem;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0.15rem 0 0.28rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bottom.bottom--newsletter .bottom_input:focus-within {
  border-bottom-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 0 rgba(250, 70, 22, 0.65);
}

.bottom.bottom--newsletter .newsletter-strip__label {
  font-family: "Lato", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.bottom.bottom--newsletter .newsletter-strip__input {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.08rem 0 0.06rem;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.bottom.bottom--newsletter .newsletter-strip__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.bottom.bottom--newsletter .bottom_submit.newsletter-strip__btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 6.75rem;
  height: auto;
  margin: 0;
  padding: 0.38rem 1.1rem;
  border: none;
  border-radius: 999px;
  background-color: #fa4616;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.25;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(250, 70, 22, 0.35);
  align-self: center;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.bottom.bottom--newsletter .bottom_submit.newsletter-strip__btn:hover {
  background-color: #e03d12;
  box-shadow: 0 3px 12px rgba(250, 70, 22, 0.42);
}

@media (max-width: 540px) {
  .bottom.bottom--newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .bottom.bottom--newsletter .bottom_newsletter {
    flex: 1 1 auto;
    max-width: none;
  }

  .bottom.bottom--newsletter .bottom_form {
    flex-direction: column;
    align-items: stretch;
  }

  .bottom.bottom--newsletter .bottom_input {
    max-width: none;
    flex: 1 1 auto;
  }

  .bottom.bottom--newsletter .bottom_submit.newsletter-strip__btn {
    width: 100%;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.site-footer__copyright {
  margin: 0;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.35rem;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.12);
  line-height: 1.5;
  word-break: break-word;
  hyphens: auto;
}

.bottom_form {
  width: 100%;
  height: 200px;
  display: flex;
  margin: 20px;
}

.contato_form {
  display: flex;
}

.contato_input {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #ffffff;
  width: 50%;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-style: solid;
  padding: 5px;
  margin: 5px;
}

.bottom_newsletter {
  font-family: "Lato", sans-serif;
  padding: 15px;
  margin: 0px;
  width: 450px;
  height: 60px;
  display: flex;
}

.bottom_input {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #ffffff;
  width: 241px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-style: solid;
  padding: 5px;
  margin: 5px;
}

.bottom_submit {
  font-family: "Lato", sans-serif;
  width: 211px;
  height: 30px;
  border: 1px solid #fa4616;
  padding: 20px;
  margin: 5px;
  background-color: #fa4616;
  color: #fff;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bottom_submit:hover {
  background-color: #e03d12;
  border-color: #e03d12;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    0 0 18px rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(250, 70, 22, 0.35);
}

.bottom_submit:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

.bottom_submit::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}


/* Rodapé institucional (substitui bloco antigo Parceiros + contatos em grade) */
.site-footer {
  background: linear-gradient(155deg, #0f5a5f 0%, #0f4f56 48%, #0d454d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.site-footer__inner {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: 2.4rem clamp(1rem, 4vw, 2.5rem) 1.9rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.95fr 0.95fr 0.78fr;
  gap: 1.75rem 1.5rem;
  align-items: start;
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

/* Logo + selo “Desde 1919” na mesma linha (como no topo do site) */
.site-footer__brand-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  flex-wrap: nowrap;
  max-width: 100%;
}

.site-footer__brand-inner .site-footer__logo-slot {
  margin-bottom: 0;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 16rem;
}

.site-footer__heading {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fa4616;
}

.site-footer__address {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.6;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__address-line {
  display: block;
  padding: 0.14rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__address-line:last-child {
  border-bottom: none;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  line-height: 1.75;
}

.site-footer__list li {
  margin-bottom: 0.12rem;
  padding: 0.12rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer__list a:hover {
  color: #fff;
  border-bottom-color: rgba(250, 70, 22, 0.6);
}

.site-footer__list a.site-footer__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  border: 1px solid #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 0.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, border-bottom-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-footer__list a.site-footer__wa-btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.site-footer__list a.site-footer__wa-btn:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff !important;
  border-bottom-color: #1ebe5d;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 0 22px rgba(255, 255, 255, 0.35),
    0 14px 30px rgba(37, 211, 102, 0.35);
}

.site-footer__list a.site-footer__wa-btn:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

.site-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer__social-link {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  color: #fa4616;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.12s ease;
  text-decoration: none;
}

.site-footer__social-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__social-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer__social-link--facebook svg {
  background: #fff;
  color: #1f646c;
  border-radius: 4px;
  padding: 2px;
  box-sizing: border-box;
}

.site-footer__bottom {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.site-footer__copyright {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  background: transparent;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .site-footer__block--social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

}

.ul {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #216b74 0%, #1f646c 38%, #1a565e 100%);
  position: fixed;
  top: 0;
  height: 60px;
  line-height: 30px;
  width: 100%;
  z-index: 99998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 6px 28px rgba(6, 36, 40, 0.28), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

/* [LOGO] — [itens distribuídos na faixa central] — [PORTAL] */
.ul.site-nav__bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.ul.site-nav__bar > .li,
.ul.site-nav__bar > .site-nav__cluster {
  float: none;
}

.ul.site-nav__bar > .li {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ul.site-nav__brand {
  flex-shrink: 0;
}

.site-nav__brand-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  flex-wrap: nowrap;
  max-width: 100%;
}

.site-nav__heritage-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #eba434;
  background: rgba(235, 164, 52, 0.1);
  border: 1px solid rgba(235, 164, 52, 0.42);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: none;
}

/* Zona central ocupa o espaço entre logo e portal; links repartidos com space-evenly */
.site-nav__cluster {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-nav__cluster-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
  gap: clamp(0.35rem, 2.2vw, 1.75rem);
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 clamp(0.35rem, 2vw, 1rem);
  box-sizing: border-box;
  list-style: none;
}

.site-nav__cluster-list > .li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  float: none;
}

.site-nav__cluster-list > .li > a,
.site-nav__cluster-list > .li.direto {
  position: relative;
  z-index: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.38s var(--lmsl-nav-ease-out), box-shadow 0.38s ease, color 0.28s ease, transform 0.32s var(--lmsl-nav-ease);
}

/* Detalhe inferior (filete dourado → laranja) ao focar / hover */
.site-nav__cluster-list > .li > a::after,
.site-nav__cluster-list > .li.direto::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #eba434 0%, rgba(255, 255, 255, 0.55) 45%, #fa4616 100%);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.35s var(--lmsl-nav-ease-out), transform 0.42s var(--lmsl-nav-ease);
  pointer-events: none;
}

/* Hover e item com submenu aberto: gradiente + luz interna */
.ul.site-nav__bar .site-nav__cluster-list > .li > a:hover,
.ul.site-nav__bar .site-nav__cluster-list > .li.direto:hover,
.ul.site-nav__bar .site-nav__cluster-list > .li.site-nav__item--aberto > a,
.ul.site-nav__bar .site-nav__cluster-list > .li.direto.site-nav__item--aberto {
  background: linear-gradient(165deg, #ff6a35 0%, #fa4616 42%, #d63a0f 92%, #c4330d 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(250, 70, 22, 0.32);
}

.ul.site-nav__bar .site-nav__cluster-list > .li > a:hover::after,
.ul.site-nav__bar .site-nav__cluster-list > .li.direto:hover::after,
.ul.site-nav__bar .site-nav__cluster-list > .li.site-nav__item--aberto > a::after,
.ul.site-nav__bar .site-nav__cluster-list > .li.direto.site-nav__item--aberto::after {
  opacity: 1;
  transform: scaleX(1);
}

.ul.site-nav__bar > .li--portal-familia {
  flex-shrink: 0;
}

.site-nav__toggle {
  display: none;
}

/* Desktop: nunca exibir o botão hambúrguer */
.ul.site-nav__bar > .site-nav__toggle {
  display: none !important;
}

.site-nav__toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.site-nav__toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-nav__toggle-btn:active {
  transform: scale(0.98);
}

.site-nav__toggle-btn:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.site-nav__hamburger,
.site-nav__hamburger::before,
.site-nav__hamburger::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
  content: "";
}

.site-nav__hamburger {
  position: relative;
}

.site-nav__hamburger::before {
  position: absolute;
  top: -0.34rem;
  left: 0;
}

.site-nav__hamburger::after {
  position: absolute;
  top: 0.34rem;
  left: 0;
}

.site-nav.site-nav--aberto .site-nav__hamburger {
  background: transparent;
}

.site-nav.site-nav--aberto .site-nav__hamburger::before {
  transform: translateY(0.34rem) rotate(45deg);
}

.site-nav.site-nav--aberto .site-nav__hamburger::after {
  transform: translateY(-0.34rem) rotate(-45deg);
}

/* Painéis suspensos: cartão com profundidade e vidro leve */
.site-nav__subpanel {
  min-width: 11.75rem;
  max-width: min(22rem, calc(100vw - 0.75rem));
  max-height: min(70vh, calc(100dvh - 4.5rem));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(168deg, rgba(42, 98, 108, 0.97) 0%, rgba(28, 78, 86, 0.98) 48%, rgba(20, 58, 64, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top: 3px solid #fa4616;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 24px 56px rgba(4, 28, 32, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.site-nav__subpanel__list {
  margin: 0;
  padding: 0.55rem 0.72rem 0.8rem;
  list-style: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  .ul.site-nav__bar {
    height: 60px;
    min-height: 60px;
    flex-wrap: nowrap;
    align-items: center;
    overflow: visible;
    padding: 0 0.35rem;
    gap: 0.35rem;
  }

  .site-nav__toggle {
    display: flex !important;
    margin-left: auto;
  }

  .site-nav__cluster {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    padding: 0.35rem 0.5rem 0.65rem;
    background: linear-gradient(180deg, rgba(24, 75, 82, 0.98) 0%, rgba(20, 63, 69, 0.99) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(4, 28, 32, 0.38);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  .site-nav.site-nav--aberto .site-nav__cluster {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav__cluster-list {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .site-nav__cluster-list > .li {
    width: 100%;
    min-width: 100%;
  }

  .site-nav__cluster-list > .li > a,
  .site-nav__cluster-list > .li.direto {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .ul.site-nav__bar .li a,
  .ul.site-nav__bar .direto {
    padding: 0.7rem 0.78rem;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .ul.site-nav__bar > .li--portal-familia {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .ul.site-nav__bar .li--portal-familia .nav-portal-familia {
    min-width: 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    min-height: 2.35rem;
    padding: 0;
    margin-left: 0.15rem;
    border-left: none;
    font-size: 0.56rem;
    border-radius: 12px;
    justify-content: center;
  }

  .ul.site-nav__bar .nav-portal-familia__texto {
    display: none;
  }

  .ul.site-nav__bar .nav-portal-familia__ico {
    margin-right: 0;
  }

  .site-nav__heritage-badge {
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
    letter-spacing: 0.05em;
  }

  .site-nav__subpanel {
    top: 60px !important;
  }

}

@media (max-width: 520px) {
  .ul.site-nav__bar .li--portal-familia .nav-portal-familia__texto {
    max-width: 3.8rem;
  }

  .site-nav__toggle-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

}

/* Faixa reservada abaixo do menu para futuros destaques */
.home-carousel {
  width: 100%;
  min-height: clamp(200px, 42vw, 420px);
  max-height: 520px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #cce3e8 0%, #b0d0d9 100%);
  border-bottom: 1px solid rgba(31, 100, 108, 0.15);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.home-carousel__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: inherit;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-carousel__track {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.home-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.home-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.home-carousel__img {
  width: 100%;
  height: clamp(200px, 42vw, 420px);
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
}

.home-carousel__placeholder {
  object-fit: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(31, 100, 108, 0.35);
  box-sizing: border-box;
}

.home-carousel__nav,
.home-carousel__dots {
  display: none;
}

.home-carousel--ready .home-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 100, 108, 0.78);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.home-carousel--ready .home-carousel__nav--prev {
  left: 1rem;
}

.home-carousel--ready .home-carousel__nav--next {
  right: 1rem;
}

.home-carousel--ready .home-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}

.home-carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.home-carousel__dot.is-active {
  background: #fa4616;
}

.home-carousel--ballet {
  min-height: 0;
  background: transparent;
}

.home-carousel--ballet .home-carousel__inner {
  max-width: none;
  height: auto;
}

.home-carousel--ballet .home-carousel__track {
  min-height: 0;
  aspect-ratio: 1920 / 650;
}

.home-carousel__slide--ballet {
  cursor: pointer;
}

.home-carousel__video {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: 1920 / 650;
  object-fit: fill;
  object-position: center center;
  display: block;
}

.home-carousel__slide--ballet:focus-visible {
  outline: 3px solid #fa4616;
  outline-offset: -6px;
}

/* Espaços reservados no lugar de fotos / ilustrações */
.media-placeholder--page {
  width: 100%;
  min-height: min(52vh, 520px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.media-placeholder--inline {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.media-placeholder--backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  z-index: 0;
}

.pg-agenda-panel {
  background: rgba(31, 100, 108, 0.72);
  min-height: calc(100vh - 60px);
  box-sizing: border-box;
}

.agenda-spacer-top {
  height: 60px;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 2.5rem;
  box-sizing: border-box;
}

.agenda-intro {
  position: sticky;
  top: 80px;
  padding: 0.5rem 0;
}

.agenda-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.6rem;
  color: #f7c76a;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-intro__eyebrow::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: rgba(247, 199, 106, 0.75);
}

.agenda-intro__title {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.035em;
}

.agenda-intro__subtitle {
  margin: 0 0 1.25rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.agenda-intro__body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.agenda-intro__body p {
  margin: 0 0 1rem;
}

.agenda-intro__benefits {
  display: grid;
  gap: 0.62rem;
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.agenda-intro__benefits li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 255, 255, 0.92);
}

.agenda-intro__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  background: rgba(250, 70, 22, 0.18);
  color: #f7c76a;
  font-size: 0.72rem;
  font-weight: 800;
}

.agenda-intro__steps-title {
  margin: 0 0 0.7rem;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agenda-intro__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.agenda-intro__steps::before {
  content: none;
}

.agenda-intro__steps article {
  position: relative;
  overflow: hidden;
  min-height: 5.25rem;
  padding: 0.78rem 0.72rem;
  border: 1px solid rgba(247, 199, 106, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(3, 23, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.agenda-intro__steps article:hover {
  border-color: rgba(247, 199, 106, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(247, 199, 106, 0.32),
    0 16px 34px rgba(3, 23, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.agenda-intro__steps article::before {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(247, 199, 106, 0.18);
  box-shadow: inset 0 0 18px rgba(247, 199, 106, 0.12);
  opacity: 1;
  pointer-events: none;
}

.agenda-intro__steps strong {
  display: block;
  margin-bottom: 0.42rem;
  color: #f7c76a;
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.agenda-intro__steps span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.35;
}

.agenda-intro__hint {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.15);
  border-left: 3px solid #fa4616;
  border-radius: 0 6px 6px 0;
}

.agenda-intro__link {
  color: #fa4616;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(250, 70, 22, 0.45);
}

.agenda-intro__link:hover {
  color: #ff7a4d;
  border-bottom-color: rgba(255, 122, 77, 0.7);
}

.agenda-form-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  color: #1f646c;
  border-radius: 12px;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  border: 1px solid rgba(31, 100, 108, 0.08);
}

.agenda-form-panel > * {
  position: relative;
  z-index: 1;
}

.agenda-form__promise {
  margin: 0 0 0.7rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.3;
  color: #1f646c;
}

.agenda-form__lead {
  margin: 0 0 0.85rem;
  padding: 0.5rem 0.65rem;
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #5a7a80;
  background: rgba(31, 100, 108, 0.06);
  border-radius: 8px;
  border-left: 3px solid #fa4616;
}

.agenda-form__block {
  margin: 0;
  padding: 0;
}

.agenda-form__heading {
  margin: 0 0 0.75rem;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f646c;
}

.agenda-form__heading--legend {
  padding: 0;
  margin: 0 0 0.75rem;
  width: 100%;
}

.agenda-form-panel fieldset.aluno.agenda-form__block {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.agenda-form-panel #alunos {
  margin-top: 1.05rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 100, 108, 0.12);
}

.agenda-form-panel .form-group {
  color: #3d5c62;
  margin-bottom: 0.6rem;
}

.agenda-form-panel label,
.agenda-form-panel .agenda-label {
  color: #1f646c;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 0.28rem;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.agenda-form-panel .agenda-label__text {
  flex: 1;
  min-width: 0;
}

.agenda-form-panel .agenda-req {
  color: #fa4616;
  font-weight: 800;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.agenda-form-panel .form-control {
  color: #1a1a1a;
  background-color: #fff;
  border: 1px solid rgba(31, 100, 108, 0.22);
  padding: 8px 12px;
  font-size: 0.875rem;
  min-height: 40px;
  line-height: 1.35;
}

.agenda-form-panel .agenda-input {
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.agenda-form-panel .agenda-input::placeholder {
  color: #94a8ac;
  opacity: 1;
}

.agenda-form-panel .agenda-input:hover {
  border-color: rgba(31, 100, 108, 0.35);
}

.agenda-form-panel .agenda-input:focus {
  outline: none;
  border-color: #1f646c;
  box-shadow: 0 0 0 3px rgba(31, 100, 108, 0.18);
}

.agenda-form-panel .agenda-textarea {
  width: 100%;
  min-height: 6rem;
  resize: vertical;
  box-sizing: border-box;
}

.agenda-form-panel select.form-control,
.agenda-form-panel .agenda-select {
  padding-top: 7px;
  padding-bottom: 7px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f646c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.25rem;
}

.agenda-form-panel select.agenda-select option {
  color: #1a1a1a;
}

.agenda-form-panel .input-group {
  flex-wrap: wrap;
  gap: 0.25rem;
}

.agenda-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0;
}

.agenda-form-row .form-group {
  margin-bottom: 0.55rem;
}

.agenda-field-hint {
  display: block;
  margin-top: 0.35rem;
  padding: 0.35rem 0.5rem 0.35rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #4d6d73;
  background: rgba(31, 100, 108, 0.07);
  border-radius: 6px;
  border-left: 2px solid rgba(31, 100, 108, 0.35);
}

.agenda-tel-erro {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: #b71c1c;
}

.agenda-tel-erro[hidden] {
  display: none !important;
}

.agenda-form__actions {
  margin: 0.85rem 0 0;
  display: flex;
  justify-content: stretch;
}

.agenda-form__actions .bottom_submit {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  height: auto;
  min-height: 44px;
  padding: 10px 14px;
  line-height: 1.2;
}

.agenda-form__submit {
  position: relative;
  overflow: hidden;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(250, 70, 22, 0.35);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.agenda-form__submit:hover {
  background-color: #e03d12;
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    0 0 20px rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(250, 70, 22, 0.44);
  transform: translateY(-2px);
}

.agenda-form__submit:active {
  transform: translateY(1px);
}

.agenda-form__submit::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.agenda-form__submit:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

@media (max-width: 860px) {
  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .agenda-intro {
    position: static;
  }

  .agenda-intro__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .agenda-form-row {
    grid-template-columns: 1fr;
  }
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.85rem;
  min-height: 2.85rem;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: transparent;
  background-image: url("logo_branca.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.35s var(--lmsl-nav-ease-out), box-shadow 0.35s ease;
}

/* Logotipo em blocos de conteúdo (caminho relativo à raiz do site no HTML) */
.lmsl-inline-logo {
  display: block;
  width: min(70%, 180px);
  max-width: 180px;
  height: auto;
  max-height: 48px;
  margin-bottom: 0.5rem;
  object-fit: contain;
  object-position: left center;
}

.lmsl-logo-card {
  display: block;
  width: 168px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  cursor: pointer;
}

.site-footer__logo-slot {
  width: 164px;
  height: 54px;
  max-height: 58px;
  margin-bottom: 0.65rem;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  background-image: url("logo_branca.svg");
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
}

.bandeira-slot {
  display: inline-block;
  width: 22px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  vertical-align: middle;
}

.li {
  float: left;
  font-family: "Lato", sans-serif;
}

.li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.direto {
  font-family: "Lato", sans-serif;
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.ul .li a:hover:not(.active) {
  background: linear-gradient(165deg, #ff6a35 0%, #fa4616 42%, #d63a0f 92%, #c4330d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Portal da Família — à direita, destaque em laranja institucional */
.li--portal-familia {
  float: none;
}

.nav-portal-familia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  min-height: 60px;
  padding: 10px 14px 10px 16px;
  margin-left: 2px;
  border-left: 3px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(165deg, #ff6a35 0%, #fa4616 38%, #d63a0f 78%, #b8320c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 22px rgba(250, 70, 22, 0.22);
  transition: background 0.35s var(--lmsl-nav-ease-out), box-shadow 0.35s ease;
}

.nav-portal-familia:hover {
  background: linear-gradient(165deg, #ff7a45 0%, #ff5c2b 35%, #fa4616 60%, #e03d12 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 28px rgba(250, 70, 22, 0.32);
  color: #fff !important;
}

.nav-portal-familia__ico {
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0.92;
}

.nav-portal-familia__texto {
  max-width: 7.5rem;
}

.lmsl-lp__foto-slot .media-placeholder--page,
.lmsl-lp__card .media-placeholder--page.foto-espaco {
  background: rgba(31, 100, 108, 0.07);
  border-color: rgba(31, 100, 108, 0.28);
}

.li .nav-logo:hover {
  background-color: transparent;
  background-image: url("logo_branca.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  box-shadow: none;
}

.li_vertical a {
  font-family: Lato, sans-serif;
  list-style: none;
  color: white;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
}

/* Itens dos submenus: tipografia e hover refinado */
.li_vertical.direto {
  margin: 0.12rem 0;
  padding: 0.75rem 1rem 0.75rem 0.88rem;
  border-radius: 11px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid transparent;
  transition: background 0.34s var(--lmsl-nav-ease-out), box-shadow 0.34s ease, border-color 0.25s ease, color 0.25s ease, transform 0.32s var(--lmsl-nav-ease);
}

.li_vertical.direto:hover {
  background: linear-gradient(92deg, rgba(250, 70, 22, 0.98) 0%, #fa4616 38%, #ff7a45 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 20px rgba(250, 70, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateX(4px);
}

.li_vertical--destaque {
  border-color: rgba(236, 181, 84, 0.38);
  box-shadow: inset 3px 0 0 rgba(236, 181, 84, 0.72);
  color: #fff7df;
}

.contato {
  background-color: #fa4616;
  color: #fff;
  border: 1px solid #fa4616;
  cursor: pointer;
  text-align: center;
}

.via-list-midias-sociais {
  padding-left: 0;
  margin-left: -20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.uk-icon-button {
  box-sizing: border-box;
  width: 51px;
  height: 51px;
  border-radius: 2px;
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  color: #fa4616;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, background-size, border-color, box-shadow;
  border: 1px solid #fa4616;
  box-shadow: 0 19px 21px 0 transparent;
  margin-right: 40px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:not([type="checkbox"]) {
  font-family: "Open Sans Regular", "Open Sans", sans-serif;
  font-size: 14px;
  color: #014115;
  font-weight: normal;
  font-style: normal;
  width: calc(100% - 15px);
  height: 30px;
  margin-bottom: 10px;
  border: 1px #999999 solid;
  text-align: left;
  padding: 6px;
}

.mensagem-erro {
  color: red;
  font-size: 10px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
  color: #918a8a;
}

.bandeira-li {
  list-style: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 0px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.input-group .input-ddi {
  position: relative;
  z-index: 2;
  float: left;
  width: 50px !important;
  margin-bottom: 0;
}

#bandeiraAtual {
  max-height: 43px;
  display: flex;
  align-items: center;
  border-radius: 5px 0px 0px 5px;
}

.btn {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: none;
}

fieldset.aluno {
  padding: 30px 20px;
  margin-bottom: 2rem;
  background-color: #faf8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

a:link,
a:visited {
  color: #ffffff;
}

/* Aviso temporário em formulários (substitui alert) */
.form-dev-notice {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  max-width: 90vw;
  padding: 12px 20px;
  background: #1f646c;
  color: #fff;
  border: 1px solid #fa4616;
  border-radius: 8px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-dev-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Banner de cookies: globo à esquerda + botão fixo para gerenciar */
.lmsl-cookie {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #1a3a3e;
}

.lmsl-cookie__fab {
  position: fixed;
  left: var(--lmsl-flutuante-cookies-esq);
  /* Alinha o centro vertical com o globo do chat */
  bottom: calc(var(--lmsl-flutuante-bottom) + (var(--lmsl-flutuante-base-tamanho) - var(--lmsl-cookie-icone-tamanho)) / 2);
  z-index: 10000050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: var(--lmsl-cookie-icone-tamanho);
  height: var(--lmsl-cookie-icone-tamanho);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, filter 0.2s ease, opacity 0.25s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.lmsl-cookie__fab.is-visivel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lmsl-cookie__fab:hover {
  filter: brightness(1.08);
}

.lmsl-cookie__fab:active {
  transform: scale(0.98);
}

.lmsl-cookie__fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.lmsl-cookie__fab-svg {
  display: block;
  width: var(--lmsl-cookie-icone-tamanho);
  height: var(--lmsl-cookie-icone-tamanho);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}

.lmsl-cookie__fab-corpo {
  fill: #ffffff;
}

/* “Gotas”: cor do fundo do botão (efeito recorte no biscoito branco) */
.lmsl-cookie__fab-recorte {
  fill: var(--lmsl-fab-bg);
}

.lmsl-cookie__fab-migalha {
  fill: #ffffff;
}

.lmsl-cookie__panel {
  position: fixed;
  left: var(--lmsl-flutuante-cookies-esq);
  /* Acima do botão de acessibilidade + botão de cookies */
  bottom: calc(var(--lmsl-flutuante-bottom) + 3.45rem + 0.5rem + 3.45rem + 0.65rem);
  z-index: 10000060;
  max-width: min(22rem, calc(100vw - 1.5rem));
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.lmsl-cookie__panel[hidden] {
  display: none;
}

.lmsl-cookie__panel.is-aberto {
  display: block;
  animation: lmsl-cookie-entra 0.35s ease forwards;
}

@keyframes lmsl-cookie-entra {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lmsl-cookie__panel-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  color: #1f646c;
  border: 1px solid rgba(31, 100, 108, 0.1);
  border-left: 3px solid #fa4616;
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1rem;
  padding-top: 2.45rem;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.lmsl-cookie__fechar {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(31, 100, 108, 0.1);
  color: #1f646c;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.lmsl-cookie__fechar:hover {
  background: rgba(250, 70, 22, 0.2);
  color: #c73710;
}

.lmsl-cookie__fechar:active {
  transform: scale(0.92);
}

.lmsl-cookie__fechar:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1f646c;
}

.lmsl-cookie__titulo {
  margin: 0 0 0.5rem;
  padding-right: 2rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f646c;
}

.lmsl-cookie__texto {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #3d5c62;
}

.lmsl-cookie__lista {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.lmsl-cookie__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-cookie__item:last-child {
  border-bottom: none;
}

.lmsl-cookie__rotulo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1f646c;
}

.lmsl-cookie__detalhe {
  font-size: 0.7rem;
  color: #6b8a90;
}

.lmsl-cookie__botoes {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.lmsl-cookie__btn {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lmsl-cookie__btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.lmsl-cookie__btn:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

.lmsl-cookie__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.lmsl-cookie__btn--primario {
  background: #fa4616;
  color: #fff;
  border-color: #fa4616;
}

.lmsl-cookie__btn--secundario {
  background: #fff;
  color: #1f646c;
  border-color: rgba(31, 100, 108, 0.35);
}

.lmsl-cookie__btn--salvar {
  background: #1f646c;
  color: #fff;
  border-color: #1f646c;
}

.lmsl-cookie__btn--primario:hover {
  background: #e03d12;
  border-color: #e03d12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    0 0 20px rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(250, 70, 22, 0.44);
}

.lmsl-cookie__btn--secundario:hover {
  background: rgba(31, 100, 108, 0.1);
  border-color: rgba(31, 100, 108, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 0 14px rgba(250, 70, 22, 0.22),
    0 12px 26px rgba(31, 100, 108, 0.14);
}

.lmsl-cookie__btn--salvar:hover {
  background: #174f56;
  border-color: #174f56;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 0 18px rgba(250, 70, 22, 0.28),
    0 14px 28px rgba(31, 100, 108, 0.26);
}

.lmsl-cookie__rodape {
  margin: 0;
  font-size: 0.72rem;
  color: #5a7a80;
}

.lmsl-cookie__rodape a {
  color: #fa4616;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lmsl-cookie__rodape a:hover {
  color: #e03d12;
}

@media (min-width: 480px) {
  .lmsl-cookie__botoes {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lmsl-cookie__btn--primario {
    flex: 1 1 auto;
    min-width: 7rem;
  }

  .lmsl-cookie__btn--secundario,
  .lmsl-cookie__btn--salvar {
    flex: 1 1 auto;
    min-width: 7rem;
  }
}

/* ---------- Landing pages (#pg_*) — LMSL ---------- */
.lmsl-lp {
  font-family: "Lato", sans-serif;
  color: #1f646c;
  line-height: 1.55;
  padding: 0 0 2.5rem;
  box-sizing: border-box;
}

.lmsl-lp__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.75rem);
  box-sizing: border-box;
}

.lmsl-lp__hero {
  background: linear-gradient(135deg, #1a575e 0%, #1f646c 42%, #2a6f78 100%);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 28px rgba(31, 100, 108, 0.22);
}

/* Nossa História: banner ampliado — só textos institucionais + área vazia para imagem */
.lmsl-lp--nossa-historia .lmsl-nh-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.15fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  min-height: clamp(22rem, 48vw, 32rem);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 3.5vw, 2.5rem);
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy {
  max-width: 36rem;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy .lmsl-lp__hero-pride {
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  max-width: none;
  margin-bottom: 0.65rem;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy .lmsl-lp__destaque-anos {
  font-size: clamp(1.28rem, 3.6vw, 1.85rem);
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy .lmsl-lp__kicker {
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy .lmsl-lp__title {
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  margin-bottom: 0.85rem;
  line-height: 1.12;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__copy .lmsl-lp__subtitle {
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  line-height: 1.55;
  max-width: none;
  opacity: 0.97;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__media {
  position: relative;
  min-height: clamp(16rem, 38vw, 26rem);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__media:has(.lmsl-nh-banner__img) {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 0;
  overflow: hidden;
}

.lmsl-lp--nossa-historia .lmsl-nh-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(16rem, 38vw, 26rem);
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .lmsl-lp--nossa-historia .lmsl-nh-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lmsl-lp--nossa-historia .lmsl-nh-banner__media {
    min-height: clamp(14rem, 52vw, 20rem);
  }
}

/* Nossa História: bloco Missão / Tradição / Prioridade + CTA visita */
.lmsl-nh-valores {
  margin: 2.5rem 0 2rem;
  padding: 0;
}

.lmsl-nh-valores__lead {
  margin: -0.35rem 0 1.35rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a656b;
}

.lmsl-nh-valores__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.lmsl-nh-valores__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.25rem 1.2rem 1.35rem;
  background: linear-gradient(165deg, #fff 0%, #f4fafb 100%);
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(31, 100, 108, 0.07);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lmsl-nh-valores__card:hover {
  border-color: rgba(31, 100, 108, 0.22);
  box-shadow: 0 8px 28px rgba(31, 100, 108, 0.11);
}

.lmsl-nh-valores__icone {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 100, 108, 0.12) 0%, rgba(31, 100, 108, 0.06) 100%);
  color: #1f646c;
}

.lmsl-nh-valores__icone svg {
  width: 1.35rem;
  height: 1.35rem;
}

.lmsl-nh-valores__titulo {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f646c;
  line-height: 1.25;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid rgba(250, 70, 22, 0.35);
}

/* Mesmo padrão visual dos «Números em destaque» da home (+valor + legenda) */
.lmsl-nh-valores__stat {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0 0.5rem;
  border-top: 1px solid rgba(31, 100, 108, 0.12);
  border-bottom: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-nh-valores__stat-valor {
  margin: 0 0 0.3rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1;
  font-weight: 700;
  color: #fa4616;
}

.lmsl-nh-valores__stat-legenda {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #3d5c62;
}

.lmsl-nh-valores__texto {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3d5c62;
  flex: 1 1 auto;
}

.lmsl-nh-valores__rodape {
  margin-top: 1.75rem;
  padding: 1.5rem 1.35rem;
  text-align: center;
  background: linear-gradient(135deg, #1a575e 0%, #1f646c 50%, #236b74 100%);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(31, 100, 108, 0.2);
}

.lmsl-nh-valores__rodape-texto {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-nh-valores__btn.lmsl-lp__btn--primary {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .lmsl-nh-valores__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-nh-valores__card {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-nh-valores__card {
    transition: none;
  }

  .lmsl-nh-valores__card:hover {
    box-shadow: 0 4px 22px rgba(31, 100, 108, 0.07);
  }
}

/* Página inicial (hero copiado para #conteudo): contraste reforçado no fundo escuro */
.lmsl-lp__hero--home .lmsl-lp__subtitle {
  color: rgba(255, 255, 255, 0.96);
  opacity: 1;
  line-height: 1.55;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.lmsl-lp__hero--home .lmsl-lp__hero-pride {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lmsl-lp__hero--home .lmsl-lp__title {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lmsl-lp__hero--light {
  /* Destaque um pouco mais claro que #conteudo, sempre com tom água-marinha (sem #fff) */
  background: linear-gradient(165deg, #d4e9ee 0%, #bddae3 42%, #a8cad6 100%);
  color: #143d42;
  box-shadow: 0 8px 28px rgba(31, 100, 108, 0.14);
  border: 1px solid rgba(31, 100, 108, 0.18);
}

.lmsl-lp__hero--light .lmsl-lp__title {
  color: #0f3539;
}

.lmsl-lp__hero--light .lmsl-lp__kicker {
  color: #c77d0a;
}

.lmsl-lp__kicker {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eba434;
}

.lmsl-lp__hero .lmsl-lp__kicker {
  color: #eba434;
}

.lmsl-lp__hero-pride {
  margin: 0 0 0.55rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.02rem, 2.4vw, 1.32rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 40rem;
}

.lmsl-lp__hero:not(.lmsl-lp__hero--light) .lmsl-lp__hero-pride {
  color: rgba(255, 255, 255, 0.96);
}

.lmsl-lp__hero--light .lmsl-lp__hero-pride {
  color: #0f3539;
}

.lmsl-lp__destaque-anos {
  display: inline;
  color: #eba434;
  font-weight: 800;
  font-size: clamp(1.12rem, 3.2vw, 1.58rem);
  letter-spacing: 0.015em;
}

.lmsl-lp__destaque-anos--inline {
  font-size: 1.28em;
  font-weight: 800;
  color: #eba434;
  vertical-align: baseline;
}

.lmsl-lp__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.lmsl-lp__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  opacity: 0.95;
  max-width: 42rem;
}

.lmsl-lp__hero--light .lmsl-lp__subtitle {
  opacity: 1;
  color: #2d4a50;
}

.lmsl-lp__section {
  margin-bottom: 2.25rem;
}

.lmsl-lp__section-title {
  margin: 0 0 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  font-weight: 700;
  color: #1f646c;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid #fa4616;
  display: inline-block;
}

.lmsl-lp__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  max-width: 48rem;
}

.lmsl-home-cta {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-left: 4px solid #fa4616;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.lmsl-home-cta .lmsl-lp__section-title {
  margin-bottom: 0.55rem;
}

.lmsl-home-cta .lmsl-lp__text {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lmsl-home-cta--ativ {
  padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1.25rem, 3.2vw, 2.05rem);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 250, 0.88) 55%, rgba(242, 248, 247, 0.72) 100%);
  border: 1px solid rgba(31, 100, 108, 0.1);
  border-left-width: 3px;
  border-left-color: rgba(250, 70, 22, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.lmsl-home-cta__intro {
  margin: 0;
  padding: 0;
  max-width: 28rem;
}

.lmsl-home-cta__eyebrow {
  margin: 0 0 0.52rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 61, 16, 0.92);
}

.lmsl-home-cta__headline {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.28rem, 2.25vw, 1.76rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #0f544f;
}

.lmsl-home-cta__lead {
  margin: 1.08rem 0 0;
  padding: 1.08rem 0 0;
  max-width: 28rem;
  font-size: clamp(0.9rem, 1.38vw, 1.035rem);
  line-height: 1.72;
  font-weight: 400;
  color: rgba(61, 85, 89, 0.95);
  border-top: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-home-cta__valor {
  margin: 1.2rem 0 1.35rem;
  padding: 1.15rem 0 0;
  max-width: 28rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-home-cta__valor-item {
  margin: 0;
  padding: 0.78rem 0 0.78rem 1.05rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  position: relative;
}

.lmsl-home-cta__valor-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(250, 70, 22, 0.45) 0%, rgba(20, 96, 94, 0.22) 100%);
  opacity: 0.9;
}

.lmsl-home-cta__valor-item:first-child {
  padding-top: 0.35rem;
}

.lmsl-home-cta__valor-item:first-child::before {
  top: 0.45rem;
}

.lmsl-home-cta__valor-item + .lmsl-home-cta__valor-item {
  border-top: 1px solid rgba(31, 100, 108, 0.07);
}

.lmsl-home-cta__valor-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(72, 96, 100, 0.98);
}

.lmsl-home-cta__valor-text strong {
  color: #0d4543;
  font-weight: 600;
}

.lmsl-home-cta__btn {
  align-self: flex-start;
  margin-top: 0.12rem;
}

.lmsl-home-cta__list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  color: #2e5258;
  font-size: 0.84rem;
  line-height: 1.5;
}

.lmsl-home-cta__list li {
  margin-bottom: 0.28rem;
}

.lmsl-home-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(1rem, 3vw, 1.65rem);
  align-items: start;
  margin-top: 0.35rem;
}

.lmsl-home-cta--ativ .lmsl-home-cta__layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.26fr);
  gap: clamp(1.35rem, 3.8vw, 2.35rem);
  align-items: center;
  margin-top: 0;
}

.lmsl-home-cta__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lmsl-home-cta__cards-shell {
  min-width: 0;
}

/* Home — cartões dentro do carrossel (faixa deslocada por JS, sem scroll nativo) */
.lmsl-home-ativ-carousel--transform .lmsl-home-atividade-card {
  width: 100%;
  max-width: 100%;
}

.lmsl-home-atividade-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.14);
  background: #fff;
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.09);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.lmsl-home-atividade-card:hover,
.lmsl-home-atividade-card:focus-visible {
  border-color: rgba(250, 70, 22, 0.35);
  box-shadow: 0 10px 28px rgba(31, 100, 108, 0.14);
  transform: translateY(-2px);
}

.lmsl-home-atividade-card:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 3px;
}

.lmsl-home-atividade-card__media {
  flex: 0 0 auto;
  min-height: clamp(118px, 20vw, 150px);
  background:
    linear-gradient(155deg, rgba(31, 100, 108, 0.07) 0%, rgba(250, 70, 22, 0.05) 100%),
    rgba(231, 243, 246, 0.65);
  border-bottom: 1px solid rgba(31, 100, 108, 0.08);
}

.lmsl-home-atividade-card__media .lmsl-home-atividade-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(118px, 20vw, 150px);
  object-fit: cover;
}

.lmsl-home-atividade-card__body {
  flex: 1 1 auto;
  padding: 0.75rem 0.85rem 0.9rem;
}

.lmsl-home-atividade-card__kicker {
  margin: 0 0 0.28rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45d10;
}

.lmsl-home-atividade-card__titulo {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f3539;
}

.lmsl-home-atividade-card__hint {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fa4616;
}

@media (max-width: 980px) {
  .lmsl-home-cta__layout {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .lmsl-home-cta--ativ .lmsl-home-cta__layout {
    gap: 1.35rem;
  }
}

/* Bloco “Contraturno / atividades” na home: lista única + sem “salto” no hover da faixa inteira */
.lmsl-home-cta--ativ .lmsl-home-cta__lead {
  border-top: none;
  padding-top: 0;
  margin-top: 0.85rem;
}

.lmsl-home-cta__valor.lmsl-home-cta__valor--ativ-box {
  margin-top: 1rem;
  padding: 1rem 1.05rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 108, 0.1);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-top: none;
}

.lmsl-home-cta--ativ:hover {
  transform: none;
}

.lmsl-home-contribua__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lmsl-home-contribua__card {
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lmsl-home-contribua__card--doador {
  background: #1a5c5a;
  color: #fff;
}

.lmsl-home-contribua__card--voluntario {
  background: #e05a1a;
  color: #fff;
}

.lmsl-home-contribua__impact {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.lmsl-home-contribua__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.lmsl-home-contribua__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #444;
}

.lmsl-home-contribua__title {
  text-align: center;
}

.lmsl-home-contribua .lmsl-home-cta__list {
  color: inherit;
}

@media (max-width: 640px) {
  .lmsl-home-contribua__grid {
    grid-template-columns: 1fr;
  }
}

.lmsl-home-trabalhe__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.lmsl-home-trabalhe__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a5c5a;
  color: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 180px;
}

.lmsl-home-trabalhe__numero {
  font-size: 3.5rem;
  font-weight: 700;
  color: #e05a1a;
  line-height: 1;
}

.lmsl-home-trabalhe__anos {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.lmsl-home-trabalhe__sub {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .lmsl-home-trabalhe__inner {
    grid-template-columns: 1fr;
  }

  .lmsl-home-trabalhe__visual {
    display: none;
  }
}

.lmsl-home-final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 0.75rem;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(224, 90, 26, 0.34), transparent 34%),
    linear-gradient(135deg, #1a5c5a 0%, #0f3835 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  box-shadow: 0 18px 42px rgba(18, 65, 71, 0.22);
}

.lmsl-home-final-cta::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.lmsl-home-final-cta__content,
.lmsl-home-final-cta__actions {
  position: relative;
  z-index: 1;
}

.lmsl-home-final-cta__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6b487;
}

.lmsl-home-final-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.45rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.lmsl-home-final-cta__text {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.86);
}

.lmsl-home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.lmsl-home-final-cta__btn-main {
  box-shadow: 0 12px 26px rgba(250, 70, 22, 0.35);
}

.lmsl-home-final-cta__btn-alt {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.lmsl-home-final-cta__btn-alt:hover,
.lmsl-home-final-cta__btn-alt:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 760px) {
  .lmsl-home-final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lmsl-home-final-cta__text {
    margin-inline: auto;
  }

  .lmsl-home-final-cta__actions {
    justify-content: center;
  }
}

.lmsl-home-hero {
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(31, 100, 108, 0.12), rgba(250, 70, 22, 0.09));
  border: 1px solid rgba(31, 100, 108, 0.15);
  box-shadow: 0 14px 30px rgba(15, 61, 67, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: stretch;
}

.lmsl-home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lmsl-home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.lmsl-home-hero__cta-main {
  min-width: 230px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(250, 70, 22, 0.34);
  animation: lmslPulseCta 2.8s ease-in-out infinite;
}

.lmsl-home-hero__apoio {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #2b5157;
}

.lmsl-home-hero__media {
  min-height: 220px;
}

.lmsl-home-hero__media-slot {
  height: 100%;
  min-height: 220px;
  border-radius: 14px;
  border: 1px dashed rgba(31, 100, 108, 0.35);
  background: linear-gradient(145deg, rgba(31, 100, 108, 0.09), rgba(250, 70, 22, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f646c;
  line-height: 1.4;
  animation: lmslFloatHeroMedia 5.5s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}

.lmsl-home-hero__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.lmsl-home-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.lmsl-home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.lmsl-home-hero__media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.lmsl-home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.lmsl-home-hero__media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(16, 58, 63, 0.55);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lmsl-home-hero__media-nav--prev {
  left: 0.5rem;
}

.lmsl-home-hero__media-nav--next {
  right: 0.5rem;
}

.lmsl-home-hero__media-dots {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.35rem;
  z-index: 2;
}

.lmsl-home-hero__media-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}

.lmsl-home-hero__media-dot.is-active {
  background: #fa4616;
}

.lmsl-home-hero__media-zoom {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 2;
  border: none;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  background: rgba(16, 58, 63, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.lmsl-home-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.lmsl-home-lightbox.is-open {
  display: flex;
}

.lmsl-home-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 28, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lmsl-home-lightbox__dialog {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(92vw, 980px);
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 44px rgba(8, 28, 34, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.lmsl-home-lightbox__img {
  width: 100%;
  max-height: 88vh;
  display: block;
  object-fit: contain;
  background: rgba(10, 32, 36, 0.35);
}

.lmsl-home-lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(7, 24, 28, 0.62);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lmsl-home-numeros {
  margin-top: 1.1rem;
}

.lmsl-home-numeros,
.lmsl-home-porque,
.lmsl-home-eventos,
.lmsl-home-testemunhos,
.lmsl-home-cta {
  position: relative;
  padding: clamp(0.9rem, 2.2vw, 1.15rem);
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4));
  box-shadow: 0 10px 24px rgba(18, 65, 71, 0.08);
  margin-bottom: 1.1rem;
}

.lmsl-home-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.92fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.lmsl-home-editorial__eyebrow {
  margin: 0 0 0.45rem;
  color: #fa4616;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lmsl-home-editorial__copy .lmsl-lp__section-title {
  max-width: 28rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.lmsl-home-editorial__text {
  max-width: 30rem;
  margin: 0 0 1rem;
  color: #28474c;
  font-size: 0.95rem;
  line-height: 1.6;
}

.lmsl-home-porque__figure {
  margin: 0;
}

.lmsl-home-porque__imagem-unica {
  margin: 0;
  min-height: clamp(220px, 42vw, 440px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background:
    linear-gradient(145deg, rgba(31, 100, 108, 0.06), rgba(250, 70, 22, 0.05)),
    rgba(255, 255, 255, 0.45);
  box-sizing: border-box;
}

.lmsl-home-porque__imagem-unica:empty::after {
  content: "";
  display: block;
  min-height: clamp(220px, 42vw, 440px);
}

.lmsl-home-porque__imagem-unica img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  object-fit: contain;
}
.lmsl-home-editorial__panel {
  position: relative;
  padding: clamp(0.85rem, 2vw, 1.2rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(250, 70, 22, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(31, 100, 108, 0.1), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(31, 100, 108, 0.13);
}

.lmsl-home-numeros__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.lmsl-home-numeros__item {
  min-width: 0;
}

.lmsl-home-numeros__card {
  height: 100%;
  padding: 0.95rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 108, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(240, 248, 250, 0.86));
  box-shadow: 0 8px 20px rgba(31, 100, 108, 0.07);
}

.lmsl-home-numeros__value {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-home-numeros__label {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #28474c;
}

.lmsl-home-eventos__viewport {
  margin-bottom: 0.85rem;
}

.lmsl-home-eventos__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.lmsl-home-eventos__item {
  min-width: 0;
}

.lmsl-home-eventos__card {
  height: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 108, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 247, 249, 0.84));
  box-shadow: 0 8px 20px rgba(31, 100, 108, 0.07);
}

.lmsl-home-eventos__badge {
  margin: 0 0 0.5rem;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(250, 70, 22, 0.14);
  color: #b83e1a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lmsl-home-eventos__title {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f646c;
  line-height: 1.25;
}

.lmsl-home-eventos__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #28474c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lmsl-home-testemunhos__sub {
  font-size: 1rem;
  color: var(--lmsl-cor-texto, #444);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.lmsl-home-testemunhos__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.lmsl-home-testemunhos__viewport {
  overflow: hidden;
  border-radius: 14px;
}

.lmsl-home-testemunhos__track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lmsl-home-testemunhos__item {
  flex: 0 0 calc((100% - 0.85rem) / 2);
  min-width: 0;
}

.lmsl-home-testemunhos__card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  height: 100%;
  min-height: 145px;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(26, 95, 95, 0.1);
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 95, 95, 0.12);
}

.lmsl-home-testemunhos__avatar {
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5f5f 0%, #237777 100%);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(26, 95, 95, 0.18);
}

.lmsl-home-testemunhos__body {
  min-width: 0;
}

.lmsl-home-testemunhos__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.45rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lmsl-home-testemunhos__tag--familia {
  background: rgba(26, 95, 95, 0.11);
  color: #1a5f5f;
}

.lmsl-home-testemunhos__tag--voluntario {
  background: rgba(235, 164, 52, 0.18);
  color: #9a5d04;
}

.lmsl-home-testemunhos__name {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 800;
  color: #1a5f5f;
}

.lmsl-home-testemunhos__quote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
  color: #28474c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lmsl-home-testemunhos__nav {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: #1a5f5f;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(26, 95, 95, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lmsl-home-testemunhos__nav:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

.lmsl-home-ativ-carousel.lmsl-home-ativ-carousel--hero {
  margin: 0;
  width: 100%;
  position: relative;
}

.lmsl-home-ativ-carousel__stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__viewport {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(18, 52, 56, 0.05),
    0 22px 48px rgba(20, 73, 80, 0.14);
  outline: 1px solid rgba(31, 100, 108, 0.12);
  scrollbar-width: thin;
}

/* Variante home: uma slide visível, deslocamento por translate3d — sem barras de scroll */
.lmsl-home-ativ-carousel--transform.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__viewport {
  display: block;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
  scrollbar-width: none;
  position: relative;
}

.lmsl-home-ativ-carousel--transform.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.lmsl-home-ativ-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lmsl-home-ativ-carousel--transform.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__slide {
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: 0;
  scroll-snap-align: none;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-home-ativ-carousel__track {
    transition-duration: 0.01ms;
  }
}

.lmsl-home-ativ-carousel__viewport::-webkit-scrollbar {
  height: 6px;
}

.lmsl-home-ativ-carousel__viewport::-webkit-scrollbar-thumb {
  background: rgba(31, 100, 108, 0.25);
  border-radius: 999px;
}

.lmsl-home-ativ-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: #14605e;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(18, 65, 71, 0.2);
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.lmsl-home-ativ-carousel__nav:hover {
  background: #14605e;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.lmsl-home-ativ-carousel__nav:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 3px;
}

.lmsl-home-ativ-carousel__nav--prev {
  left: 12px;
}

.lmsl-home-ativ-carousel__nav--next {
  right: 12px;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.lmsl-home-ativ-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.48rem;
  margin-top: 0.82rem;
}

.lmsl-home-ativ-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 100, 108, 0.22);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    width 0.26s ease;
}

.lmsl-home-ativ-carousel__dot:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-home-ativ-carousel__dot:hover {
  background: rgba(250, 70, 22, 0.45);
}

.lmsl-home-ativ-carousel__dot.is-active {
  background: linear-gradient(90deg, #fa4616 0%, #ffb020 100%);
  width: 1.6rem;
  box-shadow: 0 4px 10px rgba(250, 70, 22, 0.32);
}

.lmsl-home-ativ-carousel__slide--lp {
  cursor: pointer;
  outline-offset: 4px;
}

.lmsl-home-ativ-carousel__slide--lp:focus-visible {
  outline: 2px solid #fa4616;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 0;
  background: #ecf4f5;
  box-shadow: none;
  transition: box-shadow 0.26s ease;
}

.lmsl-home-ativ-carousel__slide--lp:hover .lmsl-home-ativ-carousel__card,
.lmsl-home-ativ-carousel__slide--lp:focus-visible .lmsl-home-ativ-carousel__card {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.25),
    0 0 0 1px rgba(250, 70, 22, 0.35);
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__media-slot {
  width: 100%;
  height: clamp(240px, 42vmin, 380px);
  min-height: 220px;
  margin: 0;
  display: block;
  box-sizing: border-box;
  flex-shrink: 0;
  background: rgba(26, 92, 90, 0.05);
  overflow: hidden;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__media-slot .lmsl-home-ativ-carousel__img {
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 42vmin, 380px);
  object-fit: cover;
  display: block;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__img {
  width: 100%;
  height: clamp(240px, 42vmin, 380px);
  margin: 0;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  background: rgba(20, 60, 62, 0.08);
  transition: transform 0.45s ease;
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__slide--lp:hover .lmsl-home-ativ-carousel__img,
.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__slide--lp:focus-visible .lmsl-home-ativ-carousel__img {
  transform: scale(1.04);
}

.lmsl-home-ativ-carousel--hero .lmsl-home-ativ-carousel__img[src$=".svg"] {
  object-fit: contain;
  padding: clamp(1rem, 5vw, 1.85rem);
  background: linear-gradient(165deg, #dbecef 0%, #f7fbfa 72%);
}

.lmsl-home-ativ-carousel__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1rem, 2.8vw, 1.65rem);
  padding-top: clamp(2.8rem, 18%, 5.25rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 36, 40, 0) 0%,
    rgba(12, 36, 40, 0.55) 45%,
    rgba(12, 36, 40, 0.88) 100%
  );
}

.lmsl-home-ativ-carousel__overlay-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 214, 180, 0.98);
}

.lmsl-home-ativ-carousel__titulo {
  display: block;
  margin: 0.24rem 0 0.12rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.22rem, 2.6vw, 1.68rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.lmsl-home-ativ-carousel__cta-hint {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.lmsl-home-numeros__card,
.lmsl-home-porque__figure,
.lmsl-home-eventos__card,
.lmsl-home-testemunhos__card,
.lmsl-home-cta {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.lmsl-home-animar {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: transform, opacity;
}

.lmsl-home-animar.lmsl-visivel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lmsl-home-numeros__card:hover,
.lmsl-home-porque__figure:hover,
.lmsl-home-eventos__card:hover,
.lmsl-home-testemunhos__card:hover,
.lmsl-home-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 100, 108, 0.24);
  box-shadow: 0 14px 28px rgba(20, 73, 80, 0.14);
}

@keyframes lmslPulseCta {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(250, 70, 22, 0.34);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(250, 70, 22, 0.44);
  }
}

@keyframes lmslBtnShine {
  0% {
    left: -55%;
  }
  100% {
    left: 115%;
  }
}

@keyframes lmslFloatHeroMedia {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-home-hero__cta-main,
  .lmsl-home-hero__media-slot {
    animation: none !important;
  }

  .lmsl-lp__btn:hover {
    transform: none !important;
    filter: none !important;
  }

  .lmsl-lp__btn::before {
    display: none !important;
  }

  .bottom_submit:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .bottom_submit::before {
    display: none !important;
  }

  .agenda-form__submit:hover {
    transform: none !important;
    filter: none !important;
  }

  .agenda-form__submit::before {
    display: none !important;
  }

  .lmsl-diferenciais__btn:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .lmsl-diferenciais__btn::before {
    display: none !important;
  }

  .lmsl-cookie__btn:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .lmsl-cookie__btn::before {
    display: none !important;
  }

  .site-footer__list a.site-footer__wa-btn:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .site-footer__list a.site-footer__wa-btn::before {
    display: none !important;
  }

  .lmsl-home-animar,
  .lmsl-home-animar.lmsl-visivel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lmsl-home-hero__slide {
    transition: none !important;
  }
}

.lmsl-lp__foto-slot .media-placeholder--page.foto-espaco {
  min-height: 140px;
}

/* ── Nossa História: linha do tempo interativa ── */
.lmsl-nh-interativa {
  margin-top: 0.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 100, 108, 0.14);
  box-shadow: 0 8px 32px rgba(31, 100, 108, 0.08);
  background: #fff;
}

.lmsl-nh-interativa__painel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.35rem 0.75rem;
  align-items: stretch;
  padding: 1.35rem 1rem 1.5rem;
  background: linear-gradient(180deg, #fafcfd 0%, #fff 45%);
}

.lmsl-nh-interativa__seta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 3rem;
  padding: 0.5rem 0.25rem;
  border: none;
  background: transparent;
  color: #1f646c;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: "Raleway", sans-serif;
}

.lmsl-nh-interativa__seta:hover:not(:disabled) {
  background: rgba(31, 100, 108, 0.08);
  color: #174f56;
}

.lmsl-nh-interativa__seta:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-nh-interativa__seta:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lmsl-nh-interativa__seta-ico {
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.lmsl-nh-interativa__seta-ano {
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a7a80;
  max-width: 4rem;
  text-align: center;
  line-height: 1.2;
}

.lmsl-nh-interativa__destaque {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: center;
}

.lmsl-nh-interativa__fig {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 100, 108, 0.12);
  border: 1px solid rgba(31, 100, 108, 0.1);
  aspect-ratio: 4 / 3;
  background: #e8f2f4;
}

.lmsl-nh-interativa__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lmsl-nh-interativa__copy {
  text-align: center;
  padding: 0.25rem 0;
}

.lmsl-nh-interativa__periodo {
  margin: 0 0 0.4rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1f646c;
  letter-spacing: 0.02em;
}

.lmsl-nh-interativa__etiqueta {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fa4616;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lmsl-nh-interativa__texto {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3d5c62;
}

.lmsl-nh-interativa__faixa {
  position: relative;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #eef4f6 0%, #e4ecef 100%);
  border-top: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-nh-interativa__toolbar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  background: #fff;
  border-right: 1px solid rgba(31, 100, 108, 0.1);
  box-shadow: 4px 0 14px rgba(31, 100, 108, 0.06);
}

.lmsl-nh-interativa__tool {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(31, 100, 108, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #1f646c;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lmsl-nh-interativa__tool:hover {
  background: rgba(31, 100, 108, 0.07);
  border-color: rgba(31, 100, 108, 0.28);
}

.lmsl-nh-interativa__tool:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-nh-interativa__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 0.65rem 0.85rem 0.5rem;
  cursor: grab;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-nh-interativa__viewport {
    scroll-behavior: auto;
  }

  .lmsl-nh-interativa__marco-card,
  .lmsl-nh-interativa__seta,
  .lmsl-nh-interativa__tool {
    transition: none;
  }
}

.lmsl-nh-interativa__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(250, 70, 22, 0.35);
}

.lmsl-nh-interativa__viewport.lmsl-nh-interativa__viewport--arrastando {
  cursor: grabbing;
}

.lmsl-nh-interativa__pista {
  --lmsl-nh-zoom: 1;
  position: relative;
  width: calc(1200px * var(--lmsl-nh-zoom));
  min-height: 148px;
  padding-bottom: 2.1rem;
  margin: 0 auto;
}

.lmsl-nh-interativa__decadas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.25rem;
  pointer-events: none;
}

.lmsl-nh-interativa__decada {
  position: absolute;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #5a7a80;
  white-space: nowrap;
}

.lmsl-nh-interativa__eixo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1f646c 0%, #2a8a96 45%, #fa4616 100%);
  box-shadow: 0 1px 4px rgba(31, 100, 108, 0.2);
}

.lmsl-nh-interativa__marcas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 1.45rem;
  pointer-events: none;
}

.lmsl-nh-interativa__marco {
  pointer-events: auto;
  position: absolute;
  left: var(--nh-pct);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 5.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: filter 0.2s ease;
}

.lmsl-nh-interativa__marco--fila-0 {
  bottom: 0.85rem;
}

.lmsl-nh-interativa__marco--fila-1 {
  bottom: 2.35rem;
}

.lmsl-nh-interativa__marco--fila-2 {
  bottom: 0.15rem;
}

.lmsl-nh-interativa__marco-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  padding: 0.35rem 0.3rem 0.4rem;
  border-radius: 8px;
  background: #fff;
  border: 2px solid rgba(31, 100, 108, 0.2);
  box-shadow: 0 2px 10px rgba(31, 100, 108, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lmsl-nh-interativa__marco:hover .lmsl-nh-interativa__marco-card {
  transform: translateY(-2px);
  border-color: rgba(31, 100, 108, 0.4);
  box-shadow: 0 6px 18px rgba(31, 100, 108, 0.14);
}

.lmsl-nh-interativa__marco:focus-visible .lmsl-nh-interativa__marco-card {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-nh-interativa__marco[aria-pressed="true"] .lmsl-nh-interativa__marco-card {
  border-color: #1f646c;
  box-shadow: 0 4px 16px rgba(31, 100, 108, 0.22);
  transform: scale(1.04);
}

.lmsl-nh-interativa__marco[aria-pressed="true"] .lmsl-nh-interativa__marco-traco {
  background: linear-gradient(180deg, #1f646c, #fa4616);
  width: 3px;
}

.lmsl-nh-interativa__marco-img {
  display: block;
  width: 100%;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 4px;
}

.lmsl-nh-interativa__marco-rotulo {
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #1f646c;
  line-height: 1.15;
  text-align: center;
}

.lmsl-nh-interativa__marco-traco {
  width: 2px;
  flex: 0 0 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.1rem;
  border-radius: 1px;
  background: rgba(31, 100, 108, 0.35);
}

@media (max-width: 768px) {
  .lmsl-nh-interativa__painel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "destaque destaque"
      "ant prox";
    gap: 0.75rem 0.5rem;
    padding: 1rem 0.85rem 1.15rem;
  }

  .lmsl-nh-interativa__destaque {
    grid-area: destaque;
    grid-template-columns: 1fr;
  }

  .lmsl-nh-interativa__seta--ant {
    grid-area: ant;
  }

  .lmsl-nh-interativa__seta--prox {
    grid-area: prox;
  }

  .lmsl-nh-interativa__seta {
    flex-direction: row;
    justify-content: center;
    min-height: 2.75rem;
  }

  .lmsl-nh-interativa__fig {
    max-width: 280px;
    margin: 0 auto;
  }

  .lmsl-nh-interativa__faixa {
    flex-direction: column;
  }

  .lmsl-nh-interativa__toolbar {
    flex-direction: row;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(31, 100, 108, 0.1);
    box-shadow: 0 4px 14px rgba(31, 100, 108, 0.06);
  }
}

.lmsl-lp__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.25rem;
}

@media (max-width: 1100px) {
  .lmsl-lp__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .lmsl-home-numeros__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lmsl-home-editorial {
    grid-template-columns: 1fr;
  }

  .lmsl-home-hero {
    grid-template-columns: 1fr;
  }

  .lmsl-home-hero__media {
    min-height: 180px;
  }

  .lmsl-home-hero__media-slot {
    min-height: 180px;
  }
}

@media (max-width: 700px) {
  .lmsl-lp__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lmsl-home-numeros__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-home-editorial__copy .lmsl-lp__section-title,
  .lmsl-home-editorial__text {
    max-width: none;
  }

  .lmsl-home-porque__imagem-unica {
    min-height: 200px;
  }

  .lmsl-home-porque__imagem-unica:empty::after {
    min-height: 200px;
  }

  .lmsl-home-testemunhos__carousel {
    grid-template-columns: 1fr;
  }

  .lmsl-home-testemunhos__viewport {
    order: 1;
  }

  .lmsl-home-testemunhos__track {
    gap: 0;
  }

  .lmsl-home-testemunhos__item {
    flex-basis: 100%;
  }

  .lmsl-home-testemunhos__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .lmsl-home-testemunhos__nav:hover {
    transform: translateY(-50%);
  }

  .lmsl-home-testemunhos__nav--prev {
    left: 0.45rem;
  }

  .lmsl-home-testemunhos__nav--next {
    right: 0.45rem;
  }

  .lmsl-home-testemunhos__card {
    padding: 0.95rem 3rem;
  }

  .lmsl-home-eventos__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }

  .lmsl-home-eventos__grid {
    display: flex;
    gap: 0.55rem;
    width: max-content;
  }

  .lmsl-home-eventos__item {
    flex: 0 0 min(80vw, 290px);
    scroll-snap-align: start;
  }
}

.lmsl-lp__card {
  background: #d2e8ee;
  border: 1px solid rgba(31, 100, 108, 0.16);
  border-radius: 12px;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 4px 18px rgba(31, 100, 108, 0.08);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lmsl-lp__card:hover {
  border-color: rgba(250, 70, 22, 0.35);
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.1);
}

.lmsl-lp__card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(250, 70, 22, 0.14), rgba(82, 139, 157, 0.24));
  border: 1px solid rgba(31, 100, 108, 0.18);
  color: #1f646c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(31, 100, 108, 0.12);
}

.lmsl-lp__card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.lmsl-lp__card-icon-img {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-block;
  object-fit: contain;
}

.lmsl-lp__card-icon-img--verde {
  background-color: #1f646c;
  -webkit-mask: url("biblia.svg") center / contain no-repeat;
  mask: url("biblia.svg") center / contain no-repeat;
}

.lmsl-lp__card-title {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-lp__card-text {
  margin: 0;
  font-size: 0.86rem;
  color: #3d5c62;
  line-height: 1.5;
}

.lmsl-lp__card--clickable {
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.18s ease;
}

.lmsl-lp__card--clickable:hover {
  transform: translateY(-2px);
}

.lmsl-lp__card--clickable:hover .lmsl-lp__card-title {
  color: #174f56;
}

.lmsl-lp__card--clickable:focus {
  outline: none;
}

.lmsl-lp__card--clickable:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 3px;
}

.lmsl-lp__card-more {
  margin: 0.7rem 0 0;
  font-family: "Raleway", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fa4616;
}

/* ---------- LP Nossas Atividades (#pg_atividades) — contraturno com propósito ---------- */
.lmsl-lp--atividades {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.lmsl-atividades-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(1.25rem, 4vw, 2.25rem);
  align-items: center;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(155deg, #e8f4f7 0%, #cfe3e9 38%, #b9d5de 100%);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(31, 100, 108, 0.14);
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.12);
}

.lmsl-atividades-hero .lmsl-lp__hero-pride {
  margin: 0 0 0.75rem;
  color: #143d42;
  max-width: 38rem;
}

.lmsl-atividades-hero .lmsl-lp__hero-pride strong {
  color: #1f646c;
  font-weight: 700;
}

.lmsl-atividades-hero .lmsl-lp__kicker {
  color: #b86500;
}

.lmsl-atividades-hero .lmsl-lp__title {
  color: #0f3539;
}

.lmsl-atividades-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.lmsl-atividades-hero__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-atividades-hero__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: min(220px, 38vw);
  box-shadow: 0 12px 36px rgba(20, 61, 66, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #1a575e;
}

.lmsl-atividades-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(280px, 42vw);
  object-fit: cover;
}

.lmsl-atividades-pilares {
  margin-bottom: 2.25rem;
}

.lmsl-atividades-pilares__heading {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  font-weight: 700;
  color: #1f646c;
  text-align: center;
}

.lmsl-atividades-pilares__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
}

.lmsl-atividades-pilares__item {
  background: linear-gradient(180deg, #fff 0%, #f2fafc 100%);
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-radius: 14px;
  padding: 1.1rem 1rem 1.15rem;
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.07);
}

.lmsl-atividades-pilares__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.65rem;
  border-radius: 12px;
  color: #1f646c;
  background: linear-gradient(145deg, rgba(250, 70, 22, 0.12), rgba(82, 139, 157, 0.2));
  border: 1px solid rgba(31, 100, 108, 0.15);
}

.lmsl-atividades-pilares__titulo {
  margin: 0 0 0.4rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #174f56;
}

.lmsl-atividades-pilares__texto {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3d5c62;
}

.lmsl-atividades-catalogo__lead {
  margin: 0 0 1.1rem;
  font-size: 0.96rem;
  color: #3d5c62;
  max-width: 40rem;
}

.lmsl-atividades-catalogo__cards {
  margin-top: 0.35rem;
}

.lmsl-lp--atividades .lmsl-atividades-card {
  position: relative;
  padding-top: 2.35rem;
}

.lmsl-atividades-card__tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f646c;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 100, 108, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(31, 100, 108, 0.06);
}

.lmsl-atividades-cta {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a575e 0%, #1f646c 48%, #245f68 100%);
  color: #f7f1e3;
  box-shadow: 0 12px 36px rgba(31, 100, 108, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lmsl-atividades-cta__title {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.lmsl-atividades-cta__text {
  margin: 0 auto 1.15rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.lmsl-atividades-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.lmsl-atividades-cta__actions .lmsl-lp__btn {
  margin-top: 0;
}

/* Botão secundário sobre fundo petróleo: contorno claro (contraste) */
.lmsl-atividades-cta__actions .lmsl-lp__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.lmsl-atividades-cta__actions .lmsl-lp__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  filter: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .lmsl-atividades-hero {
    grid-template-columns: 1fr;
  }

  .lmsl-atividades-hero__media {
    order: -1;
    min-height: 200px;
  }

  .lmsl-atividades-hero__video {
    min-height: 220px;
  }

  .lmsl-atividades-pilares__list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-atividades-hero__video {
    display: none;
  }

  .lmsl-atividades-hero__media::after {
    content: "";
    display: block;
    min-height: 200px;
    background: linear-gradient(160deg, rgba(31, 100, 108, 0.35) 0%, rgba(26, 87, 94, 0.55) 100%), url("imagenes/fachada.avif") center / cover no-repeat;
  }
}

.lmsl-diferenciais {
  min-height: 100%;
  background: transparent;
  color: #f7f1e3;
}

.lmsl-diferenciais__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 5vw, 4.5rem);
}

.lmsl-diferenciais__hero {
  position: relative;
  max-width: 48rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-left: clamp(1rem, 3vw, 1.5rem);
  border-left: 4px solid #ecb554;
}

.lmsl-diferenciais__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  color: rgba(236, 181, 84, 0.88);
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lmsl-diferenciais__kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(236, 181, 84, 0.72);
}

.lmsl-diferenciais__title {
  margin: 0;
  max-width: 43rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.05rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #1f3d42;
}

.lmsl-diferenciais__title::after {
  content: "";
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  margin-left: 0.05em;
  border-radius: 50%;
  background: #ecb554;
  transform: translateY(-0.05em);
}

.lmsl-diferenciais__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #3d5c62;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
}

.lmsl-diferenciais__banner {
  position: relative;
  width: 100vw;
  min-height: clamp(22rem, 42vw, 36rem);
  margin: 0 calc(50% - 50vw) clamp(2rem, 4vw, 3.4rem);
  overflow: hidden;
  border-radius: 0;
  border: none;
  background:
    linear-gradient(100deg, rgba(8, 40, 56, 0.82) 0%, rgba(8, 40, 56, 0.45) 48%, rgba(8, 40, 56, 0.16) 100%),
    linear-gradient(135deg, rgba(31, 100, 108, 0.28), rgba(236, 181, 84, 0.2)),
    url("imagenes/fachada.avif") center 58% / cover no-repeat;
  box-shadow: 0 16px 42px rgba(31, 100, 108, 0.16);
}

.lmsl-diferenciais__banner-overlay {
  position: absolute;
  left: max(clamp(1.2rem, 4vw, 2.5rem), calc((100vw - 1080px) / 2 + 1rem));
  bottom: clamp(1.2rem, 4vw, 2.3rem);
  max-width: 36rem;
}

.lmsl-diferenciais__banner-overlay p {
  margin: 0 0 0.45rem;
  color: rgba(236, 181, 84, 0.92);
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lmsl-diferenciais__banner-overlay strong {
  display: block;
  color: #fff9eb;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.65rem, 4.4vw, 3.35rem);
  line-height: 1.08;
}

.lmsl-diferenciais__numeros {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin: clamp(2.2rem, 5vw, 3.5rem) 0 clamp(2.4rem, 5vw, 3.75rem);
  padding: clamp(1.1rem, 3vw, 1.65rem);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 100, 108, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 100, 108, 0.07);
}

.lmsl-diferenciais__numero {
  position: relative;
  min-height: 6.7rem;
  padding-right: 1.1rem;
}

.lmsl-diferenciais__numero:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1px;
  height: 4rem;
  background: linear-gradient(180deg, rgba(236, 181, 84, 0), rgba(236, 181, 84, 0.42), rgba(236, 181, 84, 0));
}

.lmsl-diferenciais__numero strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #ecb554;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lmsl-diferenciais__numero span {
  display: block;
  max-width: min(100%, 13rem);
  color: #3d5c62;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lmsl-diferenciais__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(13.25rem, auto);
  gap: 1rem;
  position: relative;
}

.lmsl-diferenciais__card {
  display: flex;
  flex-direction: column;
  min-height: 13.25rem;
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  background: rgba(17, 62, 78, 0.82);
  border: 1px solid rgba(236, 181, 84, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.lmsl-diferenciais__card--wide {
  grid-column: span 2;
  min-height: 19rem;
}

.lmsl-diferenciais__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: auto;
  border: 1px solid rgba(236, 181, 84, 0.18);
  border-radius: 0.65rem;
  background: rgba(236, 181, 84, 0.08);
  color: #ecb554;
}

.lmsl-diferenciais__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.lmsl-diferenciais__card h2 {
  margin: 1.25rem 0 0.6rem;
  color: #fff9eb;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.18;
}

.lmsl-diferenciais__card p {
  margin: 0;
  color: rgba(247, 241, 227, 0.76);
  font-size: 0.9rem;
  line-height: 1.58;
}

.lmsl-diferenciais__card small {
  display: block;
  margin-top: 1rem;
  color: rgba(236, 181, 84, 0.8);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lmsl-diferenciais__cta {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.6rem, 4vw, 2.65rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(14, 55, 70, 0.92), rgba(13, 47, 63, 0.92));
  border: 1px solid rgba(236, 181, 84, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.lmsl-diferenciais__cta h2 {
  margin: 0 0 0.7rem;
  color: #fff9eb;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.lmsl-diferenciais__cta p {
  max-width: 36rem;
  margin: 0 auto 1.2rem;
  color: rgba(247, 241, 227, 0.75);
  line-height: 1.55;
}

.lmsl-diferenciais__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.lmsl-diferenciais__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lmsl-diferenciais__btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.lmsl-diferenciais__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.lmsl-diferenciais__btn:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

.lmsl-diferenciais__btn--primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 20px rgba(255, 255, 255, 0.2),
    0 14px 28px rgba(9, 37, 54, 0.22);
}

.lmsl-diferenciais__btn--secondary:hover {
  box-shadow:
    0 0 0 1px rgba(247, 241, 227, 0.28) inset,
    0 0 20px rgba(236, 181, 84, 0.22),
    0 14px 28px rgba(9, 37, 54, 0.18);
}
.lmsl-diferenciais__btn--primary {
  border: 1px solid #ecb554;
  background: #ecb554;
  color: #092536;
}

.lmsl-diferenciais__btn--secondary {
  border: 1px solid rgba(247, 241, 227, 0.6);
  background: transparent;
  color: #fff9eb;
}

.lmsl-diferenciais__btn--secondary:hover {
  border-color: #ecb554;
  background: rgba(236, 181, 84, 0.1);
}

.lmsl-diferenciais__cta small {
  display: block;
  margin-top: 1rem;
  color: rgba(247, 241, 227, 0.48);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .lmsl-diferenciais__numeros {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lmsl-diferenciais__numero:nth-child(2)::after {
    display: none;
  }

  .lmsl-diferenciais__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lmsl-diferenciais__inner {
    width: min(100% - 1.25rem, 1080px);
  }

  .lmsl-diferenciais__numeros,
  .lmsl-diferenciais__cards {
    grid-template-columns: 1fr;
  }

  .lmsl-diferenciais__numero {
    min-height: auto;
    padding-bottom: 0.8rem;
  }

  .lmsl-diferenciais__numero::after {
    display: none;
  }

  .lmsl-diferenciais__card--wide {
    grid-column: auto;
    min-height: 14rem;
  }

  .lmsl-diferenciais__cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.lmsl-lp__grid-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.lmsl-lp__foto-slot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(31, 100, 108, 0.15);
  background: rgba(31, 100, 108, 0.04);
}

.lmsl-lp__foto-slot .media-placeholder--page {
  min-height: 160px;
  margin: 0;
  border: none;
  border-radius: 0;
}

/* Caixa fixa na grelha: fotos retrato não “esticam” em altura infinita */
.lmsl-lp__foto-slot-img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: clamp(150px, 22vw, 228px);
  object-fit: cover;
  object-position: center;
}

.lmsl-lp__foto-caption {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  background: #1f646c;
  color: #fff;
}

.lmsl-estrutura__wrap {
  margin-top: 1.5rem;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  background: linear-gradient(180deg, rgba(31, 100, 108, 0.07) 0%, rgba(82, 139, 157, 0.05) 100%);
  border: 1px solid rgba(31, 100, 108, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(31, 100, 108, 0.06);
}

.lmsl-estrutura__hero-foto {
  margin: 1.5rem 0 0;
}

.lmsl-estrutura__hero-placeholder {
  display: flex;
  align-items: center;
  min-height: clamp(13rem, 28vw, 22rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-sizing: border-box;
  border: 1px dashed rgba(31, 100, 108, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(31, 100, 108, 0.78) 0%, rgba(31, 100, 108, 0.48) 48%, rgba(31, 100, 108, 0.2) 100%),
    radial-gradient(circle at 78% 18%, rgba(236, 181, 84, 0.28), transparent 20rem),
    linear-gradient(145deg, #cfe2e6 0%, #9fc4cc 100%);
  color: #fff;
  box-shadow: 0 12px 34px rgba(31, 100, 108, 0.14);
}

.lmsl-estrutura__hero-icone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 7vw, 4.6rem);
  height: clamp(3rem, 7vw, 4.6rem);
  margin-right: clamp(0.9rem, 2.5vw, 1.35rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ecb554;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.lmsl-estrutura__hero-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  line-height: 1.15;
}

.lmsl-estrutura__hero-placeholder p {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lmsl-estrutura__intro {
  margin: 0 0 clamp(1.25rem, 3vw, 1.8rem);
  padding: clamp(1rem, 2.6vw, 1.35rem);
  border-left: 4px solid #ecb554;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.62);
}

.lmsl-estrutura__intro p {
  max-width: 52rem;
  margin: 0;
  color: #2d4f55;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.58;
}

.lmsl-estrutura__intro p + p {
  margin-top: 0.45rem;
  color: #4d6a70;
}

.lmsl-estrutura__categoria {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.lmsl-estrutura__categoria:last-child {
  margin-bottom: 0;
}

.lmsl-estrutura__categoria-titulo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 700;
  color: #1f646c;
}

.lmsl-estrutura__categoria-titulo::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(250, 70, 22, 0.28), rgba(31, 100, 108, 0));
}

.lmsl-estrutura__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.1rem);
}

.lmsl-estrutura-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #d7e7ea;
  border: 1px solid rgba(31, 100, 108, 0.14);
  box-shadow: 0 8px 24px rgba(31, 100, 108, 0.1);
  isolation: isolate;
}

.lmsl-estrutura-card__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.lmsl-estrutura-card:hover .lmsl-estrutura-card__media {
  transform: scale(1.05);
}

.lmsl-estrutura-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.56), transparent 42%),
    linear-gradient(145deg, #d8e7ea 0%, #b9d4da 100%);
  color: rgba(31, 100, 108, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.lmsl-estrutura-card__placeholder-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: #1f646c;
  font-size: 1.25rem;
  line-height: 1;
}

.lmsl-estrutura-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 31, 38, 0.08) 0%, rgba(7, 31, 38, 0.74) 100%);
  pointer-events: none;
}

.lmsl-estrutura-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(0.9rem, 2vw, 1.15rem);
  color: #fff;
}

.lmsl-estrutura-card__overlay h3 {
  margin: 0 0 0.32rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.16;
}

.lmsl-estrutura-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1.35;
}

.lmsl-estrutura-card.is-estrutura-animada {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lmsl-estrutura-card.is-estrutura-visivel {
  opacity: 1;
  transform: translateY(0);
}

.lmsl-estrutura__cta {
  margin-top: clamp(1.5rem, 3.5vw, 2.3rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 100, 108, 0.1) 0%, rgba(235, 164, 52, 0.15) 100%);
  border: 1px solid rgba(31, 100, 108, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 100, 108, 0.08);
}

.lmsl-estrutura__cta h2 {
  margin: 0 0 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.18rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: #1f646c;
}

.lmsl-estrutura__cta .lmsl-lp__btn {
  margin-top: 0;
}

@media (max-width: 900px) {
  .lmsl-estrutura__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .lmsl-estrutura__wrap {
    padding: 0.85rem;
  }

  .lmsl-estrutura__hero-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  .lmsl-estrutura__hero-icone {
    margin-right: 0;
    margin-bottom: 0.85rem;
  }

  .lmsl-estrutura__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-estrutura-card {
    aspect-ratio: 16 / 11;
  }
}

.lmsl-lp__day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-lp__day:last-child {
  border-bottom: none;
}

.lmsl-lp__day-time {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fa4616;
  white-space: nowrap;
}

.lmsl-lp__day-desc {
  margin: 0;
  font-size: 0.88rem;
  color: #3d5c62;
}

.lmsl-rotina .lmsl-lp__inner {
  padding-bottom: 2.5rem;
}

.lmsl-rotina-intro {
  margin: 1.5rem 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 18px;
  border: 1px solid rgba(31, 100, 108, 0.12);
  background: linear-gradient(135deg, rgba(31, 100, 108, 0.08), rgba(235, 164, 52, 0.13));
  box-shadow: 0 10px 30px rgba(31, 100, 108, 0.07);
}

.lmsl-rotina-intro h2 {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1f646c;
}

.lmsl-rotina-intro > p {
  max-width: 48rem;
  margin: 0;
  color: #3d5c62;
  font-size: 0.98rem;
  line-height: 1.58;
}

.lmsl-rotina-pilares {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.lmsl-rotina-pilares article {
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-rotina-pilares strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Raleway", sans-serif;
  color: #1f646c;
}

.lmsl-rotina-pilares span {
  display: block;
  color: #4d6a70;
  font-size: 0.84rem;
  line-height: 1.4;
}

.lmsl-rotina-carousel {
  margin: 1.5rem 0;
}

.lmsl-rotina-carousel__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.lmsl-rotina-carousel__viewport {
  overflow: hidden;
  border-radius: 18px;
}

.lmsl-rotina-carousel__track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.lmsl-rotina-carousel__slide {
  min-width: 0;
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.lmsl-rotina-carousel__slide.is-saindo {
  opacity: 0;
  transform: scale(0.15);
  z-index: 1;
}

.lmsl-rotina-card {
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31, 100, 108, 0.12);
  box-shadow: 0 10px 28px rgba(31, 100, 108, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lmsl-rotina-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 70, 22, 0.22);
  box-shadow: 0 16px 34px rgba(31, 100, 108, 0.14);
}

.lmsl-rotina-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.38s ease;
}

.lmsl-rotina-card__placeholder {
  padding: 1rem;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(145deg, #d8e7ea 0%, #b9d4da 100%);
  color: rgba(31, 100, 108, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.lmsl-rotina-card__body {
  padding: 1rem;
}

.lmsl-rotina-card__time {
  display: inline-flex;
  margin: 0 0 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(250, 70, 22, 0.1);
  color: #b43a13;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.lmsl-rotina-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-rotina-card p:last-child {
  margin: 0;
  color: #3d5c62;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lmsl-rotina-carousel__arrow {
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 50%;
  background: #1f646c;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(31, 100, 108, 0.22);
  transition: background 0.16s ease, transform 0.16s ease;
}

.lmsl-rotina-carousel__arrow:hover {
  background: #174f56;
  transform: translateY(-1px);
}

.lmsl-rotina-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.lmsl-rotina-carousel__dot {
  width: 0.6rem;
  height: 0.6rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(31, 100, 108, 0.28);
  cursor: pointer;
}

.lmsl-rotina-carousel__dot.is-active {
  background: #fa4616;
}

.lmsl-rotina-horarios {
  margin: 1.5rem 0;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 16px;
  background: rgba(31, 100, 108, 0.07);
  border: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-rotina-horarios h2 {
  margin: 0 0 0.8rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #1f646c;
}

.lmsl-rotina-horarios__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lmsl-rotina-horarios__grid span {
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #3d5c62;
  font-size: 0.86rem;
}

.lmsl-rotina-horarios__grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #1f646c;
}

.lmsl-rotina-horarios p {
  margin: 0.8rem 0 0;
  color: #5a7a80;
  font-size: 0.78rem;
  font-style: italic;
}

.lmsl-rotina-cta {
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 100, 108, 0.1) 0%, rgba(235, 164, 52, 0.15) 100%);
  border: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-rotina-cta h2 {
  margin: 0 0 0.8rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: #1f646c;
}

.lmsl-rotina-cta .lmsl-lp__btn {
  margin-top: 0;
}

@media (max-width: 760px) {
  .lmsl-rotina-pilares,
  .lmsl-rotina-horarios__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-rotina-carousel__controls {
    grid-template-columns: 1fr;
  }

  .lmsl-rotina-carousel__arrow {
    display: none;
  }

  .lmsl-rotina-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .lmsl-rotina-carousel__slide {
    scroll-snap-align: start;
  }
}

.lmsl-lp__pillars {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .lmsl-lp__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lmsl-lp__pillar {
  background: rgba(82, 139, 157, 0.16);
  border-left: 4px solid #fa4616;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.1rem;
}

.lmsl-lp__pillar h3 {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-lp__pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: #3d5c62;
}

.lmsl-lp__projeto-status {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(235, 164, 52, 0.25);
  color: #8a5f0a;
}

.lmsl-lp__projeto-status--done {
  background: rgba(31, 100, 108, 0.18);
  color: #1f646c;
}

.lmsl-lp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.55rem 1.15rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease,
    border-color 0.2s ease;
}

.lmsl-lp__btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.lmsl-lp__btn:hover::before {
  animation: lmslBtnShine 0.7s ease forwards;
  opacity: 1;
}

.lmsl-lp__btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(250, 70, 22, 0.45), 0 12px 24px rgba(31, 100, 108, 0.15);
}

.lmsl-lp__btn--primary {
  background: #fa4616;
  color: #fff;
  box-shadow: 0 2px 10px rgba(250, 70, 22, 0.35);
}

.lmsl-lp__btn--primary:hover {
  background: #e03d12;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    0 0 20px rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(250, 70, 22, 0.44);
}

.lmsl-lp__btn--secondary {
  background: #1f646c;
  color: #fff;
}

.lmsl-lp__btn--secondary:hover {
  background: #174f56;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 0 18px rgba(250, 70, 22, 0.28),
    0 14px 28px rgba(31, 100, 108, 0.26);
}

.lmsl-lp__btn--ghost {
  background: transparent;
  color: #1f646c;
  border: 2px solid #1f646c;
}

.lmsl-lp__btn--ghost:hover {
  background: rgba(31, 100, 108, 0.1);
  border-color: rgba(31, 100, 108, 0.85);
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 0 14px rgba(250, 70, 22, 0.22),
    0 12px 26px rgba(31, 100, 108, 0.12);
}

.lmsl-lp__cta {
  margin-top: 2rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 100, 108, 0.1) 0%, rgba(235, 164, 52, 0.15) 100%);
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.12);
}

.lmsl-lp__cta p {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1f646c;
}

.lmsl-lp__contrib-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .lmsl-lp__contrib-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lmsl-lp__contrib-box {
  background: #cae3e9;
  border: 1px solid rgba(31, 100, 108, 0.16);
  border-radius: 12px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 4px 16px rgba(31, 100, 108, 0.07);
}

.lmsl-lp__contrib-box h3 {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-lp__contrib-box p,
.lmsl-lp__contrib-box li {
  font-size: 0.88rem;
  color: #3d5c62;
}

.lmsl-lp__contrib-box ol {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.lmsl-lp__contrib-box li {
  margin-bottom: 0.35rem;
}

.lmsl-lp__bank {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  background: rgba(31, 100, 108, 0.06);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.lmsl-lp__note {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: #5a7a80;
  font-style: italic;
}

/* Página Nossos parceiros — grelha de logotipos */
.lmsl-lp__parceiros-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
}

/* Só alinha o logo no link — sem caixa de fundo (logos direto no fundo da página) */
.lmsl-lp__parceiro-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  box-shadow: none;
}

.lmsl-lp__parceiro-slot:hover img {
  opacity: 0.9;
}

.lmsl-lp__parceiro-slot:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 0.25rem;
  border-radius: 4px;
}

.lmsl-lp__parceiro-slot img {
  max-width: 100%;
  max-height: 4.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

/* Página Seja voluntário — texto + formulário à direita */
.lmsl-lp__voluntario-layout {
  display: grid;
  grid-template-columns: 1fr min(21rem, 100%);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .lmsl-lp__voluntario-layout {
    grid-template-columns: 1fr;
  }

  .lmsl-vol-form-card {
    position: static;
  }
}

/* Bloco Vagas Abertas — LP Seja voluntário (#pg_voluntario) */
@keyframes lmsl-vol-vagas-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.45rem);
  }
}

.lmsl-vol-vagas {
  background: #fff3ee;
  margin: 0 0 1.35rem;
  padding: clamp(1.15rem, 2.8vw, 1.65rem) clamp(0.85rem, 2vw, 1.15rem) clamp(1.25rem, 3vw, 1.5rem);
  border-radius: 14px;
  border: 1px solid rgba(250, 70, 22, 0.12);
  box-shadow: 0 4px 20px rgba(250, 70, 22, 0.06);
  text-align: center;
}

.lmsl-vol-vagas .lmsl-vol-vagas__title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  border-bottom-color: #fa4616;
}

.lmsl-vol-vagas__subtitle {
  margin: -0.1rem auto 1.15rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3d555a;
}

.lmsl-vol-vagas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 1rem;
  text-align: left;
}

.lmsl-vol-vagas__card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.95rem 1rem;
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.08);
  border: 1px solid rgba(31, 100, 108, 0.08);
  border-top: 4px solid #fa4616;
}

.lmsl-vol-vagas__badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.28rem 0.55rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #fa4616;
  border-radius: 6px;
}

.lmsl-vol-vagas__ico {
  font-size: 2.15rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.35rem;
}

.lmsl-vol-vagas__card-title {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f646c;
  text-align: center;
}

.lmsl-vol-vagas__card-text {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #3d555a;
}

.lmsl-vol-vagas__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lmsl-vol-vagas__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.38rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #2d4a50;
}

.lmsl-vol-vagas__check {
  flex-shrink: 0;
  font-weight: 700;
  color: #1f646c;
  margin-top: 0.02rem;
}

.lmsl-vol-vagas__hint {
  margin: 0 auto 0.65rem;
  max-width: 32rem;
  font-size: 0.8rem;
  line-height: 1.45;
  font-style: italic;
  color: #666;
}

.lmsl-vol-vagas__arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  color: #fa4616;
  text-decoration: none;
  line-height: 1;
}

.lmsl-vol-vagas__arrow-link:hover {
  color: #1f646c;
}

.lmsl-vol-vagas__arrow-link:focus-visible {
  outline: 2px solid #1f646c;
  outline-offset: 4px;
  border-radius: 4px;
}

.lmsl-vol-vagas__arrow {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  animation: lmsl-vol-vagas-bounce 1.35s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-vol-vagas__arrow {
    animation: none;
  }
}

@media (max-width: 700px) {
  .lmsl-vol-vagas__grid {
    grid-template-columns: 1fr;
  }
}

.lmsl-vol-form-card {
  position: sticky;
  top: 5.25rem;
  padding: 1.05rem 1rem 1.15rem;
  background: linear-gradient(168deg, #f6fbfc 0%, #e8f3f5 55%, #dceef1 100%);
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(31, 100, 108, 0.11), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.lmsl-vol-form__title {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f646c;
  letter-spacing: 0.02em;
}

.lmsl-vol-form__lead {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #4a6d73;
}

.lmsl-vol-form__req {
  color: #fa4616;
  font-weight: 700;
}

.lmsl-vol-form__opcional {
  font-weight: 500;
  color: #5a7a80;
  font-size: 0.85em;
}

.lmsl-vol-form__group {
  margin-bottom: 0.72rem;
}

.lmsl-vol-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f646c;
  letter-spacing: 0.02em;
}

.lmsl-vol-form__input,
.lmsl-vol-form__select,
.lmsl-vol-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.38rem 0.55rem;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #1a3d42;
  background: #fff;
  border: 1px solid rgba(31, 100, 108, 0.22);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lmsl-vol-form__textarea {
  resize: vertical;
  min-height: 3.1rem;
  line-height: 1.4;
}

.lmsl-vol-form__input:hover,
.lmsl-vol-form__select:hover,
.lmsl-vol-form__textarea:hover {
  border-color: rgba(31, 100, 108, 0.38);
}

.lmsl-vol-form__input:focus,
.lmsl-vol-form__select:focus,
.lmsl-vol-form__textarea:focus {
  outline: none;
  border-color: #fa4616;
  box-shadow: 0 0 0 3px rgba(250, 70, 22, 0.18);
}

.lmsl-vol-form__actions {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
}

.lmsl-vol-form__submit.lmsl-lp__btn {
  width: auto;
  max-width: 100%;
  margin-top: 0;
  padding: 0.42rem 1.35rem;
  font-size: 0.68rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(250, 70, 22, 0.28);
}

/* =============================================================================
   Responsivo global — telemóveis, tablets e ecrãs largos
   ============================================================================= */

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 60px;
}

/* Doação FAS (index, /doacao, /FAS): flex em vez de tabela fixa */
.lmsl-fas-embed-root {
  color: #fff;
}

.lmsl-fas-page-outer {
  width: 100%;
  min-height: calc(100vh - 60px);
  margin-top: 60px;
  padding: 0.35rem 0 1rem;
  box-sizing: border-box;
  background-color: #1f646c;
}

/* No index, o offset do menu já vem de .site-main — evita faixa dupla */
.site-main #conteudo .lmsl-fas-page-outer {
  margin-top: 0;
}

.lmsl-fas-page {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: min(calc(100vh - 140px), 820px);
  box-sizing: border-box;
}

.lmsl-fas-page__text {
  flex: 1 1 280px;
  max-width: 100%;
  padding: clamp(0.75rem, 2.5vw, 1.35rem);
  box-sizing: border-box;
  overflow-y: auto;
}

.lmsl-fas-page__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.45;
  font-weight: 700;
}

.lmsl-fas-page__steps {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.5;
}

.lmsl-fas-page__embed {
  flex: 3 1 min(320px, 100%);
  position: relative;
  min-height: min(72vh, 640px);
  padding: 0;
  box-sizing: border-box;
}

.lmsl-fas-page__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 0 12px 12px;
  background: #fff;
}

.lmsl-fas-standalone .lmsl-fas-page-outer {
  margin-top: 0;
  min-height: auto;
  padding: clamp(0.5rem, 2vw, 1rem) 0 2rem;
}

.lmsl-fas-standalone .lmsl-fas-page {
  min-height: min(calc(100vh - 140px), 900px);
}

/* Página de contato: tabela → coluna única em telemóvel */
.pg-contato-page__viewport {
  position: relative;
  width: 100%;
  min-height: min(calc(100vh - 120px), 1200px);
  padding: 0 clamp(0.35rem, 2vw, 0.75rem);
  box-sizing: border-box;
}

.pg-contato-page__table {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
}

@media (max-width: 960px) {
  .pg-contato-page__table,
  .pg-contato-page__table tbody,
  .pg-contato-page__table tr {
    display: block;
    width: 100%;
  }

  .pg-contato-page__table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 0.5rem clamp(0.35rem, 2vw, 0.75rem);
  }

  .pg-contato-page__table td:nth-child(1),
  .pg-contato-page__table td:nth-child(4) {
    display: none;
  }

  .pg-contato-page__table td:nth-child(2) br,
  .pg-contato-page__table td:nth-child(3) > br {
    display: none;
  }

  #pg_contato .contato_form {
    flex-direction: column;
    align-items: stretch;
  }

  #pg_contato .contato_input {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    min-height: 3.25rem;
  }

  #pg_contato .contato_input[style*="width:100%"] {
    width: 100% !important;
  }

  #pg_contato div[style*="width:70%"] {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  #pg_contato div[style*="font-size:36px"] {
    font-size: clamp(1.35rem, 6vw, 2rem) !important;
  }

  #pg_contato div[style*="font-size:22px"] {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem) !important;
  }

  #pg_contato input[style*="font-size: 24px"],
  #pg_contato textarea[style*="font-size: 24px"] {
    font-size: 1rem !important;
  }

  #pg_contato .via-list-midias-sociais {
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #pg_contato .uk-icon-button {
    margin-right: 12px;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .home-carousel {
    min-height: min(42vw, 220px);
  }

  .home-carousel__img {
    height: min(42vw, 260px);
  }

  .media-placeholder--page {
    min-height: min(40vh, 320px);
  }
}

/* --- Landing Ballet (#pg_ballet) — identidade LMSL, isolada do #home-carousel --- */
.lmsl-ballet__inner {
  padding-bottom: 2.5rem;
}

.lmsl-ballet-hero {
  width: 100vw;
  max-width: 100vw;
  margin: 60px calc(50% - 50vw) 2.25rem;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.lmsl-ballet-hero__media {
  position: relative;
  width: 100%;
  display: block;
  background: transparent;
}

.lmsl-ballet-hero__video {
  position: relative;
  width: 100%;
  height: clamp(260px, 34vw, 720px);
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.lmsl-ballet-hero__placeholder {
  display: none;
}

.lmsl-ballet-hero__video:not([hidden]) + .lmsl-ballet-hero__placeholder {
  display: none;
}

.lmsl-ballet-hero__placeholder-text {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 1rem;
}

.lmsl-ballet-hero__overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 32, 36, 0.68), rgba(8, 32, 36, 0.36) 52%, rgba(8, 32, 36, 0.5));
  pointer-events: none;
}

.lmsl-ballet-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  box-sizing: border-box;
}

.lmsl-ballet-hero__kicker {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.lmsl-ballet-hero__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.lmsl-ballet-hero__subtitle {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Bloco 2 — duas colunas */
.lmsl-ballet-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-bottom: 2.5rem;
}

.lmsl-ballet-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-ballet-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2d4a50;
}

.lmsl-ballet-checklist__icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #fa4616;
  display: flex;
}

.lmsl-ballet-lead {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #1f646c;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-ballet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.lmsl-ballet-gallery__cell {
  margin: 0;
}

.lmsl-ballet-gallery .media-placeholder.foto-ballet {
  min-height: 140px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(31, 100, 108, 0.12);
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background: linear-gradient(160deg, rgba(82, 139, 157, 0.12) 0%, rgba(31, 100, 108, 0.08) 100%);
  cursor: default;
}

.lmsl-ballet-gallery__caption {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #528b9d;
  text-align: center;
  font-weight: 600;
}

/* Bloco 3 — equipe */
.lmsl-ballet-equipe {
  margin-bottom: 2.5rem;
}

.lmsl-ballet-equipe__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lmsl-ballet-prof-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(165deg, rgba(206, 229, 235, 0.45) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(31, 100, 108, 0.08);
}

.lmsl-ballet-prof-card__photo {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
}

.lmsl-ballet-prof-card .media-placeholder.foto-professora {
  width: 104px;
  height: 104px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(31, 100, 108, 0.28);
  background: rgba(82, 139, 157, 0.15);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-ballet-prof-card__body {
  flex: 1;
  min-width: 0;
}

.lmsl-ballet-prof-card__name {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-ballet-prof-card__formacao {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #3d5c63;
}

.lmsl-ballet-prof-card__texto {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2d4a50;
}

/* Bloco 4 — carrossel próprio */
.lmsl-ballet-momentos {
  margin-bottom: 2.5rem;
}

.lmsl-ballet__section-title--center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid #fa4616;
  padding-bottom: 0.45rem;
}

.lmsl-ballet-momentos__subtitle {
  text-align: center;
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3d5c63;
}

.lmsl-ballet-carousel__controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}

.lmsl-ballet-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
}

.lmsl-ballet-carousel__track {
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lmsl-ballet-carousel__slide {
  flex-shrink: 0;
}

.lmsl-ballet .foto-carrusel-ballet {
  min-height: 200px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background: linear-gradient(180deg, rgba(82, 139, 157, 0.14) 0%, rgba(31, 100, 108, 0.07) 100%);
  cursor: default;
}

.lmsl-ballet-carousel__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 700;
  color: #1f646c;
  background: rgba(206, 229, 235, 0.65);
  border: 1px solid rgba(31, 100, 108, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lmsl-ballet-carousel__arrow:hover {
  background: #1f646c;
  color: #fff;
}

.lmsl-ballet-carousel__arrow:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-ballet-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lmsl-ballet-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(82, 139, 157, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lmsl-ballet-carousel__dot.is-active {
  background: #fa4616;
  transform: scale(1.15);
}

.lmsl-ballet-carousel__dot:focus-visible {
  outline: 2px solid #1f646c;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-ballet-carousel__track {
    transition-duration: 0.01ms;
  }
}

/* Bloco 5 — CTA */
.lmsl-ballet-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background: #1f646c;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.35);
}

.lmsl-ballet-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.lmsl-ballet-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.lmsl-ballet-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-ballet-cta__actions .lmsl-lp__btn--primary {
  margin-top: 0;
}

.lmsl-ballet-cta__btn-wa {
  margin-top: 0;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.lmsl-ballet-cta__btn-wa:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 767px) {
  .lmsl-ballet-hero__media {
    min-height: 0;
  }

  .lmsl-ballet-split {
    grid-template-columns: 1fr;
  }

  .lmsl-ballet-carousel__arrow {
    width: 2.1rem;
    min-height: 2.1rem;
    font-size: 1.35rem;
  }
}

@media (max-width: 520px) {
  .lmsl-ballet-prof-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lmsl-ballet-prof-card__body {
    text-align: center;
  }
}

/* --- Nossa Equipe (pg_nossa_equipe) — confiança, abas e cartões --- */
/* Conteúdo dentro de #conteudo + .lmsl-lp__inner: evitar margens negativas (não batem com o padding do #conteudo e geram desalinhamento / overflow). */
.lmsl-equipe {
  overflow-x: hidden;
  max-width: 100%;
}

.lmsl-equipe-confianca {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.85rem, 4.5vw, 3rem) clamp(1.35rem, 3.5vw, 2.25rem) clamp(2rem, 4.5vw, 3rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 18px;
  background: linear-gradient(145deg, #174a52 0%, #1f646c 38%, #256f78 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(31, 100, 108, 0.28);
}

.lmsl-equipe-confianca__kicker {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lmsl-equipe-confianca__titulo {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 40rem;
  letter-spacing: 0.02em;
}

.lmsl-equipe-confianca__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(0.98rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.92);
}

.lmsl-equipe-pilares {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.lmsl-equipe-pilar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.05rem, 2.2vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.lmsl-equipe-pilar__ico {
  color: #f4c47a;
  line-height: 0;
}

.lmsl-equipe-pilar__titulo {
  font-family: "Raleway", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.lmsl-equipe-pilar__texto {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.lmsl-equipe-assercao {
  margin: 0 0 2rem;
  padding: 1.15rem 1.35rem;
  border-left: 4px solid #fa4616;
  background: linear-gradient(90deg, rgba(250, 70, 22, 0.06) 0%, rgba(31, 100, 108, 0.06) 100%);
  border-radius: 0 12px 12px 0;
}

.lmsl-equipe-assercao p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2d4a50;
  font-style: italic;
}

.lmsl-equipe-corpo {
  margin-bottom: 2.25rem;
}

.lmsl-equipe-corpo__intro {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3d5c62;
  max-width: 44rem;
}

.lmsl-equipe-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0.35rem;
  background: rgba(31, 100, 108, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.1);
}

.lmsl-equipe-tab {
  flex: 1 1 auto;
  min-width: 8.5rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: #1f646c;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lmsl-equipe-tab:hover {
  background: rgba(255, 255, 255, 0.75);
}

.lmsl-equipe-tab:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-equipe-tab[aria-selected="true"] {
  background: #1f646c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 100, 108, 0.25);
}

.lmsl-equipe-panel__titulo {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-equipe-panel__desc {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a656b;
  max-width: 40rem;
}

.lmsl-equipe-panels {
  min-height: 12rem;
}

.lmsl-equipe__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.lmsl-equipe__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lmsl-equipe__card {
  background: linear-gradient(165deg, rgba(206, 229, 235, 0.4) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(31, 100, 108, 0.14);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 4px 20px rgba(31, 100, 108, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lmsl-equipe__card--dinamica:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 100, 108, 0.14);
  border-color: rgba(31, 100, 108, 0.22);
}

.lmsl-equipe__photo-wrap {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
  margin-bottom: 0.85rem;
}

.lmsl-equipe .media-placeholder.foto-equipe {
  width: 132px;
  height: 132px;
  min-height: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  outline: 2px solid rgba(31, 100, 108, 0.2);
  box-shadow: 0 4px 16px rgba(31, 100, 108, 0.12);
  background: rgba(82, 139, 157, 0.14);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-equipe__nome {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-equipe__cargo {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fa4616;
}

.lmsl-equipe__texto {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2d4a50;
}

.lmsl-equipe__vol-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.lmsl-equipe__vol-cta .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-equipe-rodape-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f0f7f8 0%, #e4eef0 100%);
  border: 1px solid rgba(31, 100, 108, 0.12);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(31, 100, 108, 0.06);
}

.lmsl-equipe-rodape-cta__texto {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2d4a50;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-equipe-rodape-cta__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .lmsl-equipe-pilares {
    grid-template-columns: 1fr;
  }

  .lmsl-equipe__grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lmsl-equipe__grid,
  .lmsl-equipe__grid--3 {
    grid-template-columns: 1fr;
  }

  .lmsl-equipe-tab {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-equipe__card--dinamica:hover {
    transform: none;
  }

  .lmsl-equipe__card {
    transition: none;
  }

  .lmsl-equipe-tab {
    transition: none;
  }
}

/* --- LP Informática (#pg_informatica) — identidade LMSL --- */
@keyframes lmsl-info-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lmsl-informatica__inner {
  padding-bottom: 2.5rem;
}

.lmsl-info-hero {
  background: #1f646c;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 36px rgba(31, 100, 108, 0.28);
}

.lmsl-info-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.lmsl-info-hero__text {
  min-width: 0;
}

.lmsl-info-hero__tag {
  margin: 0 0 0.5rem;
}

.lmsl-info-hero__tag-inner {
  display: inline-block;
  background: #fa4616;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.lmsl-info-hero__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.lmsl-info-hero__subtitle {
  margin: 0 0 1.35rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.98rem, 2.2vw, 1.14rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  max-width: 30rem;
}

.lmsl-info-hero__anim {
  opacity: 0;
  animation: lmsl-info-slideInLeft 0.65s ease forwards;
}

.lmsl-info-hero__anim--1 {
  animation-delay: 0.2s;
}

.lmsl-info-hero__anim--2 {
  animation-delay: 0.5s;
}

.lmsl-info-hero__anim--3 {
  animation-delay: 0.8s;
}

.lmsl-info-hero__anim--4 {
  animation-delay: 1.1s;
}

.lmsl-info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lmsl-info-hero__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-info-hero__btn-saiba {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.lmsl-info-hero__btn-saiba:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lmsl-info-hero__media {
  min-width: 0;
}

.lmsl-informatica .hero-img-informatica {
  min-height: clamp(200px, 32vh, 320px);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(82, 139, 157, 0.25) 0%, rgba(0, 0, 0, 0.12) 100%);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-info-hero__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .lmsl-info-hero__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-info-hero__media {
    order: -1;
  }
}

/* Bloco 2 — benefícios */
.lmsl-info-beneficios {
  background: #f2f7f7;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.08);
}

.lmsl-info-beneficios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lmsl-info-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-info-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2d4a50;
}

.lmsl-info-checklist__ico {
  flex-shrink: 0;
  color: #fa4616;
  font-weight: 700;
  margin-top: 0.05rem;
}

.lmsl-info-beneficios__nota {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1f646c;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-info-beneficios__figure {
  margin: 0;
}

.lmsl-informatica .foto-sala-informatica {
  min-height: 240px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 100, 108, 0.14);
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background: linear-gradient(160deg, rgba(82, 139, 157, 0.12) 0%, rgba(31, 100, 108, 0.06) 100%);
  cursor: default;
}

.lmsl-info-beneficios__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #528b9d;
  text-align: center;
}

@media (max-width: 767px) {
  .lmsl-info-beneficios__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 3 — equipe */
.lmsl-info-equipe {
  background: #1f646c;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.3);
}

.lmsl-info-equipe .lmsl-lp__section-title,
.lmsl-info-equipe__title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  border-bottom-color: #fa4616;
}

.lmsl-info-equipe__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.2rem 1.35rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.lmsl-info-equipe__photo {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
}

.lmsl-informatica .foto-professor-informatica {
  width: 112px;
  height: 112px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(31, 100, 108, 0.28);
  background: rgba(82, 139, 157, 0.15);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-info-equipe__nome {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-info-equipe__cargo {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fa4616;
  text-transform: none;
}

.lmsl-info-equipe__bio {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #2d4a50;
}

@media (max-width: 520px) {
  .lmsl-info-equipe__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Bloco 4 — galeria */
.lmsl-info-galeria {
  margin-bottom: 2rem;
}

.lmsl-info-galeria__title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-info-galeria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lmsl-info-galeria__cell {
  margin: 0;
}

.lmsl-info-galeria__cell figcaption {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #528b9d;
  text-align: center;
}

.lmsl-informatica .foto-galeria-info {
  min-height: 160px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(31, 100, 108, 0.1);
  border: 1px dashed rgba(31, 100, 108, 0.25);
  background: linear-gradient(180deg, rgba(82, 139, 157, 0.1) 0%, rgba(242, 247, 247, 0.9) 100%);
  cursor: default;
}

@media (max-width: 600px) {
  .lmsl-info-galeria__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 5 — CTA */
.lmsl-info-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 0;
  padding: clamp(1.85rem, 4vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #fa4616;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(250, 70, 22, 0.35);
}

.lmsl-info-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.12rem, 2.8vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.lmsl-info-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.lmsl-info-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-info-cta__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-info-cta__btn-branco {
  background: #fff;
  color: #fa4616;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}

.lmsl-info-cta__btn-branco:hover {
  background: #f2f2f2;
  color: #e03d12;
}

.lmsl-info-cta__btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.lmsl-info-cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --- LP Capoeira (#pg_capoeira) — identidade LMSL --- */
@keyframes lmsl-cap-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lmsl-capoeira__inner {
  padding-bottom: 2.5rem;
}

.lmsl-cap-hero {
  background: linear-gradient(135deg, #1f646c 0%, #174e55 100%);
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 4vw, 2.85rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 14px 40px rgba(23, 78, 85, 0.45);
}

.lmsl-cap-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.lmsl-cap-hero__text {
  min-width: 0;
}

.lmsl-cap-hero__tag-inner {
  display: inline-block;
  background: #fa4616;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.lmsl-cap-hero__title {
  margin: 0.5rem 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.lmsl-cap-hero__subtitle {
  margin: 0 0 1.35rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.98rem, 2.2vw, 1.14rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  max-width: 30rem;
}

.lmsl-cap-hero__anim {
  opacity: 0;
  animation: lmsl-cap-slideInLeft 0.65s ease forwards;
}

.lmsl-cap-hero__anim--1 {
  animation-delay: 0.2s;
}

.lmsl-cap-hero__anim--2 {
  animation-delay: 0.5s;
}

.lmsl-cap-hero__anim--3 {
  animation-delay: 0.8s;
}

.lmsl-cap-hero__anim--4 {
  animation-delay: 1.1s;
}

.lmsl-cap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lmsl-cap-hero__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-cap-hero__btn-saiba {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.lmsl-cap-hero__btn-saiba:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lmsl-cap-hero__media {
  min-width: 0;
}

.lmsl-capoeira .hero-img-capoeira {
  min-height: clamp(200px, 32vh, 320px);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(250, 70, 22, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-cap-hero__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .lmsl-cap-hero__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-cap-hero__media {
    order: -1;
  }
}

/* Bloco 2 — contexto */
.lmsl-cap-contexto {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  background: #fdf8ee;
  border-radius: 14px;
  border: 1px solid rgba(250, 70, 22, 0.12);
  text-align: center;
}

.lmsl-cap-contexto__title {
  display: inline-block;
  text-align: center;
  margin: 0 auto 1rem;
}

.lmsl-cap-contexto__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2d4a50;
  text-align: left;
}

.lmsl-cap-contexto__text:last-of-type {
  margin-bottom: 1.5rem;
}

.lmsl-cap-pilares {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lmsl-cap-pilares__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f646c;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 108, 0.15);
}

.lmsl-cap-pilares__ico {
  font-size: 1.1rem;
}

/* Bloco 3 — aprendem */
.lmsl-cap-aprende {
  background: #f2f7f7;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(31, 100, 108, 0.08);
}

.lmsl-cap-aprende__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lmsl-cap-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-cap-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2d4a50;
}

.lmsl-cap-checklist__ico {
  flex-shrink: 0;
  color: #fa4616;
  font-weight: 700;
  margin-top: 0.05rem;
}

.lmsl-cap-aprende__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #1f646c;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-cap-aprende__figure {
  margin: 0;
}

.lmsl-capoeira .foto-capoeira-aula {
  min-height: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(31, 100, 108, 0.14);
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background: linear-gradient(160deg, rgba(250, 70, 22, 0.1) 0%, rgba(31, 100, 108, 0.08) 100%);
  cursor: default;
}

.lmsl-cap-aprende__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #528b9d;
  text-align: center;
}

@media (max-width: 767px) {
  .lmsl-cap-aprende__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 4 — mestre */
.lmsl-cap-equipe {
  background: #1f646c;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.3);
}

.lmsl-cap-equipe .lmsl-lp__section-title,
.lmsl-cap-equipe__title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  border-bottom-color: #fa4616;
}

.lmsl-cap-equipe__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.2rem 1.35rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.lmsl-cap-equipe__photo {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
}

.lmsl-capoeira .foto-mestre-capoeira {
  width: 112px;
  height: 112px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(31, 100, 108, 0.28);
  background: rgba(250, 70, 22, 0.08);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-cap-equipe__nome {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-cap-equipe__cargo {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fa4616;
}

.lmsl-cap-equipe__bio {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #2d4a50;
}

@media (max-width: 520px) {
  .lmsl-cap-equipe__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Bloco 5 — carrossel */
.lmsl-cap-momentos {
  margin-bottom: 2rem;
}

.lmsl-cap-momentos__h2 {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-cap-momentos__subtitle {
  text-align: center;
  margin: -0.25rem auto 1.35rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3d5c63;
}

.lmsl-capoeira-carousel__controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}

.lmsl-capoeira-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
}

.lmsl-capoeira-carousel__track {
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lmsl-capoeira-carousel__slide {
  flex-shrink: 0;
}

.lmsl-capoeira .foto-carrusel-capoeira {
  min-height: 200px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(31, 100, 108, 0.28);
  background: linear-gradient(180deg, rgba(250, 70, 22, 0.1) 0%, rgba(31, 100, 108, 0.07) 100%);
  cursor: default;
}

.lmsl-capoeira-carousel__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 700;
  color: #1f646c;
  background: rgba(206, 229, 235, 0.65);
  border: 1px solid rgba(31, 100, 108, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lmsl-capoeira-carousel__arrow:hover {
  background: #1f646c;
  color: #fff;
}

.lmsl-capoeira-carousel__arrow:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-capoeira-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lmsl-capoeira-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(82, 139, 157, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lmsl-capoeira-carousel__dot.is-active {
  background: #fa4616;
  transform: scale(1.15);
}

.lmsl-capoeira-carousel__dot:focus-visible {
  outline: 2px solid #1f646c;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-capoeira-carousel__track {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 767px) {
  .lmsl-capoeira-carousel__arrow {
    width: 2.1rem;
    min-height: 2.1rem;
    font-size: 1.35rem;
  }
}

/* Bloco 6 — CTA */
.lmsl-cap-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 0;
  padding: clamp(1.85rem, 4vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #fa4616;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(250, 70, 22, 0.35);
}

.lmsl-cap-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.12rem, 2.8vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.lmsl-cap-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.lmsl-cap-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-cap-cta__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-cap-cta__btn-branco {
  background: #fff;
  color: #fa4616;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}

.lmsl-cap-cta__btn-branco:hover {
  background: #f2f2f2;
  color: #e03d12;
}

.lmsl-cap-cta__btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.lmsl-cap-cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --- LP Catequese (#pg_catequese) — tom sereno, acento dourado #eba434 --- */
@keyframes lmsl-cat-fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lmsl-catequese__inner {
  padding-bottom: 2.5rem;
}

.lmsl-cat-section-title {
  margin: 0 0 0.85rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  font-weight: 700;
  color: #1f646c;
  padding-bottom: 0.45rem;
  border-bottom: 3px solid #eba434;
  display: inline-block;
}

.lmsl-cat-section-title--on-dark {
  color: #fff;
  border-bottom-color: #eba434;
}

.lmsl-cat-hero {
  background: linear-gradient(
    155deg,
    #1f646c 0%,
    #2a5f5e 38%,
    #3d5248 72%,
    rgba(235, 164, 52, 0.42) 100%
  );
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.85rem, 4vw, 2.9rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 36px rgba(31, 100, 108, 0.22);
}

.lmsl-cat-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: center;
}

.lmsl-cat-hero__text {
  min-width: 0;
}

.lmsl-cat-hero__tag-inner {
  display: inline-block;
  background: #eba434;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.lmsl-cat-hero__title {
  margin: 0.55rem 0 0.7rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
}

.lmsl-cat-hero__subtitle {
  margin: 0 0 1.4rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.98rem, 2.15vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  max-width: 31rem;
}

.lmsl-cat-hero__anim {
  opacity: 0;
  animation: lmsl-cat-fadeUp 0.75s ease forwards;
}

.lmsl-cat-hero__anim--1 {
  animation-delay: 0.3s;
}

.lmsl-cat-hero__anim--2 {
  animation-delay: 0.6s;
}

.lmsl-cat-hero__anim--3 {
  animation-delay: 0.9s;
}

.lmsl-cat-hero__anim--4 {
  animation-delay: 1.2s;
}

.lmsl-cat-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lmsl-cat-hero__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-cat-hero__btn-ouro {
  background: #eba434;
  color: #fff;
  box-shadow: 0 2px 14px rgba(235, 164, 52, 0.45);
  border: none;
}

.lmsl-cat-hero__btn-ouro:hover {
  background: #d8942a;
  color: #fff;
}

.lmsl-cat-hero__btn-saiba {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.lmsl-cat-hero__btn-saiba:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lmsl-cat-hero__media {
  min-width: 0;
}

.lmsl-catequese .hero-img-catequese {
  min-height: clamp(210px, 32vh, 300px);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border: 1px dashed rgba(255, 255, 255, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(235, 164, 52, 0.12) 50%, rgba(0, 0, 0, 0.08) 100%);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-cat-hero__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .lmsl-cat-hero__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-cat-hero__media {
    order: -1;
  }
}

/* Bloco 2 — contexto */
.lmsl-cat-contexto {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: clamp(1.85rem, 3.2vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  background: #fdfaf5;
  border-radius: 16px;
  border: 1px solid rgba(235, 164, 52, 0.2);
  text-align: center;
}

.lmsl-cat-contexto .lmsl-cat-section-title {
  margin-left: auto;
  margin-right: auto;
}

.lmsl-cat-contexto__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3d555a;
  text-align: left;
}

.lmsl-cat-contexto__text:last-of-type {
  margin-bottom: 1.5rem;
}

.lmsl-cat-pilares {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lmsl-cat-pilares__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2f5a60;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 164, 52, 0.35);
  box-shadow: 0 2px 10px rgba(31, 100, 108, 0.06);
}

.lmsl-cat-pilares__ico {
  font-size: 1.1rem;
}

/* Bloco 3 — vivências */
.lmsl-cat-aprende {
  background: #f2f7f7;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 16px;
  border: 1px solid rgba(31, 100, 108, 0.07);
}

.lmsl-cat-aprende__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lmsl-cat-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-cat-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.97rem;
  line-height: 1.48;
  color: #3d555a;
}

.lmsl-cat-checklist__ico {
  flex-shrink: 0;
  color: #eba434;
  font-weight: 700;
  margin-top: 0.05rem;
}

.lmsl-cat-aprende__lead {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #2f5a60;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-cat-aprende__figure {
  margin: 0;
}

.lmsl-catequese .foto-catequese-aula {
  min-height: 260px;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(31, 100, 108, 0.1);
  border: 1px dashed rgba(235, 164, 52, 0.35);
  background: linear-gradient(165deg, rgba(235, 164, 52, 0.08) 0%, rgba(242, 247, 247, 0.95) 100%);
  cursor: default;
}

.lmsl-cat-aprende__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b8a8f;
  text-align: center;
}

@media (max-width: 767px) {
  .lmsl-cat-aprende__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 4 — equipe */
.lmsl-cat-equipe {
  background: #1f646c;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.9rem, 4vw, 2.7rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.22);
}

.lmsl-cat-equipe .lmsl-cat-section-title--on-dark {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-cat-equipe__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 164, 52, 0.15);
}

.lmsl-cat-equipe__photo {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
}

.lmsl-catequese .foto-padre-catequese {
  width: 112px;
  height: 112px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(235, 164, 52, 0.45);
  background: rgba(235, 164, 52, 0.1);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-cat-equipe__nome {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-cat-equipe__cargo {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: #b8860b;
}

.lmsl-cat-equipe__bio {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #3d555a;
}

@media (max-width: 520px) {
  .lmsl-cat-equipe__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Bloco 5 — galeria */
.lmsl-cat-galeria {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #fdfaf5;
  border-radius: 16px;
  border: 1px solid rgba(235, 164, 52, 0.15);
}

.lmsl-cat-galeria .lmsl-cat-section-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-cat-galeria__subtitle {
  text-align: center;
  margin: -0.2rem auto 1.4rem;
  max-width: 36rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #5a6f73;
}

.lmsl-cat-galeria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lmsl-cat-galeria__cell {
  margin: 0;
}

.lmsl-cat-galeria__cell figcaption {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b8a8f;
  text-align: center;
}

.lmsl-catequese .foto-galeria-catequese {
  min-height: 160px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(31, 100, 108, 0.08);
  border: 1px dashed rgba(235, 164, 52, 0.3);
  background: linear-gradient(180deg, rgba(235, 164, 52, 0.08) 0%, rgba(253, 250, 245, 0.95) 100%);
  cursor: default;
}

@media (max-width: 600px) {
  .lmsl-cat-galeria__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 6 — CTA */
.lmsl-cat-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 0;
  padding: clamp(1.9rem, 4vw, 2.65rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #eba434;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(235, 164, 52, 0.35);
}

.lmsl-cat-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 2.75vw, 1.4rem);
  font-weight: 700;
  line-height: 1.38;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.lmsl-cat-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
}

.lmsl-cat-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-cat-cta__actions .lmsl-lp__btn {
  margin-top: 0;
}

.lmsl-cat-cta__btn-branco {
  background: #fff;
  color: #8a6d24;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

.lmsl-cat-cta__btn-branco:hover {
  background: #fffaf0;
  color: #6b5420;
}

.lmsl-cat-cta__btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.lmsl-cat-cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --- LP Apoio Escolar (#pg_apoioescolar) — acento azul #528b9d + laranja --- */
@keyframes lmsl-apoio-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lmsl-apoioescolar__inner {
  padding-bottom: 2.5rem;
}

.lmsl-apoio-hero {
  background: linear-gradient(128deg, #1f646c 0%, #3d7480 45%, #528b9d 100%);
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 4vw, 2.85rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 36px rgba(82, 139, 157, 0.28);
}

.lmsl-apoio-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.lmsl-apoio-hero__tag-inner {
  display: inline-block;
  background: #528b9d;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lmsl-apoio-hero__title {
  margin: 0.5rem 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.lmsl-apoio-hero__subtitle {
  margin: 0 0 1.35rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.98rem, 2.15vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.97);
  max-width: 31rem;
}

.lmsl-apoio-hero__anim {
  opacity: 0;
  animation: lmsl-apoio-slideInLeft 0.65s ease forwards;
}

.lmsl-apoio-hero__anim--1 {
  animation-delay: 0.2s;
}

.lmsl-apoio-hero__anim--2 {
  animation-delay: 0.5s;
}

.lmsl-apoio-hero__anim--3 {
  animation-delay: 0.8s;
}

.lmsl-apoio-hero__anim--4 {
  animation-delay: 1.1s;
}

.lmsl-apoio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lmsl-apoio-hero__actions .lmsl-lp__btn {
  margin-top: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lmsl-apoio-hero__btn-saiba {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.lmsl-apoio-hero__btn-saiba:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lmsl-apoioescolar .hero-img-apoioescolar {
  min-height: clamp(200px, 32vh, 310px);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(82, 139, 157, 0.2) 100%);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-apoio-hero__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .lmsl-apoio-hero__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-apoio-hero__media {
    order: -1;
  }
}

/* Bloco 2 — diferenciais */
.lmsl-apoio-diferenciais {
  margin-bottom: 2rem;
  text-align: center;
}

.lmsl-apoio-diferenciais__title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-apoio-diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1000px;
  margin: 1.25rem auto 0;
  text-align: left;
}

.lmsl-apoio-dif-card {
  background: #fff;
  border: 1px solid rgba(82, 139, 157, 0.22);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lmsl-apoio-dif-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(82, 139, 157, 0.15);
}

.lmsl-apoio-dif-card__ico {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lmsl-apoio-dif-card__tit {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-apoio-dif-card__texto {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d555a;
}

@media (max-width: 900px) {
  .lmsl-apoio-diferenciais__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* Bloco 3 — desenvolvem */
.lmsl-apoio-desenvolve {
  background: #f2f7f7;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(82, 139, 157, 0.12);
}

.lmsl-apoio-desenvolve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lmsl-apoio-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-apoio-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  font-size: 0.97rem;
  line-height: 1.45;
  color: #2d4a50;
}

.lmsl-apoio-checklist__ico {
  flex-shrink: 0;
  color: #fa4616;
  font-weight: 700;
  margin-top: 0.05rem;
}

.lmsl-apoio-desenvolve__lead {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #1f646c;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-apoio-desenvolve__figure {
  margin: 0;
}

.lmsl-apoio-desenvolve__img {
  display: block;
  width: 100%;
  min-height: 260px;
  height: clamp(260px, 32vw, 360px);
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(82, 139, 157, 0.16);
  border: 1px solid rgba(82, 139, 157, 0.2);
}

.lmsl-apoioescolar .foto-apoioescolar-aula {
  min-height: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(82, 139, 157, 0.16);
  border: 1px dashed rgba(82, 139, 157, 0.35);
  background: linear-gradient(165deg, rgba(82, 139, 157, 0.12) 0%, rgba(242, 247, 247, 0.95) 100%);
  cursor: default;
}

.lmsl-apoio-desenvolve__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #528b9d;
  text-align: center;
}

@media (max-width: 767px) {
  .lmsl-apoio-desenvolve__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 4 — equipe */
.lmsl-apoio-equipe {
  background: #528b9d;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(82, 139, 157, 0.3);
  text-align: center;
}

.lmsl-apoio-equipe .lmsl-lp__section-title,
.lmsl-apoio-equipe__h2 {
  color: #fff;
  border-bottom-color: #fa4616;
}

.lmsl-apoio-equipe__subtitle {
  margin: -0.15rem auto 1.35rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.lmsl-apoio-equipe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
}

.lmsl-apoio-prof-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lmsl-apoio-prof-card__photo {
  width: 100px;
  height: 100px;
  margin-bottom: 0.65rem;
}

.lmsl-apoioescolar .foto-professor-apoio {
  width: 100px;
  height: 100px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(82, 139, 157, 0.4);
  background: rgba(82, 139, 157, 0.12);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-apoio-prof-card__nome {
  margin: 0 0 0.3rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-apoio-prof-card__cargo {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fa4616;
}

.lmsl-apoio-prof-card__bio {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3d555a;
}

@media (max-width: 600px) {
  .lmsl-apoio-equipe__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 5 — carrossel */
.lmsl-apoio-galeria {
  margin-bottom: 2rem;
}

.lmsl-apoio-galeria__h2 {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-apoio-galeria__subtitle {
  text-align: center;
  margin: -0.2rem auto 1.3rem;
  max-width: 34rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: #4a656b;
}

.lmsl-apoio-carousel__controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}

.lmsl-apoio-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
}

.lmsl-apoio-carousel__track {
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lmsl-apoio-carousel__slide {
  flex-shrink: 0;
}

.lmsl-apoioescolar .foto-carrusel-apoio {
  min-height: 200px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(82, 139, 157, 0.35);
  background: linear-gradient(180deg, rgba(82, 139, 157, 0.12) 0%, rgba(242, 247, 247, 0.95) 100%);
  cursor: default;
}

.lmsl-apoio-carousel__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 700;
  color: #1f646c;
  background: rgba(206, 229, 235, 0.75);
  border: 1px solid rgba(82, 139, 157, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lmsl-apoio-carousel__arrow:hover {
  background: #528b9d;
  color: #fff;
}

.lmsl-apoio-carousel__arrow:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-apoio-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lmsl-apoio-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(82, 139, 157, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lmsl-apoio-carousel__dot.is-active {
  background: #fa4616;
  transform: scale(1.15);
}

.lmsl-apoio-carousel__dot:focus-visible {
  outline: 2px solid #528b9d;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-apoio-carousel__track {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 767px) {
  .lmsl-apoio-carousel__arrow {
    width: 2.1rem;
    min-height: 2.1rem;
    font-size: 1.35rem;
  }
}

/* Bloco 6 — CTA */
.lmsl-apoio-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 0;
  padding: clamp(1.85rem, 4vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #1f646c;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.28);
}

.lmsl-apoio-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 2.75vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.lmsl-apoio-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

.lmsl-apoio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-apoio-cta__actions .lmsl-lp__btn {
  margin-top: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lmsl-apoio-cta__btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.lmsl-apoio-cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --- LP Aulas de Espanhol (#pg_espanhol) — multicultural, energia --- */
@keyframes lmsl-esp-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lmsl-espanhol__inner {
  padding-bottom: 2.5rem;
}

.lmsl-esp-hero {
  background: linear-gradient(128deg, #1f646c 0%, #2a7580 38%, #c96a38 78%, #fa4616 100%);
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 4vw, 2.85rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 14px 40px rgba(250, 70, 22, 0.22);
}

.lmsl-esp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.lmsl-esp-hero__tag-inner {
  display: inline-block;
  background: #fa4616;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.lmsl-esp-hero__title {
  margin: 0.5rem 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.lmsl-esp-hero__subtitle {
  margin: 0 0 1.35rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.98rem, 2.15vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.98);
  max-width: 31rem;
}

.lmsl-esp-hero__anim {
  opacity: 0;
  animation: lmsl-esp-slideInLeft 0.65s ease forwards;
}

.lmsl-esp-hero__anim--1 {
  animation-delay: 0.2s;
}

.lmsl-esp-hero__anim--2 {
  animation-delay: 0.5s;
}

.lmsl-esp-hero__anim--3 {
  animation-delay: 0.8s;
}

.lmsl-esp-hero__anim--4 {
  animation-delay: 1.1s;
}

.lmsl-esp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lmsl-esp-hero__actions .lmsl-lp__btn {
  margin-top: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lmsl-esp-hero__btn-saiba {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.lmsl-esp-hero__btn-saiba:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lmsl-espanhol .hero-img-espanhol {
  min-height: clamp(200px, 32vh, 310px);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  border: 1px dashed rgba(255, 255, 255, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(82, 139, 157, 0.18) 100%);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-esp-hero__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .lmsl-esp-hero__grid {
    grid-template-columns: 1fr;
  }

  .lmsl-esp-hero__media {
    order: -1;
  }
}

/* Bloco 2 — por que */
.lmsl-esp-porque {
  margin-bottom: 2rem;
  text-align: center;
}

.lmsl-esp-porque__title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-esp-porque__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1000px;
  margin: 1.25rem auto 0;
  text-align: left;
}

.lmsl-esp-porque-card {
  background: #fff;
  border: 1px solid rgba(82, 139, 157, 0.22);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 6px 22px rgba(31, 100, 108, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lmsl-esp-porque-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(250, 70, 22, 0.1);
}

.lmsl-esp-porque-card__ico {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lmsl-esp-porque-card__tit {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-esp-porque-card__texto {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d555a;
}

@media (max-width: 900px) {
  .lmsl-esp-porque__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* Bloco 3 — aprendem */
.lmsl-esp-aprendem {
  background: #f2f7f7;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(82, 139, 157, 0.12);
}

.lmsl-esp-aprendem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lmsl-esp-checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.lmsl-esp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  font-size: 0.97rem;
  line-height: 1.45;
  color: #2d4a50;
}

.lmsl-esp-checklist__ico {
  flex-shrink: 0;
  color: #fa4616;
  font-weight: 700;
  margin-top: 0.05rem;
}

.lmsl-esp-aprendem__lead {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #1f646c;
  font-weight: 600;
  max-width: 36rem;
}

.lmsl-esp-aprendem__figure {
  margin: 0;
}

.lmsl-espanhol .foto-espanhol-aula {
  min-height: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 100, 108, 0.12);
  border: 1px dashed rgba(82, 139, 157, 0.35);
  background: linear-gradient(165deg, rgba(250, 70, 22, 0.08) 0%, rgba(242, 247, 247, 0.95) 100%);
  cursor: default;
}

.lmsl-esp-aprendem__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #528b9d;
  text-align: center;
}

@media (max-width: 767px) {
  .lmsl-esp-aprendem__grid {
    grid-template-columns: 1fr;
  }
}

/* Bloco 4 — professora */
.lmsl-esp-prof {
  background: #1f646c;
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 2rem;
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(31, 100, 108, 0.28);
  text-align: center;
}

.lmsl-esp-prof .lmsl-lp__section-title,
.lmsl-esp-prof .lmsl-esp-prof__h2,
.lmsl-esp-prof__h2 {
  color: #fff;
  border-bottom-color: #fa4616;
}

.lmsl-esp-prof__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-align: left;
}

.lmsl-esp-prof__photo {
  flex-shrink: 0;
}

.lmsl-espanhol .foto-professora-espanhol {
  width: 120px;
  height: 120px;
  min-height: 0;
  border-radius: 50%;
  border: 2px dashed rgba(82, 139, 157, 0.45);
  background: linear-gradient(160deg, rgba(250, 70, 22, 0.1) 0%, rgba(82, 139, 157, 0.12) 100%);
  cursor: default;
  box-sizing: border-box;
}

.lmsl-esp-prof__nome {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #1f646c;
}

.lmsl-esp-prof__cargo {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fa4616;
}

.lmsl-esp-prof__bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d555a;
}

.lmsl-esp-prof__thanks {
  margin: 1.1rem auto 0;
  max-width: 36rem;
  font-size: 0.82rem;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 640px) {
  .lmsl-esp-prof__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lmsl-esp-prof__body {
    max-width: 100%;
  }
}

/* Bloco 5 — carrossel */
.lmsl-esp-galeria {
  margin-bottom: 2rem;
}

.lmsl-esp-galeria__h2 {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lmsl-esp-galeria__subtitle {
  text-align: center;
  margin: -0.2rem auto 1.3rem;
  max-width: 34rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: #4a656b;
}

.lmsl-esp-carousel__controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}

.lmsl-esp-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
}

.lmsl-esp-carousel__track {
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lmsl-esp-carousel__slide {
  flex-shrink: 0;
}

.lmsl-espanhol .foto-carrusel-espanhol {
  min-height: 200px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(82, 139, 157, 0.35);
  background: linear-gradient(180deg, rgba(82, 139, 157, 0.14) 0%, rgba(250, 70, 22, 0.06) 50%, rgba(242, 247, 247, 0.95) 100%);
  cursor: default;
}

.lmsl-esp-carousel__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 700;
  color: #1f646c;
  background: rgba(206, 229, 235, 0.85);
  border: 1px solid rgba(82, 139, 157, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lmsl-esp-carousel__arrow:hover {
  background: #528b9d;
  color: #fff;
}

.lmsl-esp-carousel__arrow:focus-visible {
  outline: 2px solid #fa4616;
  outline-offset: 2px;
}

.lmsl-esp-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lmsl-esp-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(82, 139, 157, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lmsl-esp-carousel__dot.is-active {
  background: #fa4616;
  transform: scale(1.15);
}

.lmsl-esp-carousel__dot:focus-visible {
  outline: 2px solid #1f646c;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lmsl-esp-carousel__track {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 767px) {
  .lmsl-esp-carousel__arrow {
    width: 2.1rem;
    min-height: 2.1rem;
    font-size: 1.35rem;
  }
}

/* Bloco 6 — CTA laranja */
.lmsl-esp-cta {
  margin: 0 calc(-1 * clamp(1rem, 3vw, 1.75rem)) 0;
  padding: clamp(1.85rem, 4vw, 2.6rem) clamp(1rem, 2.5vw, 1.75rem);
  background: #fa4616;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(250, 70, 22, 0.28);
}

.lmsl-esp-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 2.75vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.lmsl-esp-cta__subtitle {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
}

.lmsl-esp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.lmsl-esp-cta__actions .lmsl-lp__btn {
  margin-top: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lmsl-esp-cta__btn-primary {
  background: #fff !important;
  color: #fa4616 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lmsl-esp-cta__btn-primary:hover {
  background: #f8f8f8 !important;
  color: #d63d12 !important;
}

.lmsl-esp-cta__btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
  text-decoration: none;
}

.lmsl-esp-cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* =============================================================================
   Ajustes finais de responsividade (móvel → desktop largo)
   ============================================================================= */

/* Conteúdo injetado em #conteudo: evitar overflow horizontal acidental. */
#conteudo img:not(.home-carousel__img):not(.lmsl-lp__foto-slot-img):not(.lmsl-logo-card),
#conteudo video:not(.home-carousel__img):not(.lmsl-ballet-hero__video),
#conteudo iframe {
  max-width: 100%;
}

/* Imagens sem altura explícita mantêm proporção em ecrãs estreitos. */
#conteudo img:not([height]):not(.lmsl-estrutura-card__media) {
  height: auto;
}

@media (max-width: 900px) {
  /* Reduz espaço lateral para priorizar conteúdo útil em tablet retrato. */
  #conteudo {
    padding-left: clamp(0.25rem, 1.2vw, 0.6rem);
    padding-right: clamp(0.25rem, 1.2vw, 0.6rem);
  }

  /* Formulários: garantir cálculo de largura previsível. */
  .contato_input,
  .bottom_input {
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  /* Barra de navegação: mantém usabilidade sem “aperto” visual. */
  .ul.site-nav__bar {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  .site-nav__cluster-list {
    gap: 0.2rem;
  }

  .ul.site-nav__bar .li a,
  .ul.site-nav__bar .direto {
    font-size: 0.62rem;
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Página de contato: tipografia e blocos mais confortáveis no telemóvel. */
  #pg_contato div[style*="font-size:24px"] {
    font-size: clamp(1rem, 3.8vw, 1.1rem) !important;
  }

  #pg_contato .bottom_submit {
    width: 100%;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 380px) {
  /* Telefone muito estreito: simplifica topo e ações sociais. */
  .site-nav__heritage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.44rem;
    padding: 0.08rem 0.24rem;
    letter-spacing: 0.04em;
    max-width: 4.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ul.site-nav__bar .nav-portal-familia__texto {
    max-width: 4.5rem;
  }

  #pg_contato .uk-icon-button {
    width: 46px;
    height: 46px;
    margin-right: 8px;
  }
}

@media (min-width: 1440px) {
  /* Desktop grande/ultrawide: evita linhas de texto excessivamente longas. */
  .lmsl-lp__inner,
  .site-footer__inner,
  .home-carousel__inner {
    max-width: 1360px;
  }

  #conteudo {
    padding-left: clamp(0.75rem, 1.1vw, 1.25rem);
    padding-right: clamp(0.75rem, 1.1vw, 1.25rem);
  }
}

/* ============================================================================
   Correção final mobile (navbar e elementos sobrepostos)
   ============================================================================ */
@media (max-width: 768px) {
  /* Topo simples no mobile: logo + hambúrguer */
  .ul.site-nav__bar {
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 0.5rem !important;
    gap: 0.4rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }

  .ul.site-nav__bar > .site-nav__toggle {
    display: flex !important;
    margin-left: auto !important;
  }

  /* No mobile, o acesso ao portal fica dentro do menu (evita botão gigante no topo) */
  .ul.site-nav__bar > .li--portal-familia {
    display: none !important;
  }

  .site-nav__brand {
    min-width: 0;
  }

  .nav-logo {
    min-width: 6.6rem;
    min-height: 2.4rem;
  }

  .site-nav__heritage-badge {
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
  }

  /* Painel do menu hambúrguer */
  .site-nav__cluster {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    display: block !important;
    width: 100% !important;
    max-height: calc(100dvh - 60px) !important;
    overflow-y: auto !important;
    padding: 0.5rem !important;
    box-sizing: border-box !important;
    background: linear-gradient(180deg, rgba(24, 75, 82, 0.98) 0%, rgba(20, 63, 69, 0.99) 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 36px rgba(4, 28, 32, 0.38) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s !important;
  }

  .site-nav.site-nav--aberto .site-nav__cluster {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
  }

  .site-nav__cluster-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    list-style: none !important;
  }

  .site-nav__cluster-list > .li {
    width: 100% !important;
    min-width: 100% !important;
    float: none !important;
  }

  .site-nav__cluster-list > .li > a,
  .site-nav__cluster-list > .li.direto {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    padding: 0.75rem 0.85rem !important;
    font-size: 0.84rem !important;
    line-height: 1.25 !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #fff !important;
    white-space: normal !important;
  }

  .site-nav__cluster .li--portal-familia {
    display: block !important;
    order: -1;
    width: 100%;
    min-width: 100%;
    margin: 0 !important;
  }

  .site-nav__cluster .li--portal-familia .nav-portal-familia {
    width: 100% !important;
    min-height: 2.8rem;
    border-left: none !important;
    border-radius: 10px !important;
    justify-content: center !important;
    gap: 0.45rem;
    padding: 0.72rem 0.85rem !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 20px rgba(250, 70, 22, 0.28) !important;
  }

  .site-nav__cluster .li--portal-familia .nav-portal-familia__texto {
    display: inline !important;
    max-width: none !important;
  }

  .site-nav__subpanel {
    display: none !important;
  }
}

/* ═══════════════════════════════════════
   TRABALHE CONOSCO — Visual institucional
═══════════════════════════════════════ */

/* ── CABEÇALHO DA LP ── */
.lmsl-tc-page-header {
  max-width: 820px;
  margin: clamp(1.8rem, 4vw, 3rem) auto clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  padding-inline: 1rem;
}

.lmsl-tc-page-header__title {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.08;
  font-weight: 800;
  color: #123f3d;
}

.lmsl-tc-page-header__subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.42;
  color: #3d5f63;
}

/* ── HERO DA COLUNA INSTITUCIONAL ── */
.lmsl-tc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
  align-items: start;
}

.lmsl-tc-layout__institucional,
.lmsl-tc-layout__formulario {
  min-width: 0;
}

.lmsl-tc-layout__formulario {
  position: sticky;
  top: 88px;
}

#pg_trabalhe_conosco .lmsl-lp__hero {
  background: linear-gradient(135deg, #1a5c5a 0%, #0f3835 100%);
  color: #fff;
  padding: 1.35rem 1.6rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
#pg_trabalhe_conosco .lmsl-lp__hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(224,90,26,0.12);
  border-radius: 50%;
  pointer-events: none;
}
#pg_trabalhe_conosco .lmsl-lp__hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
#pg_trabalhe_conosco .lmsl-lp__kicker {
  color: #e05a1a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
#pg_trabalhe_conosco .lmsl-tc-hero__title {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
#pg_trabalhe_conosco .lmsl-lp__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.42;
  max-width: 620px;
}

/* ── TIPOS DE VAGA ── */
.lmsl-tc-tipos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.8rem;
}
.lmsl-tc-tipos__card {
  padding: 1.35rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 12px rgba(26,92,90,0.08);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lmsl-tc-tipos__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, 
              rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.lmsl-tc-tipos__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,92,90,0.16);
}
.lmsl-tc-tipos__card:hover::before {
  opacity: 1;
}
.lmsl-tc-tipos__card--contratado {
  border-top-color: #1a5c5a;
}
.lmsl-tc-tipos__card--talentos {
  border-top-color: #e05a1a;
}
.lmsl-tc-tipos__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf3f3;
}
.lmsl-tc-tipos__card--contratado .lmsl-tc-tipos__icon {
  background: rgba(26,92,90,0.1);
  color: #1a5c5a;
}
.lmsl-tc-tipos__card--talentos .lmsl-tc-tipos__icon {
  background: rgba(224,90,26,0.1);
  color: #e05a1a;
}
.lmsl-tc-tipos__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.lmsl-tc-tipos__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e2e;
  margin: 0;
}
.lmsl-tc-tipos__text {
  font-size: 0.86rem;
  color: #556;
  line-height: 1.42;
  margin: 0;
}

/* ── SEÇÃO FORMULÁRIO ── */
.lmsl-tc-form-section {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(26,92,90,0.09);
  margin-top: 0;
  width: min(100%, 440px);
  justify-self: end;
}
.lmsl-tc-form-section .lmsl-lp__section-title {
  font-size: 1.12rem;
  color: #1a5c5a;
  margin-bottom: 0.25rem;
}
.lmsl-tc-form-section__intro {
  color: #667;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.25;
}

/* ── FORMULÁRIO COMPACTO ── */
.lmsl-tc-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.48rem;
  max-width: 100%;
}

.lmsl-tc-form__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.34rem;
  padding-bottom: 0.46rem;
  border-bottom: 1px solid #e5eeee;
}

.lmsl-tc-form__step--envio {
  padding-bottom: 0;
  border-bottom: none;
}

.lmsl-tc-form__step-label {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e05a1a;
}

.lmsl-tc-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.lmsl-tc-form__field--full {
  grid-column: 1;
}

/* ── LABELS ── */
.lmsl-tc-form__label {
  font-size: 0.66rem;
  font-weight: 700;
  color: #1a5c5a;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.lmsl-tc-form__optional {
  font-weight: 400;
  text-transform: none;
  color: #999;
  font-size: 0.8rem;
  letter-spacing: 0;
}

/* ── INPUTS ── */
.lmsl-tc-form__input {
  padding: 0.4rem 0.62rem;
  border: 1.5px solid #dce8e8;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: inherit;
  color: #1a2e2e;
  background: #f7fbfb;
  transition: border-color 0.25s, 
              box-shadow 0.25s, 
              background 0.25s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.lmsl-tc-form__input::placeholder {
  color: #aab8b8;
}
.lmsl-tc-form__input:focus {
  border-color: #1a5c5a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26,92,90,0.1);
}
.lmsl-tc-form__input.is-invalid {
  border-color: #c0392b;
  background: #fff8f7;
  box-shadow: 0 0 0 4px rgba(192,57,43,0.08);
}
.lmsl-tc-form__textarea {
  resize: vertical;
  min-height: 56px;
  line-height: 1.3;
}
.lmsl-tc-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a5c5a' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 10px;
  cursor: pointer;
  padding-right: 2.5rem;
}
.lmsl-tc-form__hint {
  font-size: 0.65rem;
  color: #8aabab;
  line-height: 1.15;
}
.lmsl-tc-form__error {
  font-size: 0.65rem;
  color: #c0392b;
  font-weight: 600;
  min-height: 0.62rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ── UPLOAD ÁREA ── */
.lmsl-tc-form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.lmsl-tc-form__upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  padding: 0.42rem 0.72rem;
  border: 1.5px dashed #b8d4d4;
  border-radius: 10px;
  background: #f4fafa;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s, 
              background 0.25s, 
              transform 0.2s;
  min-height: 40px;
}
.lmsl-tc-form__upload-area:hover {
  border-color: #1a5c5a;
  background: #eaf3f3;
  transform: scale(1.01);
}
.lmsl-tc-form__upload-area.has-file {
  border-color: #1a5c5a;
  background: #eaf3f3;
  border-style: solid;
}
.lmsl-tc-form__upload-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.lmsl-tc-form__upload-text {
  font-weight: 700;
  color: #1a5c5a;
  font-size: 0.76rem;
}
.lmsl-tc-form__upload-hint {
  font-size: 0.64rem;
  color: #8aabab;
}

/* ── RECAPTCHA ── */
.lmsl-tc-form__recaptcha {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

/* ── BOTÃO SUBMIT ── */
.lmsl-tc-form__actions {
  grid-column: 1;
  display: flex;
  justify-content: stretch;
  padding-top: 0.05rem;
}
.lmsl-tc-form__submit {
  width: 100%;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 10px;
  background: #e05a1a;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, 
              transform 0.2s, 
              box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(224,90,26,0.35);
}
.lmsl-tc-form__submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.lmsl-tc-form__submit:hover {
  background: #c44e15;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(224,90,26,0.45);
}
.lmsl-tc-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(224,90,26,0.3);
}
.lmsl-tc-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── MENSAGEM SUCESSO ── */
.lmsl-tc-form__success {
  grid-column: 1;
  background: linear-gradient(135deg, #eaf3f3, #f0f8f5);
  border-left: 4px solid #1a5c5a;
  border-radius: 12px;
  padding: 0.75rem;
  color: #1a2e2e;
  line-height: 1.7;
  font-size: 0.8rem;
  animation: fadeSlideUp 0.5s ease forwards;
}
.lmsl-tc-form__success p { 
  margin: 0 0 0.25rem; 
}

/* ── ANIMAÇÕES ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Entrada das seções ao carregar */
#pg_trabalhe_conosco .lmsl-lp__hero,
#pg_trabalhe_conosco .lmsl-tc-tipos__card,
#pg_trabalhe_conosco .lmsl-tc-form-section {
  animation: fadeSlideUp 0.5s ease both;
}
#pg_trabalhe_conosco .lmsl-tc-tipos__card:nth-child(1) {
  animation-delay: 0.1s;
}
#pg_trabalhe_conosco .lmsl-tc-tipos__card:nth-child(2) {
  animation-delay: 0.2s;
}
#pg_trabalhe_conosco .lmsl-tc-form-section {
  animation-delay: 0.15s;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .lmsl-tc-layout {
    grid-template-columns: 1fr;
  }

  .lmsl-tc-layout__formulario {
    position: static;
  }

  .lmsl-tc-tipos__grid {
    grid-template-columns: 1fr;
  }
  .lmsl-tc-form {
    grid-template-columns: 1fr;
  }
  .lmsl-tc-form__field--full {
    grid-column: 1;
  }
  .lmsl-tc-form__actions {
    justify-content: stretch;
  }
  .lmsl-tc-form__submit {
    width: 100%;
    text-align: center;
  }
  .lmsl-tc-form-section {
    padding: 1.5rem 1.25rem;
  }
  @media (max-width: 400px) {
    .g-recaptcha {
      transform: scale(0.88);
      transform-origin: left top;
    }
  }
}
