/* ============ MEV BEAUTY — estilos ============ */
/* Paleta sacada del logo real de la marca (magenta #D143AC) */
:root {
  --crema: #fdf5fb;
  --rosa-suave: #f9e4f3;
  --rosa: #d143ac;
  --rosa-oscuro: #b0338f;
  --vino: #7c2468;
  --tinta: #3a2735;
  --gris: #8a7484;
  --dorado: #c9a227;
  --blanco: #ffffff;
  --sombra: 0 10px 30px rgba(124, 36, 104, .13);
  --radio: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--tinta);
  background: var(--crema);
  line-height: 1.65;
  font-weight: 300;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: var(--rosa-oscuro); }

/* ---------- botones ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lleno { background: linear-gradient(135deg, var(--rosa), var(--rosa-oscuro)); color: var(--blanco); box-shadow: var(--sombra); }
.btn-borde { border: 1.5px solid var(--rosa-oscuro); color: var(--rosa-oscuro); background: transparent; }
.btn-chico { padding: .55rem 1.3rem; font-size: .85rem; }
.btn-grande { padding: 1rem 2.2rem; font-size: 1.1rem; }

/* ---------- navegación ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(253, 247, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 140, 148, .18);
}
.nav-int {
  max-width: 1100px; margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.3rem; }
.nav-links a { text-decoration: none; color: var(--tinta); font-size: .92rem; font-weight: 400; }
.nav-links a:hover { color: var(--rosa-oscuro); }
.btn-nav { background: linear-gradient(135deg, var(--rosa), var(--rosa-oscuro)); color: var(--blanco) !important; padding: .55rem 1.2rem; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--tinta); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 7rem 1.2rem 4rem;
}
/* Video real del negocio de fondo, con velo rosa para que el texto se lea */
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-fondo {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(209, 67, 172, .30), transparent 55%),
    radial-gradient(ellipse at 60% 90%, rgba(124, 36, 104, .30), transparent 55%),
    linear-gradient(180deg, rgba(253, 245, 251, .93), rgba(253, 245, 251, .88));
}
/* Logo animado del hero: brillo metálico que recorre las letras (el propio
   logo hace de máscara), chispas doradas/plata y el corazón latiendo aparte
   (img/corazon.png, recortado del mismo PNG y superpuesto en su posición). */
.hero-marca { position: relative; width: min(300px, 62vw); margin: 0 auto 1.4rem; }
.hero-logo { width: 100%; height: auto; display: block; }
.brillo-logo {
  position: absolute; inset: 0; pointer-events: none;
  -webkit-mask: url("../img/logo.png") center / contain no-repeat;
  mask: url("../img/logo.png") center / contain no-repeat;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(201, 162, 39, .85) 42%,
    rgba(255, 248, 220, .95) 50%,
    rgba(226, 232, 240, .90) 58%,
    transparent 70%);
  background-size: 300% 100%;
  animation: barrido-brillo 4.2s linear infinite;
}
@keyframes barrido-brillo {
  0% { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}
.corazon-latido {
  position: absolute; left: 15.9%; top: 2.5%; width: 18%;
  transform-origin: 50% 60%;
  animation: latido 1.8s ease-in-out infinite;
}
@keyframes latido {
  0%, 55%, 100% { transform: scale(1); }
  12% { transform: scale(1.13); }
  24% { transform: scale(1.03); }
  36% { transform: scale(1.10); }
}
.chispa {
  position: absolute; width: 11px; height: 11px; pointer-events: none;
  background: #e9c46a;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: 0;
  animation: chispear 3.4s ease-in-out infinite;
  animation-delay: var(--rd, 0s);
}
.chispa.plata { background: #eef2f8; }
@keyframes chispear {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(95deg); }
}
@media (prefers-reduced-motion: reduce) {
  .brillo-logo, .corazon-latido, .chispa { animation: none; }
  .brillo-logo, .chispa { display: none; }
}
.hero-sobre { letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; color: var(--vino); font-weight: 500; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); max-width: 780px; margin: 0 auto 1.2rem; color: var(--tinta); }
.hero h1 em { color: var(--rosa-oscuro); }
.hero-sub { max-width: 560px; margin: 0 auto 2rem; color: var(--gris); font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- secciones ---------- */
.seccion { padding: 4.5rem 1.2rem; max-width: 1100px; margin: 0 auto; }
.seccion-suave { max-width: none; background: var(--rosa-suave); }
.seccion-suave > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.kicker { text-align: center; letter-spacing: .18em; text-transform: uppercase; font-size: .75rem; color: var(--rosa-oscuro); font-weight: 500; }
.seccion h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .4rem 0 2.2rem; }
.seccion-sub { text-align: center; color: var(--gris); margin-top: -1.6rem; margin-bottom: 2rem; }
.centrado { text-align: center; margin-top: 2rem; }

/* ---------- placeholders (se reemplazan por fotos reales) ---------- */
.ph {
  display: flex; align-items: center; justify-content: center;
  color: rgba(124, 58, 69, .55); font-size: 2.4rem;
  background: linear-gradient(135deg, #f3d9d6, #e7bfc3);
}
.ph span { opacity: .85; font-size: 2rem; }
.ph-novia   { background: linear-gradient(135deg, #f9dff2, #edbfe0); }
.ph-social  { background: linear-gradient(135deg, #f5d3ec, #e3aed4); }
.ph-tienda, .ph-nosotros { border-radius: var(--radio); min-height: 320px; }
.ph-g1 { background: linear-gradient(135deg, #f4d8d3, #e5b8b6); }
.ph-g2 { background: linear-gradient(135deg, #f7e3d8, #ecc9b4); }
.ph-g3 { background: linear-gradient(135deg, #f1d0d8, #dfafbe); }
.ph-g4 { background: linear-gradient(135deg, #f6ddd4, #eabfae); }
.ph-g5 { background: linear-gradient(135deg, #f3d4cd, #e3b3ab); }
.ph-g6 { background: linear-gradient(135deg, #f8e7e0, #efd0c4); }
.ph-g7 { background: linear-gradient(135deg, #f2cfd4, #e1adb8); }
.ph-g8 { background: linear-gradient(135deg, #f5dbd2, #e8c1b0); }
.gal-item span, .gal-item { font-size: .85rem; letter-spacing: .05em; }

/* ---------- servicios ---------- */
.tarjetas { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.tarjeta {
  background: var(--blanco); border-radius: var(--radio); overflow: hidden;
  box-shadow: var(--sombra); display: flex; flex-direction: column;
  transition: transform .18s ease;
}
.tarjeta:hover { transform: translateY(-5px); }
.tarjeta-img { height: 230px; overflow: hidden; }
.tarjeta-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.tarjeta-cuerpo { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.tarjeta-cuerpo h3 { font-size: 1.3rem; }
.tarjeta-cuerpo p { color: var(--gris); font-size: .93rem; flex: 1; }
.tarjeta-cuerpo .btn { align-self: flex-start; }

/* ---------- galería ---------- */
.galeria { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gal-item { aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden; }
.gal-item img, .gal-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- tienda ---------- */
.tienda-int { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.tienda-texto .kicker, .tienda-texto h2 { text-align: left; }
.tienda-texto h2 { margin-bottom: 1rem; }
.tienda-texto p { color: var(--gris); margin-bottom: 1.2rem; }
.tienda-puntos { list-style: none; margin-bottom: 1.6rem; display: grid; gap: .5rem; }
.tienda-puntos li { font-weight: 400; }

.tienda-img img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radio); box-shadow: var(--sombra); }

/* Franja de marcas (respaldo de calidad) — solo nombres, tipografía elegante */
.marcas { margin-top: 3.5rem; text-align: center; }
.marcas-titulo { letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; color: var(--gris); font-weight: 500; margin-bottom: 1.1rem; }
.marcas-lista { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 2.2rem; padding: 0; }
.marcas-lista li {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
  color: var(--vino); opacity: .75; white-space: nowrap;
}

/* ---------- nosotros ---------- */
.nosotros-int { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: center; padding: 0 1.2rem; }
.nosotros-img img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radio); box-shadow: var(--sombra); }
.nosotros-texto .kicker, .nosotros-texto h2 { text-align: left; }
.nosotros-texto h2 { margin-bottom: 1rem; }
.nosotros-texto p { margin-bottom: 1rem; color: var(--tinta); }
.nosotros-texto .btn { margin-top: .5rem; }

/* ---------- testimonios ---------- */
.testimonios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonio {
  background: var(--blanco); border-radius: var(--radio); padding: 1.5rem;
  box-shadow: var(--sombra); font-size: .93rem; color: var(--gris);
  position: relative;
}
.testimonio strong { display: block; margin-top: .8rem; color: var(--tinta); font-weight: 500; }
.badge-ejemplo {
  position: absolute; top: .8rem; right: .9rem;
  font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rosa-oscuro); border: 1px solid var(--rosa); border-radius: 999px;
  padding: .1rem .55rem; opacity: .8;
}
.testimonios-nota { text-align: center; color: var(--gris); font-size: .85rem; margin-top: 1.4rem; }

/* ---------- FAQ ---------- */
.faqs { max-width: 720px; margin: 0 auto; display: grid; gap: .8rem; }
.faq {
  background: var(--blanco); border-radius: 14px; padding: 1rem 1.3rem;
  box-shadow: 0 4px 14px rgba(124, 58, 69, .07);
}
.faq summary { cursor: pointer; font-weight: 500; font-size: .98rem; list-style: none; position: relative; padding-right: 1.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--rosa-oscuro); font-size: 1.2rem; transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: .7rem; color: var(--gris); font-size: .92rem; }

/* ---------- contacto ---------- */
.contacto { text-align: center; }
.contacto-int {
  background: linear-gradient(135deg, var(--vino), var(--rosa-oscuro));
  border-radius: 24px; padding: 3.5rem 1.5rem; color: var(--blanco);
  box-shadow: var(--sombra);
}
.contacto-int h2 { color: var(--blanco); margin-bottom: .6rem; }
.contacto-int p { opacity: .9; margin-bottom: 1.6rem; }
.contacto-int .btn-lleno { background: var(--blanco); color: var(--vino); }
.contacto-redes { margin-top: 1.4rem; display: flex; gap: .8rem; justify-content: center; }
.contacto-redes a { color: var(--blanco); opacity: .9; }

/* ---------- footer ---------- */
.pie { background: #2e2022; color: #cbb8ba; text-align: center; padding: 2.5rem 1.2rem; font-size: .88rem; }
.pie-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--blanco); margin-bottom: .4rem; }
.pie-logo span { color: var(--rosa); font-style: italic; }
.pie-copy { margin-top: .8rem; opacity: .75; }
.pie a { color: var(--rosa); }

/* ---------- WhatsApp flotante ---------- */
.wsp-flotante {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}
.wsp-flotante:hover { transform: scale(1.08); }

/* ============ MÓVIL ============ */
@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; top: 56px; left: 0; right: 0;
    background: var(--crema); flex-direction: column; padding: 1.4rem;
    gap: 1.1rem; border-bottom: 1px solid rgba(217, 140, 148, .25);
    transform: translateY(-130%); transition: transform .25s ease;
    box-shadow: var(--sombra);
  }
  .nav-links.abierto { transform: translateY(0); }
  .hero { min-height: 80vh; padding-top: 6rem; }
  .tarjetas { grid-template-columns: 1fr; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .tienda-int, .nosotros-int { grid-template-columns: 1fr; }
  .nosotros-img { order: -1; }
  .ph-tienda, .ph-nosotros { min-height: 220px; }
  .testimonios { grid-template-columns: 1fr; }
}
