/* ══ UNIDADE PAGE ══ */
.page-hero {
  background: var(--marrom);
  padding: clamp(110px, 15vh, 150px) var(--px) clamp(56px, 8vw, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--mel),
    var(--mel2),
    var(--mel),
    transparent
  );
  opacity: 0.6;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 10% 60%,
    rgba(212, 168, 67, 0.12) 0%,
    transparent 50%
  );
}
.hero-deco {
  position: absolute;
  right: var(--px);
  bottom: -20px;
  opacity: 0.05;
  pointer-events: none;
}
.hero-deco svg {
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  stroke: var(--mel2);
  fill: none;
  stroke-width: 0.6;
}
.hero-inner {
  max-width: var(--mw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--creme);
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--mel2);
}
.hero-left p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(245, 238, 228, 0.6);
  line-height: 1.75;
  max-width: 560px;
}
.hero-badge {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: clamp(20px, 3vw, 32px) clamp(24px, 3.5vw, 40px);
  border-radius: 4px;
  text-align: center;
  flex-shrink: 0;
}
.hero-badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--mel), var(--mel2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.hero-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: #2e1a0e;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-badge strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--creme);
  display: block;
  margin-bottom: 4px;
}
.hero-badge span {
  font-size: 11px;
  color: rgba(212, 168, 67, 0.55);
  letter-spacing: 1px;
}

.sec-info {
  background: var(--branco);
}
.info-wrap {
  max-width: var(--mw);
  margin: 0 auto;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.info-card {
  background: var(--creme);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  border-left: 4px solid var(--mel);
}
.info-card-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mel);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card-title::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--mel);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.18),
    rgba(212, 168, 67, 0.08)
  );
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--mel);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-txt strong {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--marrom);
  display: block;
  margin-bottom: 4px;
}
.info-txt span {
  font-size: 14px;
  color: var(--marrom-m);
  line-height: 1.6;
}

.como-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.como-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 6px;
}
.como-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--marrom-m);
  line-height: 1.7;
  margin-bottom: 8px;
}
.como-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--creme);
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: border-color 0.25s;
}
.como-item:hover {
  border-color: rgba(212, 168, 67, 0.4);
}
.como-item-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.como-item-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.como-item-ico.metro {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.como-item-ico.metro svg {
  stroke: white;
}
.como-item-ico.ponto {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
.como-item-ico.ponto svg {
  stroke: white;
}
.como-item-ico.ref {
  background: linear-gradient(135deg, var(--mel), var(--mel2));
}
.como-item-ico.ref svg {
  stroke: #2e1a0e;
}
.como-item-ico.acess {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.como-item-ico.acess svg {
  stroke: white;
}
.como-txt strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--marrom);
  display: block;
  margin-bottom: 3px;
}
.como-txt span {
  font-size: 12px;
  color: var(--marrom-m);
  line-height: 1.5;
}
.tempo-pill {
  margin-left: auto;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.15),
    rgba(212, 168, 67, 0.08)
  );
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mel);
  white-space: nowrap;
}

.sec-mapa {
  background: var(--creme);
  padding: var(--py) var(--px);
}
.mapa-inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.mapa-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--marrom);
  color: var(--creme);
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-maps:hover {
  background: var(--marrom-m);
  transform: translateY(-2px);
}
.btn-maps svg {
  width: 16px;
  height: 16px;
  stroke: var(--mel2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mapa-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212, 168, 67, 0.2);
  box-shadow: 0 8px 40px rgba(59, 35, 20, 0.08);
}
.mapa-frame iframe {
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  border: none;
  display: block;
}

.sec-hora {
  background: var(--marrom);
  padding: var(--py) var(--px);
}
.hora-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.hora-txt .s-tag {
  color: var(--mel2);
}
.hora-txt .s-title {
  color: var(--creme);
  margin-bottom: 12px;
}
.hora-txt p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245, 238, 228, 0.6);
  line-height: 1.7;
}
.hora-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hora-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: background 0.3s;
}
.hora-card.open {
  background: rgba(212, 168, 67, 0.1);
}
.hora-card.closed {
  background: rgba(255, 255, 255, 0.04);
}
.hora-dia {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hora-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hora-dot.verde {
  background: #22c55e;
}
.hora-dot.cinza {
  background: rgba(212, 184, 150, 0.3);
}
.hora-dia-txt strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--creme);
  display: block;
}
.hora-horario {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--mel2);
}
.hora-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(212, 184, 150, 0.4);
}

.sec-cta {
  background: var(--branco);
  padding: var(--py) var(--px);
}
.cta-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-txt h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--marrom);
  margin-bottom: 10px;
}
.cta-txt p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--marrom-m);
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-serv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--marrom);
  padding: 16px 32px;
  border: 1.5px solid rgba(46, 26, 14, 0.2);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-serv:hover {
  border-color: var(--mel);
  color: var(--mel);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hora-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    display: none;
  }
  .mapa-head {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-btns {
    justify-content: center;
  }
  .foot-bot {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .foot-bot {
    flex-direction: column;
    gap: 6px;
  }
  .btn-wapp,
  .btn-serv {
    width: 100%;
    justify-content: center;
  }
}

/* ── RESPONSIVO MOBILE COMPLETO ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 90px var(--px) 36px;
  }
  .hero-left h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hora-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    display: none;
  }
  .mapa-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mapa-frame iframe {
    height: clamp(200px, 45vw, 280px);
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-wapp,
  .btn-serv {
    width: 100%;
    justify-content: center;
  }
  .como-item {
    flex-wrap: wrap;
  }
  .tempo-pill {
    margin-left: 0;
    margin-top: 4px;
  }
  .hora-card {
    padding: 14px 16px;
  }
  .hora-horario {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .info-card {
    padding: 20px 16px;
  }
  .como-item {
    padding: 14px 16px;
  }
  .hora-cards {
    gap: 8px;
  }
}
