:root {
  /* Official Palette */
  --glam-pink: #E6B7C6;
  --glam-old-rose: #B07B83;
  /* Rosa Viejo (Requested for borders) */
  /* Rosa Blush (CTA) */
  --glam-pink-hover: #D1A1B1;
  /* Hover State */
  --glam-champagne: #F5F1EC;
  /* Beige Claro / Marfil (Fondo) */
  --glam-nude: #D6BFAF;
  /* Nude Madera (Secundario) */
  --glam-gold: #C9A24D;
  /* Dorado Suave (Accent) */
  --glam-dark: #3A3A3A;
  /* Gris Oscuro Elegante (Texto) */
  --glam-green: #4F6F5A;
  /* Verde Natural */

  --wsp-green: #25D366;

  /* Text & Utility aliases */
  --text-main: var(--glam-dark);
  --text-muted: #666666;

  /* Glass effect updated */
  --glass: rgba(255, 255, 255, 0.65);
  /* Más transparente sobre el beige */
  --glass-border: var(--glam-nude);
}

/* ... (Reset and Body code remains same) ... */

/* TEXTO GLOW UPDATED (Darker for light theme) */
.text-glow {
  color: var(--text-main);
  opacity: 0.92;
  text-shadow: none;
  /* Removed heavy glow for readability on light bg */
  font-weight: 500;
  animation: fadeUp 0.9s ease forwards 0.65s;
  opacity: 0;
}

/* BRAND TITLE GRADIENT UPDATED */
.brand-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.6rem;
  margin-top: .55rem;
  background: linear-gradient(90deg,
      var(--glam-gold),
      var(--glam-pink),
      var(--glam-champagne),
      var(--glam-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 14px rgba(255, 144, 179, 0.25);
  animation: fadeUp 0.9s ease forwards 0.45s;
  opacity: 0;
}

/* ... (Other styles) ... */

/* HALO GLAMOROSO UPDATED (Pinker) */
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 144, 179, 0.35) 0%,
      /* Pink center */
      rgba(212, 175, 55, 0.25) 60%,
      /* Gold edge */
      transparent 80%);

  filter: blur(15px);
  opacity: 0.6;
  z-index: 0;

  animation: softGlow 4s ease-in-out infinite alternate;
}

/* ... */

/* ICONS UPDATED (Mix of Gold and Pink) */
.services-list li i {
  color: var(--glam-pink);
  /* Pink bullets for services */
  transform: translateY(2px);
}

.section-title i {
  color: var(--glam-gold);
  /* Icons in titles stay gold */
}

/* ... */

/* BTN PHOTOS GRADIENT UPDATED */
.btn-photos {
  background: linear-gradient(90deg, var(--glam-gold), var(--glam-pink), var(--glam-champagne));
  color: #111;
  font-weight: 800;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
  background: var(--glam-champagne);
  /* #F5F1EC */
  min-height: 100vh;
  animation: fadeInBody 1.1s ease-in-out;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CANVAS */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* TARJETA */
.glass-card {
  background: var(--glass);
  border-radius: 22px;
  padding: 2rem;
  backdrop-filter: blur(14px);

  /* Old Rose / Gold Border & Ambient Glow */
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(176, 123, 131, 0.15),
    /* Rose Shadow */
    0 0 25px rgba(212, 175, 55, 0.1),
    0 0 40px rgba(255, 255, 255, 0.4);

  max-width: 520px;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  animation: cardEntry 0.9s ease forwards 0.25s;
  position: relative;
  overflow: hidden;
}

/* Option 2: Pearl Shine Effect */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  animation: pearlShine 7s infinite ease-in-out;
}

@keyframes pearlShine {
  0% {
    left: -150%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  40% {
    left: 150%;
    opacity: 0;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}

/* Línea inferior estilo “impresión” */
.glass-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--glam-gold),
      var(--glam-pink),
      var(--glam-champagne),
      var(--glam-gold));
  opacity: 0.95;
}

@keyframes cardEntry {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*LOGO */
/* CONTENEDOR */
.logo-wrap {
  position: relative;
  display: inline-block;
  padding: 10px;
  /* Space for glow */
}

/* HALO GLAMOROSO (Soft Pulse) */
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;

  /* Ethereal Halo (Soft & Premium) */
  background: radial-gradient(circle,
      rgba(230, 183, 198, 0.3) 0%,
      /* Soft Pink */
      rgba(201, 162, 77, 0.2) 40%,
      /* Very Light Gold */
      transparent 70%);

  filter: blur(25px);
  /* Diffused glow */
  opacity: 0.55;
  /* Subtle backing */
  z-index: 0;

  animation: softGlow 4s ease-in-out infinite alternate;
}

/* LOGO */
.logo {
  position: relative;
  z-index: 1;
  width: 350px;
  /* Big Desktop */
  transform: translateZ(0);
  /* Stronger shadow to pop white text */
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.75));
}

/* Animación Soft Glow */
@keyframes softGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* Responsive */
@media (max-width:576px) {
  .logo {
    width: 450px;
    /* Requested Size */
    max-width: 100%;
    /* Safety Rail */
  }
}


/* TITULOS */
.brand-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.6rem;
  margin-top: .55rem;
  /* Gradient with Gold + Nude + Pink */
  background: linear-gradient(90deg,
      var(--glam-gold),
      var(--glam-nude),
      var(--glam-pink),
      var(--glam-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  /* Clean for premium look */
  animation: fadeUp 0.9s ease forwards 0.45s;
  opacity: 0;
}

.text-glow {
  color: var(--text-main);
  opacity: 0.92;
  text-shadow: none;
  font-weight: 500;
  animation: fadeUp 0.9s ease forwards 0.65s;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECCIÓN SERVICIOS */
.services-wrap {
  text-align: left;
  background: rgba(255, 245, 246, 0.6);
  /* Soft Rose Tint */
  border: 1px solid var(--glam-old-rose);
  /* Rosa Viejo Solid */
  border-radius: 16px;
  padding: 1rem 1rem 0.85rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.section-title {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: var(--text-main);
  font-weight: 600;
  opacity: 1;
}

.services-list {
  list-style: none;
  display: grid;
  gap: .45rem;
  padding-left: 0;
  margin-bottom: 0;
}

.services-list li {
  font-size: 0.95rem;
  opacity: 0.92;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
}

.services-list li i {
  color: var(--glam-pink);
  transform: translateY(2px);
}

/* COLLAPSIBLE SERVICES */
/* COLLAPSIBLE SERVICES */
.services-content-collapsed {
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
  /* Smoother/Slower */
}

.services-content-expanded {
  max-height: 800px;
  /* Enough to fit all content */
  transition: max-height 0.8s ease-in-out;
}

.services-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* Fade to light bg */
  background: linear-gradient(to bottom, rgba(253, 251, 247, 0), rgba(253, 251, 247, 1));
  pointer-events: none;
  /* Let clicks pass if needed */
  transition: opacity 0.5s ease;
  opacity: 1;
}

.btn-expand {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glam-gold);
  color: var(--glam-gold);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;

  /* SUtile Bounce/Pulse Effect */
  animation: btnPulse 3s infinite;
}

.btn-expand:hover {
  background: var(--glam-gold);
  color: #000;
  animation: none;
  /* Stop pulse on hover */
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
}

/* BOTONES */
.links-container {
  display: grid;
  gap: 1rem;
  animation: fadeUp 0.9s ease forwards 0.85s;
  opacity: 0;
}

.btn-custom {
  border: none;
  border-radius: 50px;
  padding: .92rem 1.4rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: transform .25s ease, filter .25s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-wsp {
  background: var(--wsp-green);
}

.btn-ig {
  background: var(--glam-pink);
  color: var(--text-main);
  font-weight: 600;
}

.btn-ig:hover {
  background: linear-gradient(90deg, var(--glam-pink-hover) 70%, #833AB4 85%, #FD1D1D 95%, #FCB045 100%);
}

.btn-photos {
  background: var(--glam-pink);
  /* Rosa Blush */
  color: var(--text-main);
  font-weight: 600;
}

.btn-photos:hover {
  background: var(--glam-pink-hover);
  /* #D1A1B1 */
}

/* MAPA */
.map-container {
  margin-top: 1.4rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--glam-old-rose);
  /* Rosa Viejo Uniforme */
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.map-container iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-icon {
  color: var(--glam-gold);
  font-size: 1.25rem;
}

.btn-mini-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin-top: 0.9rem;
  padding: .7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(176, 123, 131, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
  text-decoration: none;
  transition: .25s;
}

.btn-mini-map:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* WHATSAPP FLOTANTE */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--wsp-green);
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  z-index: 1000;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.tooltip-whatsapp {
  position: fixed;
  bottom: 92px;
  right: 20px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: .9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: .2s;
  pointer-events: none;
}

.whatsapp-btn:hover .tooltip-whatsapp {
  opacity: 1;
  transform: translateY(0);
}

/* MODAL / CARRUSEL */
.modal-content {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  height: 75vh;
  background: var(--glam-champagne);
  /* Was #000 */
  border-radius: 12px;
  /* Do not force display:flex globally as it breaks bootstrap's display:none */
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.carousel-inner {
  border-radius: 12px;
}

.carousel-item img,
.carousel-item video,
.media-item {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Ensure full image/video is visible */
  margin: auto;
  border-radius: 0;
  /* Remove double framing if present on container */
}

/* Plyr Fixes for Carousel */
.carousel-item .plyr {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item .plyr__video-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.carousel-item .plyr video {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.mini-note {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width:576px) {
  .glass-card {
    padding: 1.4rem;
    margin: 1rem;
  }

  .collage-frame {
    width: 75px;
    height: 100px;
  }

  .btn-custom {
    font-size: 0.92rem;
    padding: 0.82rem 1rem;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .services-list li {
    font-size: 0.92rem;
  }
}

/* CTA BOTÓN – COTIZA AHORA (WHATSAPP) */
.cta-btn {
  position: relative;
  width: 100%;
  padding: 1rem 1.3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);

  /* Rosa Blush Solid + Shadow */
  background: var(--glam-pink);

  box-shadow: 0 10px 20px rgba(230, 183, 198, 0.4);
  /* Pink shadow */

  animation: ctaBuzz 3s infinite ease-in-out;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta-btn:hover {
  background: var(--glam-pink-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 25px rgba(230, 183, 198, 0.6);
}

/* Bloque izquierdo (WhatsApp + texto) */
.cta-left {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-left: .4rem;
}

.cta-left i {
  font-size: 1.4rem;
  color: #111;
}

/* Texto */
.cta-text {
  white-space: nowrap;
}

/* Icono de acción derecha */
.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #111;
  animation: iconFloat 1.8s ease-in-out infinite;
}

/* Zumbido elegante */
@keyframes ctaBuzz {

  0%,
  100% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(-2px);
  }

  55% {
    transform: translateX(2px);
  }
}

/* Movimiento del icono */
@keyframes iconFloat {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* Hover */
/* (Handled inside .cta-btn) */

/* Responsive */
@media (max-width:576px) {
  .cta-btn {
    font-size: 0.95rem;
    padding: .9rem 1.1rem;
  }
}

/* HERO SLIDER (Swiper) */
.hero-slider-container {
  width: 100%;
  max-width: 300px;
  /* Layout: Landscape by default */
  height: 220px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.35);
  /* Gold shadow */
  border: 2px solid var(--glam-nude);
  /* Thicker border */
  z-index: 5;
  background: var(--glam-champagne);
  transition: all 0.5s ease;
  /* Smooth Resize for everything */
}

/* Portrait Mode Class */
.hero-slider-container.vertical {
  max-width: 240px;
  /* Narrower */
  height: 320px;
  /* Taller */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--glam-champagne);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Prevent cropping */
  transition: transform 5s ease;
}

.swiper-slide-active img {
  transform: scale(1.1);
}