/* Porta de entrada da marca: tela dividida, Redentora (preto e branco) à esquerda e Georgina
   (rosê nude) à direita, cada uma na pele do próprio site. Cantos retos como nos dois sites. */

:root {
  --preto: #0e0e0e;
  --claro: #f2f1ee;
  --rose: #d0a99a;
  --rose-deep: #725c54;
  --rose-bg: #f7f0ed;
  --texto-rose: #2e2422;
  --topo: 60px;
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--preto); color: var(--claro); font-family: var(--font); -webkit-font-smoothing: antialiased; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* Faixa superior neutra: a marca fica sobre as duas metades sem brigar com nenhuma */
.topo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: var(--topo);
  padding-inline: 16px;
  background: var(--preto);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.topo img { width: 16px; height: auto; }
.marca { font-size: .95rem; letter-spacing: .2em; white-space: nowrap; }
.marca b { font-weight: 700; }
.marca span { font-weight: 300; }
.chamada {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #a09e99;
  white-space: nowrap;
}

.escolha { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100dvh - var(--topo)); }

.unidade {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}
.unidade-foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 1.4s var(--ease);
}
.unidade::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.unidade:hover .unidade-foto, .unidade:focus-within .unidade-foto { transform: scale(1.04); }

.unidade-texto { width: 100%; padding: clamp(28px, 5vw, 72px); }
.rotulo { display: block; margin-bottom: 10px; font-size: .75rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.unidade h2 { margin: 0; font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 300; line-height: 1; letter-spacing: -.02em; }
.endereco { margin: 22px 0 6px; font-size: 1.02rem; line-height: 1.55; }
.horario { margin: 0; font-size: .92rem; }
.acoes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.insta { display: block; margin-top: 22px; font-size: .85rem; letter-spacing: .04em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid currentColor;
  font: 600 .8rem/1 var(--font);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), transform .15s;
}
.btn i { font-size: 1.1rem; }
.btn:active { transform: translateY(1px); }
.btn-site i { transition: transform .3s var(--ease); }
.btn-site:hover i { transform: translateX(4px); }

/* Redentora: foto escura com degradê preto, texto claro */
.unidade--redentora { color: var(--claro); }
.unidade--redentora::before { background: linear-gradient(to top, rgba(10, 10, 10, .94) 8%, rgba(10, 10, 10, .55) 48%, rgba(10, 10, 10, .15)); }
.unidade--redentora .rotulo, .unidade--redentora .horario, .unidade--redentora .insta { color: #cfcdc8; }
.unidade--redentora .btn-site { background: var(--claro); color: #121212; border-color: var(--claro); }
.unidade--redentora .btn-site:hover { background: transparent; color: var(--claro); }
.unidade--redentora .btn-whats { color: var(--claro); border-color: rgba(255, 255, 255, .4); }
.unidade--redentora .btn-whats:hover { border-color: var(--claro); }

/* Georgina: degradê do rosê claro da unidade, texto escuro (contraste sobre o claro, não sobre o rosê) */
.unidade--georgina { color: var(--texto-rose); }
.unidade--georgina::before { background: linear-gradient(to top, rgba(247, 240, 237, .97) 10%, rgba(247, 240, 237, .8) 42%, rgba(208, 169, 154, .25)); }
.unidade--georgina .rotulo, .unidade--georgina .insta { color: var(--rose-deep); }
.unidade--georgina .horario { color: #574540; }
.unidade--georgina .btn-site { background: var(--rose-deep); color: #fbf7f5; border-color: var(--rose-deep); }
.unidade--georgina .btn-site:hover { background: transparent; color: var(--rose-deep); }
.unidade--georgina .btn-whats { color: var(--texto-rose); border-color: rgba(60, 40, 34, .35); }
.unidade--georgina .btn-whats:hover { border-color: var(--texto-rose); }

@media (prefers-reduced-motion: reduce) {
  .unidade-foto, .btn, .btn-site i { transition: none; }
  .unidade:hover .unidade-foto, .unidade:focus-within .unidade-foto { transform: none; }
}

/* Celular: as duas unidades empilhadas, cada uma ocupando meia tela no mínimo */
@media (max-width: 760px) {
  .escolha { grid-template-columns: 1fr; }
  .unidade { min-height: max(420px, calc(50dvh - var(--topo) / 2)); }
  .unidade h2 { font-size: 2.6rem; }
  .acoes { margin-top: 22px; }
}

@media (max-width: 420px) {
  .chamada { display: none; }
  .btn { padding: 14px 18px; }
}
