/* ═══════════════════════════════════════════
   QUEM SOMOS — estilos específicos da página
═══════════════════════════════════════════ */

/* Hero interno: menor que o da home */
.hero--inner {
  min-height: 90svh;
  padding-bottom: 100px;
}

.hero--inner .hero-bg {
  background-image: url('../background_quem_somos.webp');
  background-position: center 30%;
}

.hero--inner .hero-overlay {
  background:
    linear-gradient(to right, rgb(20 17 15 / 0%) 0%, transparent 45%),
    linear-gradient(160deg, rgba(30,26,22,0.75) 0%, rgba(34,30,26,0.88) 50%, rgba(20, 17, 15, 0.822) 100%);
}

.hero--inner .hero-inner {
  align-items: flex-end;
}

/* Botões hero ficam dentro do hero-left nesta página */
.hero--inner .hero-left {
  display: flex;
  flex-direction: column;
  flex: 2 1 0;
}

.hero--inner .hero-right {
  width: 40%;
  padding-top: 20px;
}

/* ── SEÇÃO: NOSSA ESSÊNCIA ── */
.section-essencia {
  background: var(--branco);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.essencia-inner {
  display: flex;
  align-items: center;
  gap: 160px;
}

.essencia-left {
  flex: 0 0 44%;
  min-width: 0;
}

.accent-bar {
  width: 56px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
  margin-bottom: 24px;
}

.essencia-tag {
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 24px;
  display: block;
}

.essencia-headline {
  font-weight: var(--fw-display);
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.essencia-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cinza);
  margin-bottom: 20px;
}

.since-badge {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 28px;
  background: rgba(251,174,66,0.12);
  border: 1px solid rgba(251,174,66,0.3);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--marrom);
}

.essencia-right {
  width: 780px;
  flex: 0 0 780px;
  position: relative;
}

.essencia-photo {
  width: 780px;
  height: 500px;
  border-radius: 20px;
  background: #e8f0e8;
  overflow: hidden;
  position: relative;
}

.essencia-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.essencia-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #888;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
}

.essencia-deco {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,174,66,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SEÇÃO: PROPÓSITO, VISÃO E VALORES ── */
.section-pvv {
  background: var(--off-white);
  padding: 100px 80px;
}

.pvv-header {
  text-align: center;
  margin-bottom: 60px;
}

.pvv-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pvv-block {
  background: var(--branco);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pvv-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

/* Barra superior que cresce ao revelar */
.pvv-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease) 0.2s;
}

.pvv-block.visible::before {
  transform: scaleX(1);
}

/* Ícone */
.pvv-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(251,174,66,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
}

.pvv-block:hover .pvv-block-icon {
  background: rgba(251,174,66,0.22);
}

.pvv-block-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 10px;
  display: block;
}

.pvv-block-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.pvv-block-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cinza);
  flex: 1;
}

/* Pills de valores dentro do card */
.pvv-block-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pvv-block-values span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--marrom);
  background: var(--amarelo);
  border: 1px solid var(--amarelo);
  border-radius: 100px;
  padding: 5px 14px;
  transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.pvv-block-values span:hover {
  opacity: 0.8;
}

/* ── SEÇÃO: METODOLOGIA ── */
.section-metodologia {
  background: var(--branco);
  padding: 100px 80px;
}

.metodologia-header {
  margin-bottom: 72px;
}

.metodologia-header .accent-bar {
  margin-bottom: 20px;
}

.section-metodologia .pillars-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ── SEÇÃO: QUEM CONDUZ ── */
.section-conduz {
  background: var(--off-white);
  padding: 100px 80px;
}

.conduz-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-bottom: 72px;
}

.leaders-grid {
  display: flex;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.leader-card {
  background: #FAAD41;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  flex-grow: 1;
  flex-basis: 42%;
  min-width: 0;
  transition: flex-basis 0.55s var(--ease, cubic-bezier(0.25,0.46,0.45,0.94)), box-shadow 0.3s ease;
}
/* card ativo (sanfona expandida) — começa no primeiro card */
.leader-card.is-active {
  flex-basis: 58%;
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}

.leader-photo {
  height: 360px;
  position: relative;
  overflow: hidden;
  background: #e8ddd5;
}


.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s var(--ease);
}

.leader-card:first-child .leader-photo img {
  transform: scale(1.7);
  object-position: center 15%;
}
.leader-card:nth-child(2) .leader-photo img {
  transform: scale(1.1);
  object-position: center 20%;
}
.leader-card:first-child:hover .leader-photo img {
  transform: scale(1.75);
}

.leader-card:hover .leader-photo img {
  transform: scale(1.04);
}

.leader-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,17,15,0.88) 0%, rgba(0,0,0,0.1) 60%);
}

.leader-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.leader-body {
  padding: 28px 30px 32px;
}

.leader-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.02em;
  color: rgba(34,30,26,0.95);
  margin-bottom: 5px;
}

.leader-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: rgba(34,30,26,0.55);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.leader-accent {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,30,26,0.25) 0%, transparent 100%);
  border-radius: 2px;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(34,30,26,0.8);
  min-height: 5.25em; /* reserva espaço p/ até 3 linhas: evita a seção "pular" durante a sanfona */
}

.leader-socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.leader-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(34,30,26,0.12);
  border: 1px solid rgba(34,30,26,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(34,30,26,0.65);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
}

.leader-social:hover {
  background: rgba(34,30,26,0.22);
  color: rgba(34,30,26,1);
  border-color: rgba(34,30,26,0.35);
}

/* ── SEÇÃO: NOSSA IDENTIDADE ── */
.section-identidade {
  background: var(--branco);
  padding: 100px 100px;
}

.identidade-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.identidade-left {
  flex: 0 0 50%;
  min-width: 0;
}

.identidade-eyebrow {
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 24px;
  display: block;
}

.identidade-headline .word-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.identidade-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--fw-display);
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--escuro);
  margin-bottom: 32px;
  text-align: left;
}


.identidade-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--cinza);
  margin-bottom: 18px;
}

.identidade-body strong {
  color: var(--marrom);
  font-weight: 700;
}

.identidade-right {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: 30px;
}

.identidade-logo-wrap {
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identidade-logo {
  width: 520px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(241,90,42,0.22));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.identidade-logo-wrap:hover .identidade-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 24px 64px rgba(241,90,42,0.35));
}

.cultura-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

/* Nav das tabs */
.ctab-nav {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  position: relative;
  margin-bottom: 48px;
}

.ctab-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cinza);
  background: none;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ctab-btn:hover {
  color: var(--escuro);
}

.ctab-btn.active {
  color: var(--escuro);
}

/* Linha deslizante embaixo da tab ativa */
.ctab-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: left 0.35s var(--ease), width 0.35s var(--ease);
}

/* Painéis */
.ctab-panels {
  position: relative;
}

.ctab-panel {
  display: none;
  animation: tabFadeIn 0.35s var(--ease) forwards;
}

.ctab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grid de itens */
.ctab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ctab-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s var(--ease);
  cursor: default;
}

.ctab-item:hover {
  background: rgba(251,174,66,0.06);
}

/* Remove bordas direitas e inferiores das bordas externas */
.ctab-item:nth-child(3n) { border-right: none; }
.ctab-item:nth-last-child(-n+3) { border-bottom: none; }

.ctab-item span:last-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--escuro);
  line-height: 1.4;
}

.ctab-icon {
  font-size: 13px;
  font-weight: 900;
  color: var(--amarelo);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(251,174,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.ctab-icon--neg {
  color: var(--vermelho);
  background: rgba(189,32,47,0.1);
}

.ctab-icon--warn {
  color: var(--laranja);
  background: rgba(241,90,42,0.12);
  font-size: 15px;
}

/* ── SEÇÃO: CONHEÇA O AMBIENTE ── */
.section-ambiente {
  background: var(--off-white);
  padding: 100px 80px;
}

.ambiente-header {
  text-align: center;
  margin-bottom: 64px;
}

.ambiente-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 196px 196px;
  gap: 16px;
}

.ambiente-main {
  grid-row: 1 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #d5cdc6;
  position: relative;
  min-height: 408px;
}

.ambiente-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.28s var(--ease, ease);
}

.ambiente-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-row: 1 / 3;
}

.ambiente-small {
  border-radius: 12px;
  overflow: hidden;
  background: #e0d8d0;
  position: relative;
  cursor: pointer;
}
.ambiente-small::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.12s var(--ease, ease);
  pointer-events: none;
}
.ambiente-small:hover::after,
.ambiente-small:focus-visible::after {
  background: rgba(0,0,0,0.15);
}
.ambiente-small:focus-visible {
  outline: 2px solid var(--laranja, #F15A2A);
  outline-offset: 2px;
}

.ambiente-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.28s var(--ease, ease), transform 0.15s var(--ease, ease);
}
.ambiente-small:hover img {
  transform: scale(1.04);
}

/* ícone de "trocar" — sempre visível, sinaliza que a miniatura é clicável */
.ambiente-swap-ico {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(20,17,15,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.12s var(--ease, ease), background 0.12s var(--ease, ease), transform 0.12s var(--ease, ease);
}
.ambiente-swap-ico svg { width: 13px; height: 13px; }
.ambiente-small:hover .ambiente-swap-ico,
.ambiente-small:focus-visible .ambiente-swap-ico {
  opacity: 1;
  background: var(--laranja, #F15A2A);
  transform: scale(1.1);
}

/* estado durante o crossfade */
.ambiente-gallery.is-swapping .ambiente-main img,
.ambiente-gallery.is-swapping .ambiente-small img {
  opacity: 0;
}

.ambiente-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: #999;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

/* ── SEÇÃO: TRABALHE CONOSCO ── */
.section-trabalhe {
  background: var(--grad-dark);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.section-trabalhe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.section-trabalhe::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(241,90,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.trabalhe-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.trabalhe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.trabalhe-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--amarelo);
  border-radius: 2px;
}

.trabalhe-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amarelo);
}

.trabalhe-headline {
  font-weight: var(--fw-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
}

.trabalhe-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

/* Subtítulo centralizado nas seções com header centralizado */
.conduz-header .sec-sub,
.cultura-header .sec-sub,
.ambiente-header .sec-sub,
.pvv-header .sec-sub {
  margin: 0 auto;
}
@media (max-width: 1728px) {
  .section-metodologia { padding: 100px 40px; }
  .essencia-photo { width: 700px; }
  .essencia-right { width: 700px; flex: 0 0 700px; }
}

@media (max-width: 1643px) {
  .identidade-headline { font-size: clamp(40px, 4.5vw, 50px); }
  .essencia-photo { width: 620px; }
  .essencia-right { width: 620px; flex: 0 0 620px; }
}

@media (max-width: 1350px) {
  .essencia-headline { font-size: clamp(36px, 3.8vw, 40px); }
  .essencia-body { font-size: 16px; }
  .essencia-photo { width: 500px; }
  .essencia-right { width: 500px; flex: 0 0 500px; }
  .identidade-headline {
        font-size: clamp(40px, 4.5vw, 44px);
    }
    .identidade-body {
    font-size: 15px;
  }
}


@media (max-width: 1200px) {
  .essencia-inner { flex-direction: column; }
  .essencia-right { width: 100%; }
  .essencia-photo { width: 100%; }
  .pvv-chips { grid-template-columns: repeat(3, 1fr); }
  .leaders-grid { flex-direction: column; max-width: 520px; height: auto !important; }
  .leader-card, .leader-card.is-active { flex-basis: auto; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
  .identidade-inner { flex-direction: column; }
  .identidade-right { width: 100%; }
}

@media (max-width: 1024px) {
  .hero--inner .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 24px;
  }
  .hero--inner .hero-left { flex: unset; width: 100%; align-items: center; }
  .hero--inner .hero-right { width: 100%; gap: 28px; }
  .hero--inner .hero-sub { border-left: none; border-top: 2px solid rgba(251,174,66,0.4); padding-left: 0; padding-top: 16px; text-align: center; }

  /* Fundamentos — 1 coluna */
  .pvv-blocks { grid-template-columns: 1fr; }

  /* Pilares — 1 coluna */
  .section-metodologia .pillars-grid { grid-template-columns: 1fr; }

  /* Identidade */
  .section-essencia { padding: 100px 30px; }
  .section-pvv { padding: 100px 30px; }
  .section-ambiente { padding: 100px 30px; }
  .section-identidade { padding: 50px 30px; }
  .identidade-logo-wrap { margin: 0 auto; }
  .identidade-logo { filter: none; }
  .identidade-logo-wrap:hover .identidade-logo { filter: none; }
  .identidade-body { font-size: 16px; }

  /* Eyebrow e heading — margin-bottom global */
  .pvv-block-label { margin-bottom: 24px; }
  .pvv-block-title { margin-bottom: 24px; }
  .essencia-tag { margin-bottom: 24px; }
  .essencia-headline { font-size: 40px; margin-bottom: 24px; }
  .essencia-body { font-size: 19px; }
  .identidade-headline { font-size: 40px; }
  .sec-tag { margin-bottom: 24px; }
  .sec-heading { margin-bottom: 24px; }
  .metodologia-header .accent-bar { margin-bottom: 24px; }
  .identidade-headline { margin-bottom: 24px; }
}

@media (max-width: 768px) {
  .section-essencia,
  .section-pvv,
  .section-metodologia,
  .section-conduz,
  .section-identidade,
  .section-ambiente,
  .section-trabalhe { padding: 80px 24px; }

  .pvv-blocks { grid-template-columns: 1fr; }
  .pvv-chips { grid-template-columns: repeat(2, 1fr); }
  .section-metodologia .pillars-grid { grid-template-columns: 1fr; }
  .identidade-logo-wrap { width: 320px; height: 320px; }
  .identidade-logo { width: 300px; }
  .ambiente-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ambiente-main { grid-row: unset; grid-column: unset; min-height: 240px; }
  .ambiente-small-grid { grid-row: unset; grid-template-columns: 1fr 1fr; }
  .ambiente-small { min-height: 120px; }
  .hero--inner .hero-right { align-items: center; }
  .hero--inner { min-height: 100svh; }
  .hero--inner .hero-ctas { flex-wrap: nowrap; gap: 10px; }
  .hero--inner .hero-ctas .btn-primary,
  .hero--inner .hero-ctas .btn-secondary { font-size: 13px; padding: 12px 18px; white-space: nowrap; }
}




