/* Onze Skyline — Home */

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 80px;
  max-width: 900px;
}
.hero__logo {
  display: inline-block;
  margin-bottom: 32px;
}
.hero__logo img {
  height: 140px;
  width: auto;
}
@media (max-width: 720px) {
  .hero__logo img { height: 96px; }
}
.hero__title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-bottom: 22px;
  color: #fff;
  text-transform: uppercase;
}
.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 60ch;
  margin: 0 auto 36px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2.4s infinite ease-in-out;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* === ONZE (Sobre) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.about-content p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.1em;
  font-weight: 300;
}
.about-content p strong {
  color: var(--text-strong);
  font-weight: 600;
}
.about-photo {
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16 / 10; max-width: 560px; margin: 0 auto; }
}

/* === SPLIT GRID (Reservas/Eventos/Hotel) === */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.split-grid--reverse .split-grid__content { order: 2; }
.split-grid__content p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: 300;
}
.split-grid__content p strong { color: var(--text-strong); font-weight: 600; }
.split-grid__content .section__title {
  text-align: left;
}
.split-grid__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.split-grid__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.split-grid__photo:hover img { transform: scale(1.04); }
.split-grid__photo--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  aspect-ratio: auto;
}
.split-grid__photo--double img {
  aspect-ratio: 3 / 4;
  height: auto;
}

.info-list {
  margin: 18px 0 26px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.info-list li {
  color: var(--text);
  padding: 8px 0;
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 300;
}
.info-list strong { color: var(--text-strong); font-weight: 600; }

@media (max-width: 820px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-grid--reverse .split-grid__content { order: 0; }
  .split-grid__photo { aspect-ratio: 16 / 10; }
}

/* === HOTEL SECTION (special) === */
.hotel-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hotel-content {
  text-align: left;
}
.hotel-content .wyndham-logo {
  max-width: 280px;
  margin-bottom: 24px;
}
.hotel-content p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: 300;
}
.hotel-content p strong { color: var(--text-strong); font-weight: 600; }
.hotel-photo {
  position: relative;
  overflow: hidden;
  align-self: center;
  max-height: 720px;
  display: flex;
  justify-content: center;
}
.hotel-photo img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  display: block;
}
@media (max-width: 820px) {
  .hotel-row { grid-template-columns: 1fr; }
  .hotel-photo {
    max-width: 100%;
    max-height: 520px;
    margin: 0 auto;
  }
  .hotel-photo img { max-width: 360px; max-height: 520px; }
}

/* === CONTATO === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 280ms var(--ease);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 32px; height: 32px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card__value {
  color: var(--text-strong);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}
.contact-card__value a:hover { color: var(--gold); }
