:root {
  /* Paleta simple + premium */
  --bg: #fbf7f2;
  --card: #ffffff;
  --text: #1f2328;
  --muted: rgba(31, 35, 40, .7);
  --primary: #2f6f62;
  --primary-2: #224f46;
  --accent: #c97b63;
  --line: rgba(31, 35, 40, .12);
  --shadow: 0 14px 36px rgba(0, 0, 0, .10);
  --radius: 18px;
}

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

body {
  margin: 0; font-family: "Manrope", system-ui, sans-serif;
  color: var(--text); background: var(--bg); overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

/* === HEADER COMPLETO (Cintillo + Nav) === */
.fixed-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column;
}

/* CINTILLO ENVÍO GRATIS */
.shipping-banner {
  background: var(--primary); /* Color verde corporativo */
  color: white;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem;
  letter-spacing: 0.5px;
  position: relative; z-index: 101;
}

/* TOPBAR (Ahora dentro del header fijo) */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .75rem 1rem;
  background: rgba(251, 247, 242, .95); /* Fondo casi opaco */
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.brand { display: flex; align-items: center; gap: .65rem; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-weight: 800; letter-spacing: .2px; }
.nav { display: flex; gap: 1rem; font-weight: 700; color: rgba(31, 35, 40, .80); }
.nav a { padding: .5rem .6rem; border-radius: 12px; transition: background 0.2s; }
.nav a:hover { background: rgba(47, 111, 98, .10); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .65);
  cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: rgba(31, 35, 40, .75); border-radius: 2px; transition: 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* PORTADA (Ajuste para móviles modernos) */
.hero {
  /* Usamos dvh (Dynamic Viewport Height) para evitar saltos en Instagram/Safari */
  min-height: 100vh; /* Fallback para navegadores viejos */
  min-height: 100dvh; 
  width: 100%; 
  position: relative;
  display: flex; align-items: center; justify-content: center;
  /* Padding ajustado para que no quede un hueco tan grande */
  padding: 11rem 1.25rem 4rem; 
  background: linear-gradient(-45deg, #fbf7f2, #fdf2f0, #f2fbf9, #fbf7f2);
  background-size: 400% 400%; animation: gradientBG 15s ease infinite; overflow: hidden;
}
@keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* RIBBON (Cinta Diagonal) */
.ribbon-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  /* CAMBIO FINAL: Bajamos a 95px. Esto debería ser el punto exacto */
  top: 95px; 
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.ribbon {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  width: 200px;
  background: linear-gradient(#be123c 0%, #9f1239 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 30px;
  right: -50px;
  padding: 7px 0;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.petal { position: absolute; top: -10%; border-radius: 150% 0 150% 0; opacity: 0.6; animation: fall linear infinite; }
@keyframes fall {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(50px); opacity: 0; }
}
.petal.v1 { background: #fda4af; width: 15px; height: 15px; } 
.petal.v2 { background: #2f6f62; width: 12px; height: 12px; }
.petal.v3 { background: #c97b63; width: 10px; height: 10px; }
.petal.v4 { background: #fff;    width: 8px;  height: 8px;  }

.hero::before, .hero::after {
  content: ""; position: absolute; width: 60vmin; height: 60vmin;
  border-radius: 999px; filter: blur(40px); opacity: .35; pointer-events: none;
  z-index: 0; animation: floatBlob 14s ease-in-out infinite;
}
.hero::before { left: -12vmin; top: -10vmin; background: radial-gradient(circle at 30% 30%, rgba(46, 125, 109, .35), transparent 60%); }
.hero::after { right: -14vmin; bottom: -12vmin; background: radial-gradient(circle at 40% 40%, rgba(244, 180, 0, .22), transparent 60%); animation-duration: 18s; }
@keyframes floatBlob { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(20px, -18px, 0) scale(1.05); } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(800px 420px at 50% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 70%),
              linear-gradient(to bottom, rgba(255, 255, 255, .25), rgba(255, 255, 255, .75));
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto; }
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 3rem; }
.hero-text { text-align: left; }
.hero-kicker { font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: rgba(17, 24, 39, .72); margin: 0 0 .55rem; }
.hero-title {
  font-family: "Playfair Display", serif; font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1; margin: 0 0 1.5rem; letter-spacing: -2px;
  background: linear-gradient(to right, var(--text), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: titleFadeUp 1.2s ease-out forwards;
}
@keyframes titleFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; margin: 0 0 1.2rem; color: rgba(17, 24, 39, .86); }
.hero-subtitle { margin: 0 0 2rem; max-width: 50ch; color: rgba(55, 65, 81, .78); font-weight: 500; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-logoWrap { display: flex; justify-content: center; align-items: center; }
.hero-logo-large {
  width: 100%; max-width: 420px; height: auto; object-fit: contain;
  border-radius: 40px; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: logoFloat 6s ease-in-out infinite; transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  will-change: transform; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); padding: 10px; border: 1px solid rgba(255, 255, 255, 0.3);
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } }

/* PROMO SAN VALENTÍN (Ajuste altura móvil) */
.promo-valentine {
  background: linear-gradient(120deg, #fff0f3 0%, #ffe4e9 100%);
  min-height: 100vh; 
  min-height: 100dvh; /* Clave para que se vea bien en el celu */
  display: flex; align-items: center; padding: 2rem 0; position: relative; overflow: hidden;
}
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.promo-content-left { position: relative; z-index: 2; }
.promo-badge {
  display: inline-block; background: #fda4af; color: #9f1239; font-weight: 800; font-size: 0.9rem;
  padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(253, 164, 175, 0.3);
}
.promo-title { font-family: "Playfair Display", serif; font-size: clamp(2.5rem, 5vw, 3.5rem); color: #881337; margin: 0 0 1.5rem; line-height: 1.1; letter-spacing: -1px; }
.promo-desc { color: #be123c; font-size: 1.25rem; line-height: 1.6; max-width: 540px; opacity: 0.9; }
.btn-valentine.btn-large {
  padding: 0 2rem; height: 54px; font-size: 1rem;
  background: #be123c; color: white; border: none; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(190, 18, 60, 0.25); transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.btn-valentine:hover { background: #9f1239; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(190, 18, 60, 0.35); }
.promo-image-right { position: relative; }
.promo-image-right img {
  width: 100%; height: auto; max-height: 500px; object-fit: cover;
  border-radius: 30px; box-shadow: 0 20px 40px -10px rgba(136, 19, 55, 0.15);
  position: relative; z-index: 2; transform: rotate(2deg); transition: transform 0.3s ease;
}
.promo-image-right:hover img { transform: rotate(0deg) scale(1.02); }
.valentine-blob {
  position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(253, 164, 175, 0.4) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%); z-index: 1; pointer-events: none;
}
.love-note {
  position: absolute; bottom: 20px; right: -20px; left: auto;
  background: #fff; padding: 0.6rem 1.2rem; border-radius: 4px;
  box-shadow: 0 4px 15px rgba(190, 18, 60, 0.1); transform: rotate(-3deg);
  z-index: 3; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(190, 18, 60, 0.1);
}
.note-pin { font-size: 1rem; }
.note-text { font-family: "Dancing Script", cursive; font-size: 1.4rem; color: #be123c; margin: 0; line-height: 1; }

/* SECTIONS */
.section { padding: 6rem 0; position: relative; }
.section-divider { position: absolute; left: 0; width: 100%; height: 60px; background-repeat: no-repeat; background-size: cover; z-index: 1; }
.divider-top { top: -1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3%3Cpath fill='%23fbf7f2' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E"); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 2.75rem); margin: 0; letter-spacing: -0.5px; }
.section-desc { color: var(--muted); margin: .5rem 0 0; font-weight: 600; font-size: 1.1rem; }
.filters { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.search input, select {
  height: 48px; border-radius: 14px; border: 1px solid rgba(0, 0, 0, .10); background: #fff;
  padding: 0 1rem; font: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.search input:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47, 111, 98, 0.1); }
.search input { width: 260px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; height: 50px; padding: 0 1.5rem; border-radius: 15px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: all 0.2s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(47, 111, 98, .2); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 30px rgba(47, 111, 98, .3); }
.btn-primary::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent); transform: rotate(45deg); transition: 0.5s; pointer-events: none; }
.btn-primary:hover::after { left: 100%; top: 100%; }
.btn-ghost { background: #fff; border-color: rgba(0, 0, 0, .1); color: var(--text); }
.btn-ghost:hover { background: #f8f9fa; border-color: rgba(0, 0, 0, .2); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* GRID (CON HOVER FOTOS) */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.card {
  background: var(--card); border: 1px solid rgba(0, 0, 0, .06); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, .04); display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, .08); }

/* Hover effect de imágenes */
.card-media { position: relative; aspect-ratio: 1 / 1; background: #f8f9fa; overflow: hidden; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 0.5s ease; }
.img-hover { opacity: 0; z-index: 2; }
.card:hover .img-hover { opacity: 1; transform: scale(1.05); }
.card:hover .img-main { transform: scale(1.05); }

.badge {
  position: absolute; left: 1rem; top: 1rem; font-size: .75rem; font-weight: 800; padding: .4rem .8rem;
  border-radius: 999px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, .05); color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; z-index: 3;
}
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-title { margin: 0 0 .5rem; font-size: 1.25rem; font-family: "Playfair Display", serif; }
.card-desc { margin: 0 0 1.5rem; color: var(--muted); font-size: .95rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-row { margin-top: auto; display: flex; flex-direction: column; gap: 1.25rem; }
.price-box { display: flex; justify-content: space-between; align-items: baseline; }
.price { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.stock-status { font-size: .85rem; font-weight: 700; }
.stock-status.disponible { color: var(--primary); }
.stock-status.pedido { color: var(--accent); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.card-actions .btn { height: 44px; padding: 0; font-size: .9rem; }

/* CREATOR & MODAL */
.creator { background: #fff; }
.creator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.creator-photo img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); }
.creator-name { font-size: 1.25rem; margin-bottom: 1.5rem; }
.creator-desc { font-size: 1.1rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; }
.creator-sign { font-family: "Dancing Script", cursive; font-size: 1.75rem; color: var(--primary); margin-top: 1.5rem; }

/* === MODAL CARRUSEL (INSTAGRAM STYLE) === */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(31, 35, 40, 0.7);
  backdrop-filter: blur(5px); animation: fadeIn 0.3s ease;
}
.modal-card {
  position: relative; width: 100%; max-width: 900px;
  background: #fff; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; max-height: 90vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20; transition: all 0.2s;
}
.modal-close:hover { transform: rotate(90deg); background: #fff; }
.modal-body { flex: 1; overflow-y: auto; display: grid; grid-template-columns: 1.2fr 1fr; }
.modal-footer {
  padding: 1rem 1.5rem; background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05); box-shadow: 0 -4px 20px rgba(0,0,0,0.05); z-index: 10;
}
.btn-block { width: 100%; justify-content: center; font-size: 1rem; height: 50px; }

/* SLIDER Y ZOOM */
.modal-media {
  background: #000; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; aspect-ratio: 1 / 1;
}
.slider-container { width: 100%; height: 100%; position: relative; }
.slider-track { display: flex; height: 100%; transition: transform 0.3s ease-out; }
.slide {
  min-width: 100%; height: 100%; object-fit: contain; background: #fff;
  transition: transform 0.5s ease; cursor: zoom-in;
}
.slide:hover { transform: scale(1.5); }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8); border: none; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; font-size: 1.2rem; color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: all 0.2s;
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 1rem; } .slider-next { right: 1rem; }
.slider-dots {
  position: absolute; bottom: 1rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; z-index: 5;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: #fff; transform: scale(1.2); }

/* INFO */
.modal-info { padding: 2.5rem; }
.modal-header { margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  color: var(--primary); background: rgba(47, 111, 98, 0.1); padding: 0.3rem 0.7rem; border-radius: 50px; margin-bottom: 0.5rem;
}
.modal-info h3 { font-family: "Playfair Display", serif; font-size: 2rem; margin: 0; line-height: 1.1; }
.modal-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-top: 0.5rem; }
.modal-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  background: #fbf7f2; padding: 0.8rem; border-radius: 12px; margin-bottom: 1.5rem;
}
.feature-item { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.feature-icon { font-size: 1.2rem; }
.feature-item span:last-child { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

/* FOOTER */
.footer { background: #fff; border-top: 1px solid rgba(0, 0, 0, .05); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { width: 60px; margin-bottom: 1rem; }
.footer-tagline { font-weight: 800; font-size: 1.2rem; margin-bottom: .5rem; }
.footer-note { color: var(--muted); line-height: 1.5; }
.footer-block h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-block p { margin-bottom: .75rem; color: var(--muted); }
.footer-block a { color: var(--primary); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(0, 0, 0, .05); padding-top: 2rem; text-align: center; font-size: .9rem; color: var(--muted); }

/* FOOTER HIGHLIGHT */
.footer-highlight { color: var(--accent); font-weight: 800; display: inline-block; margin-top: 0.2rem; }

/* === WHATSAPP FLOTANTE EXACTO PROCESIN === */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 1000;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease; text-decoration: none; color: white;
  animation: pulse 2s infinite;
}
.whatsapp-float::before {
  content: ''; position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%; z-index: -1; opacity: 0.3;
  animation: ping 2s infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); color: white;
}
.whatsapp-icon { width: 32px; height: 32px; fill: #ffffff; }

.whatsapp-tooltip {
  position: absolute; right: 75px; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8); color: white;
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem;
  white-space: nowrap; opacity: 0; visibility: hidden;
  transition: all 0.3s ease; pointer-events: none;
  font-family: sans-serif; font-weight: 500;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; top: 50%; left: 100%;
  transform: translateY(-50%); border: 8px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1; visibility: visible; right: 80px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes ping {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.8; }
}

@media (max-width: 992px) {
  .hero-split, .creator-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { text-align: center; } .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .creator-photo { order: -1; } .creator-photo img { max-width: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; } .footer-left { grid-column: span 2; text-align: center; } .footer-logo { margin: 0 auto 1rem; }
  .promo-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .promo-content-left { order: 2; display: flex; flex-direction: column; align-items: center; }
  .promo-image-right { order: 1; max-width: 500px; margin: 0 auto; }
  .promo-image-right img { transform: rotate(0); max-height: 400px; }
  .love-note { right: 50%; transform: translateX(50%) rotate(-3deg); bottom: -15px; width: max-content; }
}

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1.5rem; gap: 0; border-bottom: 1px solid rgba(0, 0, 0, .05); box-shadow: 0 10px 20px rgba(0, 0, 0, .05); }
  .nav.is-open { display: flex; } .nav a { padding: 1rem; border-radius: 0; border-bottom: 1px solid rgba(0, 0, 0, .03); } .nav-toggle { display: flex; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .filters, .search, .search input, select { width: 100%; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; } .footer-left { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  
  .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
  .whatsapp-icon { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
  
  /* MODAL MÓVIL */
  .modal { padding: 0; align-items: flex-end; }
  .modal-card { border-radius: 24px 24px 0 0; max-height: 90vh; width: 100%; display: flex; flex-direction: column; }
  .modal-body { grid-template-columns: 1fr; overflow-y: auto; flex: 1; }
  .modal-close { top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.9); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
  .modal-media { width: 100%; aspect-ratio: 1 / 1; }
  .modal-info { padding: 1.5rem; }
  .modal-header { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; }
  .modal-info h3 { font-size: 1.6rem; width: 100%; }
  .modal-price { font-size: 1.4rem; margin-top: 0; color: var(--primary); }
  .modal-features { padding: 0.8rem 0.5rem; gap: 0.5rem; grid-template-columns: repeat(3, auto); justify-content: space-between; }
  .feature-icon { font-size: 1.1rem; }
  .modal-footer { padding: 1rem 1.5rem; box-shadow: 0 -5px 25px rgba(0,0,0,0.15); z-index: 20; position: relative; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.testimonials { background: rgba(47, 111, 98, 0.03); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: #fff; padding: 2.5rem; border-radius: 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); text-align: center; border: 1px solid rgba(0, 0, 0, 0.02); }
.stars { color: #ffc107; margin-bottom: 1rem; font-size: 1.2rem; }
.testimonial-card p { font-style: italic; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.client-name { font-weight: 800; color: var(--primary); font-size: 0.9rem; }
.faq { background: #fff; } .faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 10px 20px rgba(47, 111, 98, 0.05); }
.faq-item summary { padding: 1.25rem 1.5rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.5rem; color: var(--muted); line-height: 1.6; margin: 0; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.insta-item { aspect-ratio: 1; border-radius: 16px; overflow: hidden; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-item:hover img { transform: scale(1.1); }

.text-center { text-align: center; } .mb-4 { margin-bottom: 2rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .img-fluid { max-width: 100%; height: auto; }