:root {
  --bg: #0e1630;
  --pink: #ff2e72;
  --pink-dark: #cd1a55;
  --blue: #19a7ff;
  --card: #ffffff;
  --text: #1f2a44;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(140deg, #e9f1ff 0%, #ffeaf2 45%, #f8f9ff 100%);
}

.hero {
  position: relative;
  min-height: 82vh;
  color: #fff;
  padding: 1.2rem clamp(1rem, 4vw, 3rem) 4rem;
  background:
    linear-gradient(160deg, rgba(20, 167, 255, 0.22), rgba(255, 46, 114, 0.12)),
    linear-gradient(124deg, #ff2e72 0%, #f21863 40%, #0b2667 100%);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 42%, rgba(255, 255, 255, 0.12) 42% 48%, transparent 48% 100%),
    linear-gradient(40deg, transparent 34%, rgba(255, 255, 255, 0.1) 34% 39%, transparent 39% 100%);
  pointer-events: none;
}

.topbar,
.hero-content {
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  background: #fff;
  color: var(--pink);
}

.brand-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.brand-sub {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-content {
  max-width: 50rem;
  margin-top: clamp(3rem, 10vh, 8rem);
}

.tag {
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  letter-spacing: 1.2px;
}

h1 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(2rem, 5.7vw, 4rem);
}

.hero-content p {
  max-width: 42rem;
}

main {
  max-width: 1050px;
  margin: -2.3rem auto 2.5rem;
  padding: 0 1rem;
}

.card,
.gallery {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(17, 22, 37, 0.12);
  padding: clamp(1rem, 2.6vw, 2rem);
  margin-bottom: 1rem;
}

.card-address {
  border-top: 7px solid var(--pink);
}

.address-main {
  font-size: clamp(1rem, 3.2vw, 1.3rem);
  margin-bottom: 0;
  font-weight: 700;
}

.address-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.address-links a {
  color: var(--pink-dark);
  font-weight: 700;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  border: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #e8edfc;
  box-shadow: 0 8px 16px rgba(17, 22, 37, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(17, 22, 37, 0.2);
  outline: 2px solid #8ab8ff;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.media-tag {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  background: rgba(20, 26, 43, 0.85);
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.media-tag-video {
  background: rgba(205, 26, 85, 0.9);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 26, 43, 0.75);
  font-size: 1.1rem;
}

.map-wrap {
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid #d7dff0;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-whatsapp {
  color: #fff;
  border: 1px solid #fff;
}

.btn-wide {
  min-width: min(90vw, 320px);
  text-align: center;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 24, 0.94);
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3.3rem 1rem 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  width: min(1000px, 92vw);
  max-height: 72vh;
  display: grid;
  place-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 0.75rem;
}

.lightbox-content video {
  background: #000;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2.7rem;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-caption {
  margin-top: 0.8rem;
  color: #f3f5ff;
  text-align: center;
  font-weight: 600;
}

footer {
  text-align: center;
  color: #3e4d73;
  padding: 1rem 1rem 2.2rem;
}

.small {
  font-size: 0.88rem;
  opacity: 0.9;
}

@media (max-width: 650px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 73vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 3.2rem);
  }

  .lightbox-next {
    right: calc(50% - 3.2rem);
  }
}
