/* ============================================================
   VÉRTICE — editorial suíço-brutalista
   Papel + tinta + escarlate + pedra. Anton (display) / Archivo.
   Blocos de cor chapados como abstração de planta. Sem mono,
   sem marquee, sem wireframe — voz própria.
   ============================================================ */

:root {
  --paper:    #E7E5DE;
  --paper-2:  #DFDCD3;
  --ink:      #181613;
  --ink-soft: #4B463E;
  --scarlet:  #9C2323;
  --scar-dk:  #C4271C;
  --stone:    #B7B3A8;
  --line:     rgba(24,22,19,0.16);
  --line-2:   rgba(24,22,19,0.09);

  --display: "Anton", "Arial Narrow", sans-serif;
  --body:    "Archivo", system-ui, sans-serif;

  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--scarlet); color: #fff; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ── Faixas fotográficas (duotônico brutalista) ──────────── */
.vband { position: relative; overflow: hidden; background: var(--ink);
  min-height: clamp(340px, 58vh, 560px); display: flex; align-items: flex-end; }
.vband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.82); }
.vband-tint { position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(24,22,19,0.88), rgba(24,22,19,0.12) 58%); }
.vband .wrap { position: relative; padding-top: clamp(40px, 8vw, 96px); padding-bottom: clamp(28px, 4vw, 52px); }
.vband-cap { font-family: var(--display); text-transform: uppercase; color: var(--paper);
  font-size: clamp(2.4rem, 7vw, 5.5rem); line-height: 0.92; letter-spacing: 0.005em; max-width: 18ch; }
.vband-cap .scar { color: var(--scarlet); }
a { color: inherit; text-decoration: none; }
.scar { color: var(--scarlet); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 0.94; letter-spacing: 0.005em; text-transform: uppercase; }

/* Blocos de cor (abstração de planta) */
.b-ink { fill: var(--ink); }
.b-scar { fill: var(--scarlet); }
.b-stone { fill: var(--stone); }
.b-paper { fill: var(--paper); }
.b-outline { fill: none; stroke: var(--ink); stroke-width: 2; }
.logo__img {
  height: 30px; /* Aumente este valor conforme necessário (ex: 48px, 55px, 60px) */
  width: auto;  /* Garante que a proporção não ficasse distorcida */
  display: block;
  object-fit: contain;
}
/* ── Botões ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 26px; border: 2px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink);
  cursor: pointer; transition: background .25s, color .25s, transform .25s;
}
.btn-fill { background: var(--scarlet); border-color: var(--scarlet); color: #fff; }
.btn-fill:hover { background: var(--scar-dk); border-color: var(--scar-dk); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────────────── */
.hd { position: fixed; inset: 0 0 auto 0; z-index: 90; border-bottom: 2px solid transparent; transition: background .3s, border-color .3s; }
.hd.scrolled { background: var(--paper); border-bottom-color: var(--ink); }
.hd-in { display: flex; align-items: center; gap: 26px; height: 72px; }
.logo { font-family: var(--display); font-size: 26px; letter-spacing: 0.01em; text-transform: uppercase; }
.nav { margin-left: auto; display: flex; gap: 2px; }
.nav a { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); padding: 9px 13px; position: relative; }
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px; background: var(--scarlet); transform: scaleX(0); transform-origin: left; transition: transform .28s; }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 18px; }
.burger { display: none; }

.menu { position: fixed; inset: 0; z-index: 85; background: var(--scarlet); color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 14px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.menu.open { opacity: 1; pointer-events: all; }
.menu nav { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.menu nav a { font-family: var(--display); font-size: clamp(2.4rem, 12vw, 4rem); text-transform: uppercase; color: #fff; }

/* ── Reveal ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: clamp(120px, 16vh, 190px) 0 clamp(50px, 7vh, 90px); }
.hero-in { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
.kicker { font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: clamp(20px, 3vw, 34px); }
.hero-h { font-size: clamp(3.4rem, 11vw, 9.5rem); letter-spacing: 0; }
.hero-h span { display: block; }
.hero-side { display: flex; flex-direction: column; gap: 24px; }
.blocks svg { width: 100%; height: auto; display: block; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Bands ───────────────────────────────────────────────── */
.band-ink { background: var(--ink); color: var(--paper); padding: clamp(70px, 11vh, 140px) 0; }
.band-label { font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--scarlet); margin-bottom: 26px; }
.band-big { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.94; margin-bottom: clamp(40px, 6vw, 66px); }
.band-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); max-width: 1000px; }
.band-cols p { color: #b7b2a8; font-size: 16px; }
.band-cols p:first-child { color: var(--paper); }

.band-scar { background: var(--scarlet); color: #fff; padding: clamp(56px, 8vh, 90px) 0; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.num { display: flex; flex-direction: column; gap: 6px; }
.num-v { font-family: var(--display); font-size: clamp(3.4rem, 8vw, 6rem); line-height: 0.9; }
.num-l { font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.82); }

/* ── Sections ────────────────────────────────────────────── */
.sec { padding: clamp(80px, 12vh, 150px) 0; }
.sec-title { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: clamp(36px, 5vw, 60px); }

/* Fazemos — lista editorial com preenchimento no hover */
.do-list { list-style: none; border-top: 2px solid var(--ink); }
.do a {
  display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 24px; align-items: center;
  padding: clamp(20px, 2.6vw, 32px) clamp(6px, 2vw, 26px);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  transition: color .35s, padding-left .35s;
}
.do a::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.7,.2,1); z-index: 0; }
.do a:hover::before { transform: translateY(0); }
.do a:hover { color: var(--paper); padding-left: clamp(14px, 3vw, 34px); }
.do-name { font-family: var(--display); font-size: clamp(1.4rem, 3.4vw, 2.6rem); text-transform: uppercase; position: relative; z-index: 1; }
.do-desc { color: var(--ink-soft); font-size: 15.5px; position: relative; z-index: 1; transition: color .35s; }
.do a:hover .do-desc { color: #b7b2a8; }
.do-go { font-family: var(--display); font-size: 1.6rem; color: var(--scarlet); position: relative; z-index: 1; transform: translateX(-8px); opacity: 0; transition: transform .35s, opacity .35s; }
.do a:hover .do-go { transform: none; opacity: 1; }

.slider {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: none;
}

.slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  flex-shrink: 0;
}

.slider__menu {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: none;
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s ease;
}
/* project*/

.slider-pin-wrapper {
  position: relative;
  width: 100%;
}

.slider__desc {
  /* 1. Escolha a família da fonte */
  font-family: 'Inter', sans-serif; /* Ou a fonte do seu projeto, ex: 'Montserrat', 'Roboto', 'Space Grotesk' */

  /* 2. Tamanho e peso */
  font-size: 0.95rem;      /* Tamanho do texto */
  font-weight: 400;         /* 300 (light), 400 (normal), 500 (medium) */
  line-height: 1.5;        /* Espaçamento entre linhas */

  /* 3. Estilo e Espaçamento */
  letter-spacing: 0.03em;  /* Espaçamento entre letras */
  text-transform: none; /* Ou 'none' se quiser letras maiúsculas e minúsculas normais */

  /* 4. Cor e Opacidade */
  color: rgba(255, 255, 255, 0.85); /* Cor clara com leve transparência */
  max-width: 320px;       /* Limita a largura para não quebrar a tela */
  margin: 0;
}

/* Container pai para afastar o link até o final */
.slider__content-wrapper {
 
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza o conteúdo verticalmente */
  align-items: flex-start; /* Mantém os textos alinhados à esquerda (mude para 'center' se quiser alinhar ao centro) */
  min-height: 100vh;       /* Usa a altura total da tela */
  padding: 2rem 0;
  box-sizing: border-box;
}

/* 1. Título grande */
.slider__heading {
  color: #ffffff; /* Cor do título */
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  line-height: 0.9;
}

/* 2. Explicação abaixo do título */
.slider__desc {
  color: rgba(255, 255, 255, 0.85); /* Exemplo: Branco ligeiramente suave */
  /* Ou uma cor sólida: color: #e0e0e0; */
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
  font-family: inherit; /* Ou a fonte do seu corpo */
}

/* 3. Link ajustado para o rodapé inferior */
.slider__link {
  margin-top: 2rem; /* Substitui o 'margin-top: auto' para ficar junto do bloco centralizado */
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff; /* Cor do link */
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.slider__link:hover {
  color: #ffd700;
  opacity: 1;
  text-decoration: underline;
}

.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Container das imagens para garantir a sobreposição */
.slider__images {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Estado padrão dos itens empilhados */
.slider__img-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  /* Aceleração por Hardware para fluidez máxima */
  will-change: transform, opacity;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* O primeiro card já nasce visível e na posição final */
.slider__img-item:first-child,
.slider__img-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slider__img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider__menu:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.slider__menu span {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.slider__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  display: none;
}

.slider__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 32px 40px;
  min-height: 0;
  position: relative;
}

.slider__left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 4;
}

.slider__title {
  font-size: clamp(64px, 15vw, 200px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow: hidden;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.slider__title span {
  display: inline-block;
  will-change: transform;
}

.slider__footer {
  flex-shrink: 0;
  margin-top: 32px;
}

.slider__description {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-transform: uppercase;
}

.slider__location {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-transform: uppercase;
  margin-top: 12px;
}

.slider__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  font-weight: 400;
}

.slider__right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slider__images {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 63%; /* Aumentado de 55% para 63% (ajuste conforme o tamanho desejado) */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  will-change: transform, filter, opacity;
  contain: layout style;
  
  /* Borda arredondada */
  border-radius: 16px; /* Pode aumentar para 20px ou 24px se quiser mais arredondado */
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.9);
  
  /* Garante que a imagem respeite a curvatura do container */
  border-radius: inherit; 
}
/* ── TAMANHO DOS TEXTOS ──────────────────────────────────── */

/* Título principal do projeto */
.slider__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* <--- Mude aqui (mínimo, fluído, máximo) */
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Rótulo superior (CODEPEN '26 — NR.2 / PROJETOS) */
.slider__label {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px; /* <--- Ajuste do texto pequeno do topo */
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Descrição no rodapé da seção */
.slider__description,
.slider__location {
  font-family: var(--body);
  font-size: 14px; /* <--- Ajuste do tamanho da descrição */
  line-height: 1.4;
  color: var(--ink-soft);
}

@media screen and (min-width: 768px) {
  .slider__header {
    padding: 40px 56px;
  }

  .slider__label {
    display: flex;
  }

  .slider__body {
    padding: 0 56px 56px;
  }

  .slider__footer {
    margin-top: 48px;
  }

  .slider__slide {
    width: 60%;
  }

  .slider__cursor {
    width: 88px;
    height: 88px;
  }
}

@media screen and (min-width: 1024px) {
  .slider__body {
    flex-direction: row;
  }

  .slider__left {
    width: 55%;
    flex-shrink: 0;
    z-index: auto;
  }

  .slider__right {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .slider__slide {
    width: 68%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider__slide,
  .slider__title span {
    will-change: auto;
  }
}

/* Projetos — blocos chapados 
.pj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.pj-a { display: block; }
.pj-vis {
  background: var(--paper-2); border: 2px solid var(--ink);
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  transition: transform .3s, box-shadow .3s;
}
.pj-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.88); transition: filter .45s ease; }
.pj:hover .pj-photo { filter: grayscale(0) contrast(1.02) brightness(1); }
.pj-vis svg { position: absolute; left: 12px; top: 12px; width: 36%; max-width: 148px;
  height: auto; display: block; z-index: 2; background: var(--paper);
  border: 2px solid var(--ink); padding: 8px; }
.pj:hover .pj-vis { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--scarlet); }
.pj-info { padding: 20px 4px 0; }
.pj-info h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.pj-info p { font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }*/

/* Princípios */
.princ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); border-top: 2px solid var(--ink); padding-top: clamp(34px, 4vw, 54px); }
.princ-key { display: block; width: 46px; height: 8px; background: var(--scarlet); margin-bottom: 24px; }
.princ h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }
.princ p { color: var(--ink-soft); font-size: 16px; }

.team { margin-top: clamp(56px, 8vw, 90px); padding-top: 30px; border-top: 1px solid var(--line); }
.team-label { font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.team-names { display: flex; flex-wrap: wrap; gap: 12px 48px; }
.team-names span { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.2rem); text-transform: uppercase; }
.team-names i { font-family: var(--body); font-style: normal; font-weight: 600; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--scarlet); }

/* Contato */
.contato-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contato-h { font-size: clamp(3rem, 8vw, 6.4rem); margin-bottom: 24px; }
.contato-lead { color: var(--ink-soft); max-width: 38ch; font-size: 1.1rem; }
.contato-info { margin-top: 40px; display: grid; gap: 20px; }
.contato-info dt { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--scarlet); margin-bottom: 5px; }
.contato-info dd { font-weight: 500; font-size: 16px; line-height: 1.4; }
.contato-info a:hover { color: var(--scarlet); }
.contato-wsp {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.contato-wsp .link-wsp {
  text-decoration: underline;
  font-weight: 600;
  color: inherit; /* Mantém a cor atual do texto padrão */
  transition: color 0.25s ease;
}

.contato-wsp .link-wsp:hover {
  color: #ff3333; /* Ajuste o hex de vermelho se preferir um tom específico do seu projeto */
}

.form { background: var(--paper-2); border: 2px solid var(--ink); padding: clamp(24px, 4vw, 38px); }
.fld { margin-bottom: 18px; }
.fld label { display: block; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 8px; }
.fld input, .fld select, .fld textarea {
  width: 100%; font-family: var(--body); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 0; padding: 13px 14px; transition: border-color .2s, box-shadow .2s;
}
.fld textarea { resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; box-shadow: 3px 3px 0 var(--scarlet); }
.fld input::placeholder, .fld textarea::placeholder { color: #97928a; }
.fld select { appearance: none; }
.form-note { font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--scarlet); margin-top: 14px; min-height: 1em; }

/* Footer */
.ft-logo-img {
  height: 40px;          /* Ajuste o tamanho da imagem aqui conforme necessário */
  width: auto;           /* Mantém a proporção exata */
  display: block;
  object-fit: contain;
}
.ft { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vw, 90px) 0 28px; }
.ft-in { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid #34302a; }
.ft-logo { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 4.6rem); text-transform: uppercase; }
.ft-tag { font-weight: 500; text-align: right; color: #b7b2a8; }
.ft-nav { display: flex; gap: 22px; }
.ft-nav a { font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: #b7b2a8; transition: color .2s; }
.ft-nav a:hover { color: var(--scarlet); }
.ft-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-weight: 500; font-size: 11.5px; color: #6f685d; }

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav, .nav-cta { display: none; }
  .burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
  .burger span { display: block; width: 26px; height: 2.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
  .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero-in { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .hero-side { order: 2; }
  .blocks { max-width: 300px; }
  .band-cols { grid-template-columns: 1fr; gap: 20px; }
  .num-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .do a { grid-template-columns: 1fr auto; }
  .do-desc { display: none; }
  .pj-grid { grid-template-columns: 1fr; }
  .princ-grid { grid-template-columns: 1fr; gap: 30px; }
  .contato-in { grid-template-columns: 1fr; gap: 40px; }

  /* --- AJUSTE DO SLIDER NO MOBILE --- */
  .slider {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 40px;
  }

  .slider__body {
    padding: 0 20px 20px;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  /* Área reservada para a imagem no celular */
  .slider__right {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 240px !important; /* Define uma altura visível para o container */
    order: 1; /* Imagem acima do texto */
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Garante que o elemento do slide ocupe a caixa inteira e continue controlado pelo JS */
  .slider__slide {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  .slider__left {
    position: relative !important;
    width: 100% !important;
    order: 2; /* Texto abaixo da imagem */
  }

  .slider__content-wrapper {
    min-height: auto !important;
    padding: 0 !important;
  }

  /* Ajuste no tamanho dos títulos */
  .slider__title,
  .slider__heading {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    line-height: 1.05;
    word-break: break-word;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .slider__desc {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 1.45;
  }
}
