/* =================================================================
   styles.css — Floristería Ramos
   Todos los estilos visuales del sitio web.
   Fuentes cargadas vía Google Fonts en index.html.
   ================================================================= */

/* ===================== VARIABLES ===================== */
:root {
  --pink:    #e65368;
  --teal:    #81c8c3;
  --blue:    #75a8d1;
  --purple:  #9571b6;
  --gold:    #dbc479;
  --magenta: #d1205a;
  --dark:    #1a0a14;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Nunito', sans-serif; overflow-x: hidden; background: #1a0a14; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Accessibility: visually hidden but readable by screen readers */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================== FLOATING FLOWERS LAYER ===================== */
#flowers-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.float-flower {
  position: absolute;
  animation: floatDown linear forwards;
  transform-origin: center;
}
@keyframes floatDown {
  0%   { transform: translateY(-120px) rotate(0deg) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(720deg) scale(0.9); opacity: 0; }
}

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  background: rgba(26,10,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,196,121,0.15);
  transition: background 0.4s;
}
.nav-logo img { height: 59px; filter: drop-shadow(0 2px 8px rgba(219,196,121,0.5)); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--pink); color: white !important; padding: 0.55rem 1.4rem;
  border-radius: 100px; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(230,83,104,0.4);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,83,104,0.5) !important; }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.ham span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mob-menu {
  display: none; position: fixed; top: 68px; inset-inline: 0; z-index: 199;
  background: rgba(26,10,20,0.97); backdrop-filter: blur(20px);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0;
}
.mob-menu.open { display: flex; }
.mob-menu a { padding: 1rem 0; font-size: 1rem; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mob-menu a:hover { color: var(--gold); }

/* ===================== HERO ===================== */
#inicio {
  min-height: 100svh;
  width: 100%; max-width: 100vw;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(90,60,175,0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 70%, rgba(40,20,130,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 15%, rgba(110,70,190,0.4) 0%, transparent 42%),
    radial-gradient(ellipse at 15% 80%, rgba(55,30,150,0.5) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 20%, rgba(75,45,160,0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 55%, rgba(30,15,110,0.35) 0%, transparent 60%),
    #554299;
}

/* Geometric light rays */
.hero-rays {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-rays::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 200%; height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.04) 0deg, transparent 15deg,
    rgba(255,255,255,0.03) 30deg, transparent 45deg,
    rgba(255,255,255,0.04) 60deg, transparent 75deg,
    rgba(255,255,255,0.02) 90deg, transparent 105deg,
    rgba(255,255,255,0.04) 120deg, transparent 135deg,
    rgba(255,255,255,0.03) 150deg, transparent 165deg,
    rgba(255,255,255,0.04) 180deg, transparent 195deg,
    rgba(255,255,255,0.03) 210deg, transparent 225deg,
    rgba(255,255,255,0.04) 240deg, transparent 255deg,
    rgba(255,255,255,0.02) 270deg, transparent 285deg,
    rgba(255,255,255,0.04) 300deg, transparent 315deg,
    rgba(255,255,255,0.03) 330deg, transparent 345deg
  );
  animation: rayspin 40s linear infinite;
}
@keyframes rayspin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Blooming flowers ring around logo */
.bloom-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  transform-origin: center center;
  width: 820px; height: 820px;
  pointer-events: none;
}
@media (max-width: 900px) { .bloom-ring { transform: translate(-50%,-50%) scale(0.65); } }
@media (max-width: 768px) { .bloom-ring { transform: translate(-50%,-50%) scale(0.5);  } }
@media (max-width: 600px) { .bloom-ring { transform: translate(-50%,-50%) scale(0.38); } }
@media (max-width: 400px) { .bloom-ring { transform: translate(-50%,-50%) scale(0.28); } }
.bloom-flower {
  position: absolute;
  transform-origin: center;
  animation: bloomIn 0.8s cubic-bezier(0.34,1.56,0.64,1) both, gentleSway ease-in-out infinite alternate;
}
@keyframes bloomIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes gentleSway {
  from { transform: scale(1) rotate(-5deg) translateY(0); }
  to   { transform: scale(1.08) rotate(5deg) translateY(-6px); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 120px 2rem 80px;
  width: 100%; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  width: min(380px, 80vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.4)) drop-shadow(0 0 60px rgba(219,196,121,0.3));
  animation: logoReveal 1s cubic-bezier(0.34,1.2,0.64,1) 0.3s both;
}
@keyframes logoReveal {
  from { transform: scale(0.5); opacity: 0; filter: blur(20px); }
  to   { transform: scale(1); opacity: 1; filter: none; }
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: rgba(255,255,255,0.95);
  font-style: italic;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease 0.8s both;
}
.hero-sub {
  font-size: 0.92rem; font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 1s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 1.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 0.9rem 2rem; border-radius: 100px;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-white { background: white; color: var(--magenta); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.btn-white:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.btn-gold { background: var(--gold); color: #3a1a08; box-shadow: 0 6px 20px rgba(219,196,121,0.5); }
.btn-gold:hover { box-shadow: 0 12px 28px rgba(219,196,121,0.6); background: #e8d280; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-pink { background: var(--pink); color: white; box-shadow: 0 6px 20px rgba(230,83,104,0.4); }
.btn-pink:hover { box-shadow: 0 12px 28px rgba(230,83,104,0.5); }
.btn-teal { background: var(--teal); color: #0a2020; box-shadow: 0 6px 20px rgba(129,200,195,0.4); }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeUp 1s ease 1.8s both;
}
.scroll-cue span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4);
  animation: scrollBounce 1.4s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(8px)} }

/* ===================== SECTIONS COMMON ===================== */
section { position: relative; z-index: 1; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
}
.rule { width: 44px; height: 3px; border-radius: 3px; margin: 1.2rem 0; }
.rule.center { margin-inline: auto; }

/* Scroll reveal */
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.sr.up { opacity: 1; transform: none; }

/* Flores banner marquee */
.flores-chip {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.8rem; border-radius: 100px;
  color: white; white-space: nowrap; font-size: 1rem;
  font-family: 'Playfair Display', serif;
  transition: opacity 0.2s;
  text-decoration: none;
}
.flores-chip:hover { opacity: 0.75; }
@keyframes floresMarch {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== ARREGLOS ===================== */
#arreglos {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a0a14 0%, #0e0818 100%);
}
.arreglos-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
.arreglos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.fl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.fl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.07);
}
.fl-card-visual {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.fl-card-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.fl-card:hover .fl-card-photo { transform: scale(1.03); }

/* Tarjeta destacada: Diseño Personalizado */
.fl-card--featured {
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(230,83,104,0.25);
}
.fl-card--featured:hover {
  box-shadow: 0 24px 48px rgba(230,83,104,0.45);
}
@media (min-width: 769px) {
  .fl-card--featured { grid-column: span 2; }
  .fl-card--featured .fl-card-visual { padding-top: 0; height: 400px; }
}
.fl-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(230,83,104,0.15); border: 1px solid rgba(230,83,104,0.4);
  color: var(--pink); padding: 3px 10px; border-radius: 100px;
  margin-bottom: 0.6rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.fl-card-body { padding: 1.6rem 1.6rem 0.8rem; }
.fl-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem; }
.fl-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.5rem; line-height: 1.2; }
.fl-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.45); font-weight: 300; }
.fl-card-footer { padding: 1rem 1.6rem 1.6rem; display: flex; justify-content: flex-end; }
.fl-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.3s;
}
.fl-card:hover .fl-link { gap: 0.7rem; }

/* ===================== REPARTO ===================== */
#reparto {
  padding: 6rem 0;
  background: linear-gradient(135deg, #e65368 0%, #c01858 40%, #9571b6 100%);
  position: relative; overflow: hidden;
}
#reparto::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.reparto-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.reparto-left .eyebrow { color: var(--gold); }
.reparto-left .display { color: white; }
.reparto-left .rule { background: var(--gold); }
.reparto-left p { color: rgba(255,255,255,0.82); line-height: 1.85; font-size: 0.92rem; margin-bottom: 0.8rem; }
.alert-banner {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 1.2rem 1.4rem; margin: 1.5rem 0;
  backdrop-filter: blur(4px);
}
.alert-banner p { color: white; font-size: 0.88rem; margin: 0; font-weight: 600; }
.rep-list { display: flex; flex-direction: column; gap: 1rem; }
.rep-item {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.rep-item:hover { background: rgba(255,255,255,0.18); }
.rep-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; background: rgba(255,255,255,0.15);
}
.rep-item h4 { color: white; font-size: 0.88rem; margin-bottom: 0.2rem; }
.rep-item p { color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.6; margin: 0; }

/* ===================== UBICACION ===================== */
#ubicacion {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0e0818 0%, #0a1a1a 100%);
}
.ubi-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.ubi-left .eyebrow { color: var(--purple); }
.ubi-left .display { color: white; }
.ubi-left .rule { background: var(--purple); }
.ubi-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ubi-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.ubi-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; margin-top: 2px; }
.ubi-item h5 { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.3rem; }
.ubi-item p, .ubi-item a { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; font-weight: 300; }
.ubi-item a:hover { color: var(--teal); }
.map-box { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.map-box iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===================== CONTACTO ===================== */
#contacto {
  padding: 6rem 0;
  background: #0d0b1a;
  position: relative; overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(129,200,195,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(149,113,182,0.08) 0%, transparent 60%);
}
.contacto-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.contacto-header .eyebrow { color: var(--teal); }
.contacto-header .display { color: white; }
.contacto-header .rule { background: var(--teal); }
.con-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; position: relative; z-index: 1; }
.con-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2rem 1.4rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  backdrop-filter: blur(8px); transition: all 0.3s; color: white;
}
.con-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.con-icon { font-size: 2rem; }
.con-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.con-card p { font-size: 0.8rem; opacity: 0.8; line-height: 1.6; }
.con-card span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; opacity: 0.7; }

/* ===================== FOOTER ===================== */
footer {
  background: #0a0510;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-logo img { height: 46px; margin: 0 auto 1.8rem; filter: drop-shadow(0 2px 12px rgba(219,196,121,0.3)); }
.footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; list-style: none; margin-bottom: 1.8rem; }
.footer-nav a { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-line { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem auto; }
.footer-info { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 2; }
.footer-info a { color: rgba(219,196,121,0.5); transition: color 0.2s; }
.footer-info a:hover { color: var(--gold); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.15); margin-top: 1.2rem; letter-spacing: 0.1em; }

/* ===================== WHATSAPP WIDGET ===================== */
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.12); }
}
@keyframes waPop {
  from { transform: scale(0.8) translateY(10px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
#wa-bubble { animation: waPop 0.3s cubic-bezier(0.34,1.56,0.64,1); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .arreglos-grid { grid-template-columns: repeat(2,1fr); }
  .con-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .ham { display: flex; }
  .arreglos-grid { grid-template-columns: 1fr; }
  .reparto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ubi-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-box iframe { height: 280px; }
  #arreglos, #reparto, #ubicacion, #contacto { padding: 4rem 0; }
  .arreglos-header { flex-direction: column; align-items: flex-start; }

  /* Hero móvil: centra el logo con la bloom-ring */
  #inicio { align-items: center; justify-content: center; }
  .hero-content { padding: 88px 1.5rem 64px; }
  .hero-logo { width: min(260px, 80vw); }
}
@media (max-width: 520px) {
  .con-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Hero pantallas pequeñas */
  .hero-content { padding: 72px 1.2rem 56px; }
  .hero-logo { width: min(220px, 80vw); }

  /* Precios: 1 columna en móvil */
  .precios-grid { grid-template-columns: 1fr !important; }
  .precios-grid > [style*="grid-column"] { grid-column: span 1 !important; }
}
@media (max-width: 380px) {
  /* Hero en pantallas muy pequeñas */
  .hero-content { padding: 60px 1rem 48px; }
  .hero-logo { width: min(180px, 80vw); }
}

/* ===================== CATEGORÍAS (fichas sin imagen) ===================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2rem 1.6rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cat-color, var(--teal));
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.07);
}
.cat-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.cat-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--cat-color, var(--teal));
  line-height: 1; margin-bottom: 0.5rem;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: white;
  margin-bottom: 0.6rem; line-height: 1.3;
}
.cat-desc {
  font-size: 0.82rem; line-height: 1.7;
  color: rgba(255,255,255,0.4); font-weight: 300;
  flex: 1; margin-bottom: 1.2rem;
}
.cat-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cat-color, var(--teal));
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; transition: gap 0.3s; align-self: flex-start;
}
.cat-card:hover .cat-link { gap: 0.7rem; }

/* ===================== CATÁLOGO ===================== */
#catalogo {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0e0818 0%, #0a1014 100%);
}
.catalogo-categoria { margin-bottom: 4.5rem; }
.catalogo-cat-header {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.catalogo-cat-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: white;
}
.catalogo-cat-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 100px; border: 1px solid;
}
.catalogo-cat-precio {
  margin-left: auto;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.catalogo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.catalogo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.catalogo-item-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.catalogo-item-img img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.catalogo-item:hover .catalogo-item-img img { transform: scale(1.05); }
.catalogo-item-body { padding: 0.8rem 1rem 0.35rem; }
.catalogo-item-title {
  font-size: 0.88rem; font-weight: 700; color: white;
  margin-bottom: 0.2rem; line-height: 1.3;
}
.catalogo-item-price {
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.25rem;
}
.catalogo-item-desc {
  font-size: 0.73rem; line-height: 1.55;
  color: rgba(255,255,255,0.35); font-weight: 300;
}
.catalogo-item-footer { padding: 0.5rem 1rem 0.8rem; }
.catalogo-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: #25D366; color: white; border-radius: 100px;
  padding: 0.45rem 0.9rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-decoration: none;
  transition: background 0.2s, transform 0.2s; width: 100%;
}
.catalogo-wa-btn:hover { background: #1ebe5a; transform: translateY(-1px); }
.catalogo-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 3rem 1rem; color: rgba(255,255,255,0.2);
  font-size: 0.88rem; line-height: 2;
}
.catalogo-empty-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }

/* ===================== LIGHTBOX ===================== */
#lb {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#lb.lb-open { opacity: 1; pointer-events: all; }
#lb-overlay {
  position: absolute; inset: 0;
  background: rgba(5,2,15,0.93);
  backdrop-filter: blur(8px);
}
#lb-box {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  background: #140e28;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; overflow: hidden;
  width: min(500px, 92vw);
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.28s cubic-bezier(0.34,1.3,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.75);
}
#lb.lb-open #lb-box { transform: scale(1); }
#lb-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 55vh;
  position: relative; overflow: hidden; flex-shrink: 0;
}
#lb-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
#lb-info { padding: 1.1rem 1.4rem 0.8rem; }
#lb-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: white; font-weight: 700;
  margin-bottom: 0.25rem; line-height: 1.3;
}
#lb-price { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
#lb-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.6; margin-bottom: 0.9rem;
}
#lb-close {
  position: fixed; top: 1rem; right: 1rem; z-index: 9002;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
#lb-close:hover { background: rgba(255,255,255,0.24); transform: scale(1.08); }
#lb-prev, #lb-next {
  position: fixed; top: 50%; z-index: 9002;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#lb-prev { left: 0.8rem; }
#lb-next { right: 0.8rem; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.22); }
#lb-prev[hidden], #lb-next[hidden] { display: none; }

/* ===================== RESPONSIVE catálogo + categorías ===================== */
@media (max-width: 1024px) {
  .catalogo-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
  .catalogo-grid { grid-template-columns: repeat(2,1fr); gap: 0.7rem; }
  #catalogo { padding: 3rem 0; }
  .catalogo-categoria { margin-bottom: 2.5rem; }
  .catalogo-item-body { padding: 0.55rem 0.7rem 0.25rem; }
  .catalogo-item-footer { padding: 0.35rem 0.7rem 0.6rem; }
  .catalogo-item-title { font-size: 0.8rem; }
  .catalogo-item-price { font-size: 0.72rem; }
  .catalogo-item-desc  { display: none; }
  #lb-prev { left: 0.3rem; }
  #lb-next { right: 0.3rem; }
}

/* ===================== GALERÍA DEL LOCAL ===================== */
#galeria { padding: 3rem 0; background: #0a0510; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
}
.galeria-item { position: relative; overflow: hidden; border-radius: 12px; }
.galeria-item img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.45rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  font-size: 0.68rem; color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .galeria-grid { grid-template-columns: 1fr !important; }
  .galeria-item img { height: 220px; }
}

/* ===================== UBICACIÓN + HORARIO MERGED ===================== */
#ubicacion {
  padding: 5rem 0;
  background: #0d0d0d;
}
.ubi-merged-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: start;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
/* Badge abierto / cerrado */
.status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 100px; padding: 0.55rem 1.4rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.status-badge.abierto {
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.35);
  color: #4ade80;
  box-shadow: 0 0 16px rgba(74,222,128,0.15);
}
.status-badge.cerrado {
  background: rgba(248,113,113,0.12);
  border-color: rgba(248,113,113,0.3);
  color: #f87171;
}
/* Tabla de horario */
.horario-tabla { width: 100%; border-collapse: collapse; margin-top: 0.2rem; }
.horario-tabla tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.horario-tabla td { padding: 0.65rem 0.3rem; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.horario-tabla td:first-child { font-weight: 400; }
.horario-tabla td:last-child { text-align: right; font-weight: 700; color: rgba(255,255,255,0.85); }
.horario-tabla tr.dia-hoy td {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.horario-tabla tr.dia-hoy td:last-child {
  color: var(--gold) !important;
}
/* Redes sociales */
.ubi-social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.ubi-social-btn {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.45rem 1rem;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55); text-decoration: none;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ubi-social-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: white;
}
@media (max-width: 900px) {
  .ubi-merged-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.8rem; }
}

/* ===================== FLORES MARQUEE CON FOTO — tarjetas premium ===================== */
#flores-vendidas {
  padding: 5rem 0;
  background: #111;
  overflow: hidden;
}
.flores-chip-v2 {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 0.8rem; padding: 1.3rem 1.1rem 1.1rem;
  border-radius: 18px; min-width: 120px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  color: white; white-space: nowrap; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.flores-chip-v2:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(230,83,104,0.22);
}
/* Contenedor circular de foto / emoji */
.flores-foto-wrap {
  width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
  background: #2a2a2a;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flores-chip-foto {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.flores-chip-v2 .flores-emoji {
  font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.flores-chip-v2 .flores-nombre {
  font-size: 0.85rem; font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.9); text-align: center;
  font-weight: 400; letter-spacing: 0.02em;
}

/* ===================== CAT-GRID COMPACTO (5 col desktop) ===================== */
#arreglos { background: #0d0d0d; }
.cat-grid-compact {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1rem;
}
.cat-card-compact {
  background: linear-gradient(160deg, #1e1e1e 0%, #181818 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.5rem 1rem 1.2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative; overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cat-card-compact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--cat-color, var(--teal));
  opacity: 0.8;
}
.cat-card-compact:hover {
  transform: translateY(-5px);
  border-color: var(--cat-color, var(--teal));
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.cat-card-compact .cat-icon  { font-size: 2rem; margin-bottom: 0.6rem; }
.cat-card-compact .cat-price {
  font-size: 1rem; margin-bottom: 0.25rem;
  color: var(--cat-color, var(--teal));
}
.cat-card-compact .cat-name  {
  font-size: 0.82rem; margin-bottom: 0.4rem;
  color: white; font-weight: 700;
}
.cat-card-compact .cat-desc  {
  font-size: 0.69rem; margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.4); line-height: 1.5;
  flex: 1;
}
.cat-card-compact .cat-link  {
  font-size: 0.62rem; margin-top: auto;
  color: var(--cat-color, var(--teal));
}
/* Tooltip */
.cat-tooltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 0.55rem 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.85); white-space: nowrap;
  pointer-events: none; opacity: 0; z-index: 20;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.cat-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(255,255,255,0.15);
}
.cat-card-compact:hover .cat-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 1024px) { .cat-grid-compact { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .cat-grid-compact { grid-template-columns: repeat(2,1fr); gap: 0.8rem; } }

/* ===================== CALIFICANOS EN GOOGLE ===================== */
#google-review {
  padding: 5rem 0;
  background: #0d0d0d;
  text-align: center;
  /* SIN flores animadas ni elementos flotantes */
}
.google-review-card {
  max-width: 580px; margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 24px; padding: 3rem 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.google-stars {
  font-size: 2rem; letter-spacing: 0.12em;
  margin-bottom: 1rem; display: block;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3));
}
.google-review-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: white; margin-bottom: 0.5rem; line-height: 1.25;
}
.google-review-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  margin-bottom: 2rem; line-height: 1.6;
}
.btn-google {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: white; color: #111;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.04em; padding: 0.9rem 2.2rem;
  border-radius: 100px; text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
  background: #f5f5f5;
}
@media (max-width: 600px) {
  .google-review-card { padding: 2rem 1.4rem; }
  .google-stars { font-size: 1.6rem; }
}
