
:root {
  --bg-body: #fff7f9;
  --bg-light: #fceff4;
  --bg-card: #ffffff;
  --primary: #e6a9c7;
  --primary-deep: #c97ca4;
  --accent: #8cc19c;
  --text-main: #3c2b30;
  --text-soft: #6b5662;
  --border-soft: rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 18px 40px rgba(25, 8, 21, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #ffe1ec 0, #fff7f9 40%, #ffffff 100%);
}

/* HEADER */

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5vw;
  background: rgba(255, 247, 249, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.logo-area img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 0.15rem;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--primary-deep);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-main);
}

/* HERO */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  padding: 3.5rem 5vw 3rem;
  gap: 2.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(233, 164, 192, 0.32), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: floatUp 0.9s ease-out both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.hero h1 {
  margin: 1.5rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3vw + 1.4rem, 3.2rem);
  line-height: 1.08;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  max-width: 30rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-address {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* HERO IMAGE */

.hero-image {
  position: relative;
  z-index: 1;
  justify-self: center;
  max-width: 420px;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 12% -8%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(230, 169, 199, 0.65), rgba(255, 255, 255, 0.85));
  filter: blur(2px);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}

.hero-image:hover img {
  transform: translateY(-6px);
}

/* GENERIC SECTION */

.section {
  padding: 3.5rem 5vw;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

/* ABOUT */

.about {
  background: radial-gradient(circle at bottom right, #ffe7f1 0, #fff7f9 50%, #ffffff 100%);
}

.about .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-soft);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.94rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-list i {
  color: var(--accent);
  font-size: 0.9rem;
}

.about-photo {
  position: relative;
}

.about-image-main img,
.about-image-secondary img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.about-image-main {
  box-shadow: var(--shadow-soft);
}

.about-image-secondary {
  position: absolute;
  width: 55%;
  bottom: -12%;
  right: -4%;
  box-shadow: var(--shadow-soft);
  border-radius: 22px;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(230, 169, 199, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(230, 169, 199, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.card-note {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.card-price,
.promo-price {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 1.1rem;
}

/* PROMOS */

.promos {
  background: #fff;
}

.promo-card {
  min-height: 190px;
}

.promo-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.promo-small {
  font-size: 0.82rem;
  margin-top: 0.6rem;
}

/* GALLERY */

.gallery {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}

/* VIDEO */

.video-section {
  background: #fff;
}

.video-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.video-text p {
  color: var(--text-soft);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* SOCIALS */

.socials {
  background: radial-gradient(circle at top right, #ffe9f4 0, #fff7f9 45%, #ffffff 100%);
}

.socials-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.social-handles {
  margin-top: 1.1rem;
  font-size: 0.95rem;
}

.social-handles i {
  color: #1877f2;
  margin-right: 0.4rem;
}

.social-handles a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.social-embed iframe {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
}

/* CONTACTO */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info p {
  color: var(--text-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.94rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-list i {
  margin-top: 0.1rem;
  color: var(--primary-deep);
}

.contact-list a {
  color: var(--text-main);
  text-decoration: none;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.contact-form textarea {
  border-radius: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(230, 169, 199, 0.9);
  box-shadow: 0 0 0 1px rgba(230, 169, 199, 0.1);
  background: #fffafb;
}

.contact-form .full {
  width: 100%;
  margin-top: 0.7rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius-lg);
  border: 0;
  box-shadow: var(--shadow-soft);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-deep), var(--primary));
  color: white;
  box-shadow: 0 14px 30px rgba(201, 124, 164, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 124, 164, 0.7);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-deep);
  border: 1px solid rgba(201, 124, 164, 0.55);
}

.btn-outline:hover {
  background: #ffffff;
}

/* FLOATING WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  z-index: 90;
  text-decoration: none;
  font-size: 1.6rem;
  animation: pulse 1.8s infinite;
}

/* MUSIC TOGGLE */

.music-toggle {
  position: fixed;
  right: 1.3rem;
  bottom: 4.7rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-deep);
  z-index: 90;
}

/* FOOTER */

.main-footer {
  padding: 2rem 5vw 1.8rem;
  text-align: center;
  font-size: 0.82rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--text-soft);
}

.main-footer a {
  color: var(--primary-deep);
  text-decoration: none;
}

/* ANIMATIONS */

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.5rem;
  }

  .hero-image {
    order: -1;
    max-width: 340px;
  }

  .about .section-inner,
  .video-inner,
  .socials-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-image-secondary {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-header {
    padding-inline: 1rem;
  }

  .main-nav {
    position: absolute;
    inset: 60px 1rem auto 1rem;
    background: rgba(255, 247, 249, 0.97);
    border-radius: 18px;
    padding: 0.8rem 1rem;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-inline: 1.1rem;
  }

  .section {
    padding-inline: 1.1rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .music-toggle {
    right: 1rem;
    bottom: 4.2rem;
  }
}
