:root {
  --rosa: #c8527a;
  --rosa-claro: #f2b8cb;
  --rosa-oscuro: #8b2a4a;
  --dorado: #c9a96e;
  --dorado-claro: #f0ddb8;
  --crema: #fdf7f0;
  --blanco: #ffffff;
  --gris-texto: #4a3f45;
  --gris-claro: #f8f2f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--gris-texto);
  background: var(--crema);
  overflow-x: hidden;
}

/* --- FONDO ANIMADO --- */
#canvas-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(253,247,240,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,82,122,0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(139,42,74,0.12); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--rosa-oscuro);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--dorado); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-texto);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rosa);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--rosa); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem 4rem;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  border: 1px solid var(--dorado);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
  background: rgba(255,255,255,0.88);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rosa-oscuro);
  margin-bottom: 0.5rem;
  animation: fadeDown 0.8s 0.15s ease both;
}
.hero-title em { color: var(--rosa); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gris-texto);
  max-width: 520px;
  margin: 1.2rem auto 2.5rem;
  line-height: 1.7;
  animation: fadeDown 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-oscuro));
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,82,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,82,122,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--rosa-oscuro);
  padding: 0.85rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--rosa);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--rosa); color: white; }

.navbar-brand .brand-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
  line-height: 1;
}
.navbar-brand .brand-script span { color: var(--dorado); }

.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--crema);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

/* --- SECCIONES GENERALES --- */
section { position: relative; z-index: 1; }

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--rosa-oscuro);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(139,42,74,0.2);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #222;
  max-width: 600px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.py { padding: 6rem 0; }

/* --- SOBRE MÍ --- */
#sobre-mi {
  background: url(../images/bgs/5.png);
  background-size: contain;
  background-position: center;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
  z-index: 2;
}

.sobre-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  border-radius: 2rem 2rem 2rem 0;
  position: relative;
  overflow: hidden;
}

.sobre-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/fotos/5.jfif");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.sobre-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: #f0ddb88c;
  border-radius: 50%;
  z-index: 1;
}

.sobre-deco2 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  background: var(--rosa-claro);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.6;
}

.sobre-texto {
  width: 100%;
  min-width: 0;
}

.sobre-texto .section-desc {
  max-width: 100%;
}

/* --- PREMIOS --- */
/* --- PREMIOS --- */
.premios-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255,182,206,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(255,163,193,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(245,140,175,0.3) 0%, transparent 60%),
    linear-gradient(160deg, #f9c5d8 0%, #f5a8c5 35%, #f0c4d8 65%, #fad5e5 100%);
  background-size: cover;
}

.premios-bg-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Soft light overlay — like the image's top-left bloom */
.premios-bg-deco::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 55%; height: 55%;
  background: radial-gradient(ellipse, rgba(255,230,240,0.55) 0%, transparent 70%);
  border-radius: 50%;
}
/* Bottom-right warm bloom */
.premios-bg-deco::after {
  content: '';
  position: absolute;
  bottom: -5%; right: -5%;
  width: 45%; height: 45%;
  background: radial-gradient(ellipse, rgba(255,200,225,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.premios-blob { display: none; } /* replaced by ::before/after above */

/* Decorative sparkles like in the image */
.premios-sparkle {
  position: absolute;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  pointer-events: none;
  animation: sparkle-float 4s ease-in-out infinite;
}
.premios-sparkle-1 { font-size: 1.4rem; top: 12%; left: 8%; animation-delay: 0s; }
.premios-sparkle-2 { font-size: 0.9rem; top: 18%; right: 12%; animation-delay: 0.8s; }
.premios-sparkle-3 { font-size: 1.8rem; top: 8%; right: 22%; animation-delay: 1.6s; }
.premios-sparkle-4 { font-size: 1rem; bottom: 20%; left: 6%; animation-delay: 2.4s; }
.premios-sparkle-5 { font-size: 0.7rem; bottom: 30%; right: 8%; animation-delay: 0.4s; }

@keyframes sparkle-float {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* Torn paper effect at bottom, like the reference image */
.premios-torn-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  overflow: hidden;
}
.premios-torn-bottom::before {
  content: '';
  position: absolute;
  bottom: 0; left: -2%; right: -2%;
  height: 80px;
  background: var(--crema);
  clip-path: polygon(
    0% 100%, 100% 100%,
    100% 55%, 97% 40%, 94% 55%, 90% 30%, 86% 52%, 82% 20%, 78% 48%,
    74% 25%, 70% 50%, 66% 15%, 62% 45%, 58% 22%, 54% 50%, 50% 18%,
    46% 48%, 42% 25%, 38% 52%, 34% 28%, 30% 55%, 26% 20%, 22% 48%,
    18% 30%, 14% 55%, 10% 35%, 6% 58%, 3% 40%, 0% 55%
  );
}

.premios-stem { display: none; }
.premios-flower { display: none; }

/* Text colors adapted for vivid pink bg */
.premios-section .section-title { text-shadow: 0 2px 12px rgba(139,42,74,0.25); }
.premios-section .section-title em { font-style: italic; }
.premios-section .section-desc { color: #222; }

/* Photo frame adapted */
.premios-foto-frame {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow:
    8px 14px 40px rgba(139,42,74,0.3),
    16px 24px 60px rgba(80,0,40,0.2),
    inset 0 2px 0 rgba(255,255,255,0.4);
}
.premios-caption-name { color: #ffffff; }
.premios-caption-year { color: rgba(255,255,255,0.75); }

/* Award list rows adapted */
.premio-row {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.premio-row:first-child { border-top: 1px solid rgba(255,255,255,0.18); }
.premio-row:hover, .premio-row.active {
  background: rgba(255,255,255,0.18);
}
.premio-row.active { border-left-color: #ffffff; }
.premio-row-name { color: #ffffff; }
.premio-row-desc { color: rgba(255,255,255,0.75); }
.premio-row-arrow { color: rgba(255,255,255,0.9); }
.premio-row-thumb {
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: 3px 5px 16px rgba(139,42,74,0.25);
}

/* Mobile rows adapted */
.premio-mob-row {
  background: rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 3px 5px 18px rgba(139,42,74,0.18);
}
.premio-mob-name { color: #ffffff; }
.premio-mob-desc { color: rgba(255,255,255,0.75); }
.premio-mob-caret { color: rgba(255,255,255,0.9); }
.premio-mob-icon {
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.3);
}

/* SPLIT LAYOUT */
.premios-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left photo panel */
.premios-foto-wrap {
  position: sticky;
  top: 100px;
}
.premios-foto-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  box-shadow:
    8px 14px 40px rgba(200,82,122,0.22),
    16px 24px 60px rgba(139,42,74,0.12),
    inset 0 2px 0 rgba(255,255,255,0.9);
}
.premios-foto-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.premios-foto-img.switching {
  opacity: 0;
  transform: scale(0.97);
}
.premios-foto-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,42,74,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.premios-foto-caption {
  margin-top: 1.2rem;
  text-align: center;
  transition: opacity 0.35s;
}
.premios-caption-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
}
.premios-caption-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-top: 0.3rem;
}

/* Right award list */
.premios-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.premio-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.2rem;
  border-bottom: 1px solid rgba(200,82,122,0.12);
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.22s, transform 0.22s;
  position: relative;
}
.premio-row:first-child { border-top: 1px solid rgba(200,82,122,0.12); }
.premio-row:hover, .premio-row.active {
  background: rgba(255,255,255,0.75);
  transform: translateX(4px);
}
.premio-row.active {
  border-left: 3px solid var(--rosa);
  padding-left: calc(1.2rem - 3px);
}

.premio-row-thumb {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  position: relative;
  box-shadow: 4px 6px 18px rgba(200,82,122,0.18);
  display: flex; align-items: center; justify-content: center;
}
.premio-row-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.premio-row-thumb-fallback {
  font-size: 1.6rem;
  z-index: 1;
}

.premio-row-body { flex: 1; min-width: 0; }
.premio-row-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.premio-row-desc {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dorado);
}

.premio-row-arrow {
  font-size: 1.6rem;
  color: var(--rosa);
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-6px);
}
.premio-row:hover .premio-row-arrow,
.premio-row.active .premio-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE list — hidden on desktop */
.premios-mobile { display: none; }

.premio-mob-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(200,82,122,0.14);
  cursor: pointer;
  background: rgba(255,255,255,0.72);
  border-radius: 1rem;
  margin-bottom: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 3px 5px 18px rgba(200,82,122,0.1);
}
.premio-mob-row:active { transform: scale(0.98); }

.premio-mob-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 4px 12px rgba(200,82,122,0.18);
}
.premio-mob-body { flex: 1; }
.premio-mob-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
  margin-bottom: 0.2rem;
}
.premio-mob-desc {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dorado);
}
.premio-mob-caret {
  font-size: 1.5rem;
  color: var(--rosa);
  line-height: 1;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,3,8,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s; padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative; max-width: 860px; width: 100%; text-align: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
}
.lightbox.open .lightbox-inner { transform: scale(1); }

.lightbox-img-wrap {
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  border: 1px solid rgba(201,169,110,0.25);
  max-height: 80vh; display: flex; align-items: center;
  justify-content: center; background: #1a0711;
}
.lightbox-img { max-width: 100%; max-height: 75vh; width: auto; height: auto; display: block; object-fit: contain; }
.lightbox-info { margin-top: 1.25rem; }
.lightbox-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0 0 0.3rem; }
.lightbox-year { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #c9a96e; }

.lightbox-close {
  position: absolute; top: -1rem; right: -1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(200,82,122,0.4); }

.lightbox-nav { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 1.5rem; }
.lb-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 0.5rem 1.4rem; border-radius: 2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
  font-family: 'Jost', sans-serif;
}
.lb-btn:hover { background: rgba(200,82,122,0.35); }
.lb-count { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; min-width: 50px; text-align: center; }

/* --- SERVICIOS --- */
.servicios-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fce8f0 0%, #fdf0e8 40%, #fde8f2 70%, #f9e4ee 100%);
}

/* Decorative background circles */
.servicios-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.svc-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}
.svc-bg-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,82,122,0.18) 0%, transparent 70%);
  top: -120px; left: -180px;
}
.svc-bg-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.22) 0%, transparent 70%);
  bottom: -80px; right: -100px;
}
.svc-bg-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(242,184,203,0.3) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}
.svc-stem {
  position: absolute;
  width: 2px;
  background: linear-gradient(to top, rgba(201,169,110,0.4), transparent);
  border-radius: 2px;
}
.svc-stem-1 { height: 120px; bottom: 0; left: 6%; }
.svc-stem-2 { height: 90px; bottom: 0; right: 8%; }
.svc-flower {
  position: absolute;
  color: rgba(201,169,110,0.45);
  font-size: 1.8rem;
  line-height: 1;
}
.svc-flower-1 { bottom: 118px; left: calc(6% - 10px); }
.svc-flower-2 { bottom: 88px; right: calc(8% - 10px); }
.svc-flower-3 { top: 18%; right: 4%; font-size: 1.2rem; color: rgba(200,82,122,0.3); }

/* --- SWIPER SERVICIOS --- */
.svc-swiper {
  width: 100%;
  padding: 1rem 0.5rem 0 !important; /* remove bottom padding — controls go outside */
}
.svc-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

/* BUBBLE card — preserve user style */
.svc-bubble {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1.6rem;
  width: 100%;
  cursor: default;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  box-shadow:
    6px 10px 28px rgba(200,82,122,0.18),
    12px 16px 40px rgba(139,42,74,0.10),
    inset 0 2px 0 rgba(255,255,255,1),
    inset -3px -5px 18px rgba(200,82,122,0.06);
  border: 1.5px solid rgba(255,255,255,0.9);
}
.svc-bubble:hover { transform: translateY(-6px) scale(1.02); }

.svc-bubble-img {
  width: 75%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 12px rgba(200,82,122,0.18);
}
.svc-bubble-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.svc-bubble-img.no-img {
  display: flex; align-items: center; justify-content: center;
}
.svc-bubble-img.no-img::after {
  content: '\2726'; font-size: 1.8rem; color: rgba(200,82,122,0.45);
}

.svc-bubble-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--rosa-oscuro);
  margin-bottom: 0.35rem; line-height: 1.25;
}
.svc-bubble-desc {
  font-size: 14px; line-height: 1.5;
  color: #9a8a92; margin: 0;
}

/* Swiper nav — placed below cards, not floating on sides */
.svc-swiper-prev,
.svc-swiper-next {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--rosa) !important;
  background: rgba(255,255,255,0.9) !important;
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  box-shadow: 3px 5px 16px rgba(200,82,122,0.18) !important;
  border: 1.5px solid rgba(200,82,122,0.25) !important;
  backdrop-filter: blur(6px);
  margin-top: 0 !important;
  flex-shrink: 0;
}
.svc-swiper-prev::after,
.svc-swiper-next::after {
  font-size: 13px !important;
  font-weight: 700;
}
.svc-swiper-prev:hover,
.svc-swiper-next:hover {
  background: var(--rosa) !important;
  color: white !important;
}
.svc-swiper-prev.swiper-button-disabled,
.svc-swiper-next.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: default !important;
}

/* Pagination dots */
.svc-swiper-pagination {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.svc-swiper-pagination .swiper-pagination-bullet {
  background: rgba(200,82,122,0.3) !important;
  opacity: 1;
  width: 9px; height: 9px;
  transition: all 0.25s;
  margin: 0 !important;
}
.svc-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rosa) !important;
  transform: scale(1.35);
}

/* Controls row wrapper */
.svc-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* Tagline */
.svc-tagline {
  text-align: center;
  margin-top: 1.5rem;
  display: flex; align-items: center;
  justify-content: center; gap: 0.8rem;
}
.svc-tagline .brand-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; font-weight: 700;
  color: var(--rosa-oscuro);
}
.svc-tagline .brand-script span { color: var(--dorado); }
.svc-heart {
  color: var(--rosa); font-size: 1.2rem;
  animation: heartbeat 2.2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

@media (max-width: 900px) {
  .svc-tagline { flex-direction: column; gap: 0.4rem; }
}

/* ─── TIPS DE BELLEZA ─────────────────────────────── */
.tips-section {
  position: relative;
  overflow: hidden;
  /* Water-ripple pink from reference image */
  background:url(../images/bgs/10.png);
  background-size: cover;
  background-position: center;
}

/* Water ripple rings */
.tips-bg-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tips-water-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  animation: water-pulse 6s ease-in-out infinite;
}
.tips-ring-1 { width: 340px; height: 340px; top: -80px; left: -80px; animation-delay: 0s; }
.tips-ring-2 { width: 260px; height: 260px; top: 40%; right: -60px; animation-delay: 2s; }
.tips-ring-3 { width: 200px; height: 200px; bottom: -40px; left: 35%; animation-delay: 4s; }
@keyframes water-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

/* Sparkle stars */
.tips-sparkle {
  position: absolute; pointer-events: none;
  color: rgba(255,255,255,0.75);
  animation: tips-sparkle-anim 3.5s ease-in-out infinite;
  font-size: 1.3rem;
}
.tips-sp-1 { top: 8%; left: 5%; font-size: 1.6rem; animation-delay: 0s; }
.tips-sp-2 { top: 15%; right: 8%; font-size: 0.9rem; animation-delay: 1s; }
.tips-sp-3 { bottom: 20%; right: 5%; font-size: 1.4rem; animation-delay: 2s; }
.tips-sp-4 { bottom: 30%; left: 4%; font-size: 0.8rem; animation-delay: 0.5s; }
@keyframes tips-sparkle-anim {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(20deg); }
}

/* Section intro */
.tips-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.tips-section .section-title { text-shadow: 0 2px 12px rgba(139,42,74,0.2); }
.tips-section .section-desc { color: #222; max-width: 500px; }

/* ── DECK WRAP ── */
.tips-deck-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── CARD STACK ── */
.tips-deck {
  position: relative;
  width: 320px;
  height: 380px;
  perspective: 1200px;
}

.tips-card {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  overflow: hidden;
  cursor: pointer;
  transform-origin: bottom center;
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1),
              opacity 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform, opacity;
  user-select: none;
}

/* Active (top) card */
.tips-card[data-state="active"] {
  transform: translateY(0) rotate(0deg) scale(1);
  opacity: 1;
  z-index: 5;
  box-shadow:
    0 24px 60px rgba(139,42,74,0.25),
    0 8px 24px rgba(200,82,122,0.2);
}
/* Next visible card — peeking behind */
.tips-card[data-state="next-1"] {
  transform: translateY(16px) rotate(2.5deg) scale(0.96);
  opacity: 1;
  z-index: 4;
  box-shadow: 0 12px 40px rgba(139,42,74,0.15);
}
.tips-card[data-state="next-2"] {
  transform: translateY(30px) rotate(-1.8deg) scale(0.92);
  opacity: 0.85;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(139,42,74,0.1);
}
.tips-card[data-state="next-3"] {
  transform: translateY(42px) rotate(1deg) scale(0.88);
  opacity: 0.6;
  z-index: 2;
}
/* Cards further back: hidden */
.tips-card[data-state="hidden"] {
  transform: translateY(50px) scale(0.84);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
/* Exiting: fly left */
.tips-card[data-state="exit-left"] {
  transform: translateX(-140%) rotate(-18deg) scale(0.9);
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}
/* Entering from right */
.tips-card[data-state="enter-right"] {
  transform: translateX(120%) rotate(10deg) scale(0.9);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Card inner */
.tips-card-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.95);
  border-radius: 1.75rem;
  overflow: hidden;
}

.tips-card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}
.tips-card-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
.tips-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  color: var(--rosa-oscuro);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(200,82,122,0.2);
}

.tips-card-tag {
  padding: 1rem 1.25rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rosa);
}
.tips-card-title {
  padding: 0 1.25rem 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
  line-height: 1.3;
  margin: 0;
}

/* ── INFO PANEL (below deck) ── */
.tips-info-panel {
  width: 100%;
  max-width: 600px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.95);
  box-shadow:
    6px 10px 30px rgba(139,42,74,0.15),
    12px 18px 50px rgba(200,82,122,0.1);
  padding: 1.75rem 2rem;
  transition: opacity 0.3s, transform 0.3s;
}
.tips-info-panel.switching {
  opacity: 0;
  transform: translateY(8px);
}

.tips-info-meta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 0.6rem;
}
.tips-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rosa-oscuro);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.tips-info-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a72;
  margin-bottom: 1.25rem;
}
.tips-info-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rosa);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s, opacity 0.2s;
}
.tips-info-link:hover { color: var(--rosa-oscuro); }

/* ── CONTROLS ── */
.tips-deck-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
}
.tips-deck-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.82);
  color: var(--rosa-oscuro);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 3px 5px 16px rgba(139,42,74,0.14);
  backdrop-filter: blur(8px);
}
.tips-deck-btn:hover {
  background: var(--rosa);
  color: white;
  border-color: var(--rosa);
  transform: scale(1.08);
}
.tips-deck-counter {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  min-width: 3rem;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .tips-deck { width: 280px; height: 340px; }
  .tips-info-panel { padding: 1.4rem 1.5rem; }
  .tips-card-icon { font-size: 3.5rem; }
}

/* --- GALERÍA --- */
#galeria { background: var(--gris-claro); }

.galeria-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gal-item {
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, var(--rosa-claro), var(--dorado-claro));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s;
}
.gal-item:hover { transform: scale(0.97); }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 560px; }
.gal-item:not(:first-child) { height: 270px; }
.gal-item:nth-child(2) { background: linear-gradient(135deg, #f8d7e3, #f9e8d0); }
.gal-item:nth-child(3) { background: linear-gradient(135deg, #e8d5f5, #f2b8cb); }
.gal-item:nth-child(4) { background: linear-gradient(135deg, #fdebd0, #f5cba7); }
.gal-item:nth-child(5) { background: linear-gradient(135deg, #d5e8d4, #e8f5e9); }

.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(139,42,74,0.0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gal-item:hover .gal-overlay { background: rgba(139,42,74,0.25); }

/* --- CONTACTO --- */
#contacto { background: var(--crema); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contacto-form {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid rgba(200,82,122,0.15);
  box-shadow: 0 8px 40px rgba(200,82,122,0.08);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rosa-oscuro);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(200,82,122,0.2);
  border-radius: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--gris-texto);
  background: var(--crema);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rosa);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-oscuro));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

.contacto-info { padding-top: 1rem; }
.contacto-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--rosa-oscuro);
  margin-bottom: 1rem;
}
.contacto-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #7a6a72;
  margin-bottom: 2rem;
}

.social-links { display: flex; flex-direction: column; gap: 0.8rem; }

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--gris-texto);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(200,82,122,0.15);
  background: white;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  transform: translateX(4px);
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rosa-claro);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* --- FOOTER --- */
footer {
  background: var(--rosa-oscuro);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}
footer strong { color: var(--dorado-claro); }

/* --- ANIMACIONES --- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .premios-split { gap: 2.5rem; }
}

@media (max-width: 900px) {
  /* Premios: hide split, show mobile list */
  .premios-split { display: none; }
  .premios-mobile { display: block; }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sobre-img-wrap {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .sobre-img-frame { aspect-ratio: 4/3; }
  .sobre-deco, .sobre-deco2 { display: none; }
  .sobre-texto { width: 100%; padding: 0; }
  .sobre-texto .section-desc { max-width: 100%; }
  .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .tips-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item:nth-child(1) { grid-column: span 2; height: 240px; }
  .tips-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .container { padding: 0 1.2rem; }
  .contacto-form { padding: 2rem 1.25rem; }
}
