/* ===================================================
   BOLSAS DE PAPEL RD — CSS MODERNO Y 100% RESPONSIVO
   Colores de marca: Rosa #E91E8C · Azul #1565C0 · Dorado #F4B400
   =================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink:        #E91E8C;
  --pink-d:      #c4157a;
  --blue:        #1565C0;
  --blue-d:      #0d47a1;
  --gold:        #F4B400;
  --gold-d:      #e0a500;
  --rose:        #E53935;
  --green:       #2E7D32;
  --purple:      #6A1B9A;
  --radius:      1rem;

  /* Modo Claro */
  --bg:          #fafafa;
  --bg-card:     #ffffff;
  --bg-alt:      linear-gradient(135deg, #fff0f7 0%, #e8f4ff 100%);
  --dark:        #1a1a2e;
  --text:        #2d2d2d;
  --text-inv:    #ffffff;
  --muted:       #666666;
  --border:      rgba(0,0,0,0.08);
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --header-bg:   rgba(255,255,255,0.96);
  --header-text: #2d2d2d;
  --footer-bg:   #121220;
}

/* Modo Oscuro */
html.dark {
  --bg:          #0d0d17;
  --bg-card:     #171727;
  --bg-alt:      linear-gradient(135deg, #180d19 0%, #0d1727 100%);
  --dark:        #080810;
  --text:        #f0f0f5;
  --text-inv:    #0d0d17;
  --muted:       #9a9ab2;
  --border:      rgba(255,255,255,0.09);
  --shadow:      0 6px 28px rgba(0,0,0,0.45);
  --header-bg:   rgba(13,13,23,0.97);
  --header-text: #f0f0f5;
  --footer-bg:   #06060c;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* ── HEADER & NAV ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink);
  box-shadow: 0 2px 12px rgba(233,30,140,0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.logo-text { color: var(--blue); }
.logo-accent { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link-track { color: var(--pink) !important; font-weight: 900 !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Botón Cambiar Tema */
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--border);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.theme-btn:hover {
  background: rgba(233,30,140,0.12);
  border-color: var(--pink);
  color: var(--pink);
}
.theme-icon { font-size: 0.95rem; line-height: 1; }
.theme-icon-dark  { display: none; }
.theme-icon-light { display: inline; }
html.dark .theme-icon-light { display: none; }
html.dark .theme-icon-dark  { display: inline; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── BOTONES GLOBALES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(233,30,140,0.3);
  text-align: center;
}
.btn-primary:hover {
  background: var(--pink-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(233,30,140,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--pink);
  border: 2px solid var(--pink);
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.2s;
  text-align: center;
}
.btn-secondary:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  text-align: center;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1eb954;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.4);
}
.btn-whatsapp.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 800;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  text-align: center;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--blue-d);
  border-color: #fff;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(220,39,67,0.3);
  text-align: center;
}
.btn-instagram:hover { opacity: 0.92; transform: translateY(-2px); }

.btn-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(24,119,242,0.3);
  text-align: center;
}
.btn-facebook:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24,119,242,0.4);
}

.btn-mt { margin-top: 1.25rem; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 4.5rem 0 3.5rem;
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.shape-1 { width: 500px; height: 500px; background: var(--pink); top: -160px; right: -120px; }
.shape-2 { width: 360px; height: 360px; background: var(--blue); bottom: -120px; left: -90px; }

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.45rem; font-weight: 900; color: var(--pink); line-height: 1.2; }
.stat span { font-size: 0.8rem; color: var(--muted); font-weight: 700; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card {
  background: var(--bg-card);
  border-radius: 1.25rem;
  padding: 1.3rem 1rem;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--pink);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.hero-card--alt  { border-left-color: var(--blue); }
.hero-card--gold { border-left-color: var(--gold); }
.hero-card--sm   { grid-column: span 1; }
.card-icon { font-size: 1.85rem; flex-shrink: 0; }
.hero-card p { font-weight: 800; font-size: 0.92rem; line-height: 1.3; color: var(--text); }
.hero-card p span { font-weight: 600; font-size: 0.8rem; color: var(--muted); }

/* ── INFO BAR ── */
.info-bar { background: var(--pink); color: #fff; padding: 0.75rem 0; font-weight: 800; }
html.dark .info-bar { background: #1a0815; border-top: 1px solid rgba(233,30,140,0.3); border-bottom: 1px solid rgba(233,30,140,0.2); }
.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}
html.dark .info-bar-inner span { color: #fce4ec; }

/* ── SECCIONES GLOBALES ── */
.section { padding: 4.5rem 0; width: 100%; box-sizing: border-box; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 2.8rem; }
.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(233,30,140,0.12);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.section-title { font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 900; margin-bottom: 0.5rem; }
.section-desc { color: var(--muted); font-size: 1.02rem; max-width: 600px; margin: 0 auto; }

/* ── CATEGORÍAS (4 y 4 ALINEADAS) ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.8rem 1.4rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  color: #fff;
  text-decoration: none;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 42px rgba(0,0,0,0.18); }
.cat-pink   { background: linear-gradient(135deg, #E91E8C, #c4157a); }
.cat-blue   { background: linear-gradient(135deg, #1565C0, #0d47a1); }
.cat-gold   { background: linear-gradient(135deg, #F4B400, #e0a500); color: #1a1a2e; }
.cat-rose   { background: linear-gradient(135deg, #E53935, #b71c1c); }
.cat-green  { background: linear-gradient(135deg, #2E7D32, #1b5e20); }
.cat-orange { background: linear-gradient(135deg, #FF6F00, #E65100); }
.cat-teal   { background: linear-gradient(135deg, #00897B, #004D40); }
.cat-purple { background: linear-gradient(135deg, #6A1B9A, #4a148c); }
.cat-icon { font-size: 2.5rem; }
.cat-card h3 { font-size: 1.2rem; font-weight: 900; }
.cat-card p { font-size: 0.9rem; opacity: 0.92; flex: 1; line-height: 1.45; }
.cat-cta { font-size: 0.85rem; font-weight: 900; opacity: 0.9; margin-top: 0.5rem; }

/* ── NOSOTROS (MARCO DE GISELLE) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}
.about-visual { display: flex; align-items: center; justify-content: center; width: 100%; }

.owner-frame {
  position: relative;
  width: 100%;
  max-width: 310px;
  background: var(--bg-card);
  border-radius: 1.75rem;
  padding: 0.85rem 0.85rem 1.4rem;
  box-shadow: 0 14px 48px rgba(233,30,140,0.18), 0 4px 18px rgba(0,0,0,0.10);
  border: 3px solid transparent;
  background-clip: padding-box;
}
.owner-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(1.75rem + 3px);
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--blue));
  z-index: -1;
}
.owner-photo {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: center 25%;
  aspect-ratio: 4 / 5;
  display: block;
}
.owner-badge-float {
  position: absolute;
  top: -14px;
  right: -10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(233,30,140,0.45);
  white-space: nowrap;
}
.owner-caption {
  text-align: center;
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.owner-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.owner-brand {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.2;
}
.owner-name {
  font-size: 1.55rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p { color: var(--muted); margin-bottom: 0.9rem; font-size: 1.02rem; }

/* ── CATÁLOGO CON PESTAÑAS ── */
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  width: 100%;
}
.cat-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--pink);
  background: var(--bg-card);
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.cat-tab.active,
.cat-tab:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}
.catalog-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.catalog-panel.active { display: flex; }
.catalog-img {
  max-width: 480px;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
  border: 3px solid var(--border);
}
.catalog-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  font-family: inherit;
  text-align: center;
}
.catalog-order-btn:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
.catalog-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
  width: 100%;
}

/* ── OPINIONES DE GOOGLE ── */
.reviews-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  margin-bottom: 2.5rem;
  width: 100%;
}
.rev-score-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rev-google-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(66,133,244,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(66,133,244,0.15);
}
.rev-score-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rev-stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.rev-score-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.btn-review-google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-review-google:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.review-card {
  background: var(--bg-card);
  border-radius: 1.35rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.rev-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-av-pink   { background: linear-gradient(135deg, var(--pink), var(--pink-d)); }
.rev-av-blue   { background: linear-gradient(135deg, var(--blue), var(--blue-d)); }
.rev-av-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-d)); color: #1a1a2e; }
.rev-av-purple { background: linear-gradient(135deg, var(--purple), #4a148c); }
.rev-user-info { flex: 1; min-width: 0; }
.rev-user-info h4 {
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.rev-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.rev-badge-lg {
  color: var(--gold-d);
  font-weight: 800;
}
.rev-card-stars {
  color: #FBBC05;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
.rev-card-text {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.45;
  flex: 1;
}
.rev-date {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── UBICACIÓN & GOOGLE MAPS (100% RESPONSIVE) ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.location-info-card {
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}
.loc-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.loc-item h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.loc-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
  word-break: break-word;
}
.btn-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(21,101,192,0.3);
  margin-top: 0.5rem;
  width: fit-content;
}
.btn-maps:hover {
  background: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21,101,192,0.4);
}

.location-map-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 380px;
  box-sizing: border-box;
}
.location-iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0 !important;
  display: block;
  box-sizing: border-box;
}

/* ── CTA FINAL ── */
.cta-section {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #fff;
  text-align: center;
  width: 100%;
}
.cta-inner h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 900; margin-bottom: 0.75rem; }
.cta-inner p { opacity: 0.92; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; width: 100%; }

/* ── RASTREO DE PEDIDOS (3 COLUMNAS CENTRADAS) ── */
.tracking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto 1.5rem;
  width: 100%;
  max-width: 1050px;
}
.tracking-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  min-width: 0;
}
.tracking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  border-color: var(--pink);
}
.tracking-logo {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; line-height: 1.2; text-align: center;
  color: #fff; letter-spacing: 0.03em;
}
.tracking-bm    { background: linear-gradient(135deg, #0057b8, #003d82); }
.tracking-caribe { background: linear-gradient(135deg, #e8a000, #c47700); }
.tracking-vimen  { background: linear-gradient(135deg, #c00020, #8b0016); }
.tracking-info h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 0.2rem; color: var(--text); }
.tracking-info p  { font-size: 0.84rem; color: var(--muted); margin-bottom: 0.4rem; }
.tracking-cta { font-size: 0.84rem; font-weight: 800; color: var(--pink); }
.tracking-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ── FOOTER ── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.85); width: 100%; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.25rem 2.5rem;
  width: 100%;
}
.footer-brand .logo-text { font-size: 1.15rem; font-weight: 900; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.75; }
.footer-logo-row { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.footer-logo-img { width: 34px; height: 34px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.footer-email {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
}
.footer-email:hover { text-decoration: underline; }
.footer-info p { font-size: 0.88rem; margin-bottom: 0.4rem; opacity: 0.85; }

.footer-social { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-social-title { font-weight: 800; font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.3rem; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s, transform 0.15s;
}
.footer-social-link:hover { opacity: 0.9; transform: translateY(-1px); }
.footer-ig  { background: #E1306C; color: #fff; }
.footer-fb  { background: #1877f2; color: #fff; }
.footer-lt  { background: #43d551; color: #1a1a2e; }

/* ── CREATOR LINKS ── */
.creator-links-bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.1rem 0; width: 100%; }
.creator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.creator-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.creator-links a:hover { opacity: 0.88; transform: translateY(-1px); }
.creator-fiverr     { background: #1dbf73; color: #fff; }
.creator-github     { background: #fff; color: #24292e; }
.creator-cloudflare { background: #f6821f; color: #fff; }

.footer-bottom {
  text-align: center;
  padding: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  opacity: 0.65;
  width: 100%;
}
.demo-note { margin-top: 0.3rem; font-size: 0.76rem; }

/* ===================================================
   ADAPTACIÓN RESPONSIVA (MÓVIL & TABLET)
   =================================================== */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-desc { margin: 0 auto 1.8rem; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-cards { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .about-visual { order: -1; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .location-info-card { padding: 1.75rem; }
  .location-map-wrap { height: 320px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand, .footer-logo-row {
    justify-content: center;
    align-items: center;
  }
  .footer-social { align-items: center; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Menú móvil */
  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
    display: none;
    border-bottom: 3px solid var(--pink);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.05rem; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 3rem 0 2.2rem; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-stats { gap: 1.25rem; }
  .stat strong { font-size: 1.3rem; }

  /* Catálogo tabs */
  .catalog-tabs { gap: 0.5rem; }
  .cat-tab { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

  /* Reseñas Google */
  .reviews-summary-bar {
    flex-direction: column;
    text-align: center;
    padding: 1.35rem 1.2rem;
    gap: 1.1rem;
  }
  .rev-score-block { flex-direction: column; text-align: center; }
  .btn-review-google { width: 100%; justify-content: center; }

  /* Ubicación Mapa */
  .location-map-wrap { height: 280px; }
  .btn-maps { width: 100%; justify-content: center; }

  /* Rastreo en móvil */
  .tracking-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Pantallas pequeñas (Samsung Galaxy A12 - 360px y estándar) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav { padding: 0.55rem 0.85rem; }
  .nav-logo { font-size: 1.05rem; gap: 0.4rem; }
  .nav-logo-img { width: 30px; height: 30px; }

  /* Esconder etiqueta de texto en móvil para ahorrar espacio */
  .theme-btn .theme-label { display: none; }
  .theme-btn { padding: 0.45rem 0.6rem; }
  .btn-whatsapp { padding: 0.45rem 0.85rem; font-size: 0.8rem; }

  .hero { padding: 2.5rem 0 2rem; }
  .hero-title { font-size: 1.95rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .stat strong { font-size: 1.15rem; }
  .stat span { font-size: 0.7rem; }

  .info-bar-inner { flex-direction: column; gap: 0.35rem; text-align: center; font-size: 0.78rem; }

  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { padding: 1.4rem 1.2rem; }

  .owner-frame { max-width: 270px; }
  .owner-badge-float { font-size: 0.68rem; padding: 0.35rem 0.8rem; }

  .catalog-order-btn { width: 100%; font-size: 0.9rem; padding: 0.8rem 1.2rem; }
  .catalog-social-links { flex-direction: column; width: 100%; gap: 0.75rem; }
  .catalog-social-links a { width: 100%; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; }

  /* Ajustes exactos del mapa y tarjeta para evitar desbordamiento en A12 */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
  }
  .location-info-card {
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
    gap: 1.1rem;
  }
  .loc-item { gap: 0.75rem; }
  .loc-icon { font-size: 1.3rem; }
  .location-map-wrap {
    height: 260px;
    border-radius: 1.25rem;
  }

  .tracking-grid { grid-template-columns: 1fr; }
  .tracking-card { padding: 1rem; gap: 0.85rem; }
  .tracking-logo { width: 56px; height: 56px; font-size: 0.68rem; }

  .creator-links a { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
}
