:root {
  --bg: #fff8fa;
  --bg-soft: #fff1f5;
  --card: rgba(255,255,255,0.86);
  --text: #4e2a32;
  --muted: #7f5b64;
  --primary: #b33b59;
  --primary-dark: #8e233f;
  --accent: #e8bfc9;
  --accent-2: #f2dce1;
  --line: rgba(179, 59, 89, 0.14);
  --shadow: 0 20px 45px rgba(128, 59, 78, 0.14);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1140px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 224, 233, 0.95), transparent 32%),
    linear-gradient(180deg, #fff9fb 0%, #fff4f7 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 249, 251, 0.8);
  border-bottom: 1px solid rgba(179, 59, 89, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(179, 59, 89, 0.12);
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1;
}
.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}
.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.site-nav a {
  font-weight: 600;
  color: var(--muted);
  transition: color .25s ease;
}
.site-nav a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
  transition: .3s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 252, 0.92) 0%, rgba(255, 248, 250, 0.78) 45%, rgba(255, 248, 250, 0.18) 100%),
    url('assets/portada.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.hero::after {
  content: '';
  position: absolute;
  right: -90px;
  top: 70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 191, 201, 0.55), rgba(232, 191, 201, 0));
  filter: blur(8px);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .72fr);
  gap: 2rem;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(179, 59, 89, 0.08);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1, .section-head h2, .intro h2, .video-grid h2, .contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 1rem 0;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 11ch;
}
.hero p, .intro p, .service-card p, .video-grid p, .contact-list p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.5rem 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #cc6680 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(179,59,89,.24);
}
.btn-secondary {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(179, 59, 89, 0.12);
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.hero-highlights li {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(179,59,89,.1);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 600;
}
.hero-card {
  background: rgba(255,255,255,.74);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(179,59,89,.08);
}
.hero-card img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 1rem;
  border-radius: 22px;
}
.badge {
  display: inline-flex;
  background: #fff;
  color: var(--primary);
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.contact-mini a { color: var(--primary-dark); }
.strip, .services, .promos, .gallery, .video-section, .social-section, .contact-section {
  padding: 5rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.intro h2, .section-head h2, .video-grid h2, .contact-info h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}
.cards-grid, .promo-grid, .gallery-grid, .social-grid, .contact-grid {
  display: grid;
  gap: 1.35rem;
}
.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-card, .promo-card, .social-card, .map-card, .contact-form, .contact-info {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card {
  padding: 1.5rem;
}
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #d8879b);
  margin-bottom: 1rem;
}
.service-card h3, .social-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.1rem;
}
.promo-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.promo-card {
  overflow: hidden;
}
.promo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .4s ease;
}
.promo-card:hover img { transform: scale(1.04); }
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.video-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.video-frame iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}
.social-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}
.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  color: #fff;
  font-weight: 800;
}
.social-icon.fb { background: linear-gradient(135deg, #ae3755, #d7859b); }
.social-icon.ig { background: linear-gradient(135deg, #c34c7b, #e3b2bf); }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.contact-info { padding: 1.5rem; }
.contact-list {
  display: grid;
  gap: .8rem;
  margin: 1.2rem 0 1.4rem;
}
.contact-list a { color: var(--primary-dark); font-weight: 600; }
.contact-form {
  padding: 1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(179,59,89,.12);
  background: rgba(255,255,255,.84);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: .85rem;
  outline: none;
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(179,59,89,.35);
  box-shadow: 0 0 0 4px rgba(179,59,89,.1);
}
.map-card { overflow: hidden; min-height: 100%; }
.map-card iframe { width: 100%; height: 100%; min-height: 620px; border: 0; }
.site-footer {
  padding: 1.5rem 0 2.2rem;
  border-top: 1px solid rgba(179,59,89,.08);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.site-footer p { color: var(--muted); margin: .3rem 0 0; }
.site-footer a { color: var(--primary); font-weight: 700; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
}
.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.float-btn:hover { transform: translateY(-2px) scale(1.02); }
.float-btn svg { width: 30px; fill: #fff; }
.float-btn.whatsapp { background: #25d366; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(34, 12, 17, .82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(94vw, 1000px);
  max-height: 86vh;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cards-grid, .promo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid, .contact-grid, .video-grid, .intro-grid, .hero-content { grid-template-columns: 1fr; }
  .hero h1 { max-width: 13ch; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: .8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: 2.9rem; }
  .promo-grid, .gallery-grid, .social-grid, .cards-grid, .field-row { grid-template-columns: 1fr; }
  .video-frame iframe, .map-card iframe { min-height: 360px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
