
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #3d2b3f;
  background: #fff9fc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: linear-gradient(135deg, #f8bcd4, #f58fb9);
  color: #ffffff;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.top-bar span {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-bar a {
  font-weight: 500;
  text-decoration: underline;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary {
  background: #ffffff;
  color: #d54386;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.16);
  background: #ffe6f0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 1rem 1.5rem 2.5rem;
  gap: 1.75rem;
}

.hero-copy {
  padding-right: 1.5rem;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.hero h1 span {
  color: #7a2257;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 30rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-size: 0.8rem;
}

.hero-badge {
  background: rgba(255,255,255,0.75);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-note {
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-media {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  background: #fdd3e2;
}

/* Sections */

section {
  padding: 2.5rem 1.5rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: #c85894;
  margin-bottom: 0.25rem;
}

.section-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  padding: 1.25rem 1.35rem;
  border-radius: 1.4rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at -10% -10%, rgba(248,188,212,0.55), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card h3 {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.service-card p,
.service-card ul {
  position: relative;
  font-size: 0.9rem;
}

.service-card ul {
  padding-left: 1rem;
}

.service-card li {
  margin-bottom: 0.25rem;
}

/* Promo strip */

.promo-strip {
  background: linear-gradient(120deg, #f58fb9, #f7b9cf);
  color: #ffffff;
}

.promo-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.promo-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-badge {
  background: #ffffff;
  color: #cd2b7e;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.promo-text {
  font-size: 0.95rem;
}

.promo-text strong {
  font-size: 1.05rem;
}

/* Gallery */

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

.gallery-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item::after {
  content: "Ver más";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.7rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  position: relative;
}

.lightbox img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ffffff;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Video */

.video-wrapper {
  margin-top: 1.25rem;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border: none;
}

/* Contact & location */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card, .location-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.contact-card form {
  display: grid;
  gap: 0.7rem;
}

.contact-card label {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-card input,
.contact-card textarea {
  margin-top: 0.15rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid #e0c3d6;
  font: inherit;
  background: #fffdfd;
}

.contact-card textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-card small {
  font-size: 0.75rem;
  color: #7b607f;
}

.location-card p {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.location-card iframe {
  width: 100%;
  border: none;
  border-radius: 1rem;
  margin-top: 0.75rem;
  height: 260px;
}

/* Socials */

.social-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-pill {
  background: #ffe4f0;
  color: #742655;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
}

.whatsapp-float a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.3);
}

/* Footer */

footer {
  background: #1a1a1f;
  color: #f4e5f0;
  padding: 1.3rem 1.5rem 1rem;
  font-size: 0.8rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-inner p {
  max-width: 480px;
}

.footer-inner a {
  color: #ffd0ec;
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-copy {
    order: 2;
    padding-right: 0;
  }
  .hero-media {
    order: 1;
  }
  .navbar {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
  .contact-layout {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .hero {
    padding-inline: 1rem;
  }
  section {
    padding-inline: 1rem;
  }
  .video-wrapper iframe {
    height: 220px;
  }
}
