@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --pink: #E91E8C;
  --pink-dark: #c41677;
  --pink-light: #ff6bb5;
  --pink-glow: rgba(233, 30, 140, 0.25);
  --green: #4CAF50;
  --green-dark: #388E3C;
  --dark: #1a0a14;
  --dark2: #2d1020;
  --white: #ffffff;
  --off-white: #fff5fb;
  --text-muted: #8a6070;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(233, 30, 140, 0.15);
  --shadow-lg: 0 20px 60px rgba(233, 30, 140, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #1a0a14 0%, #3d0b28 50%, #E91E8C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 48px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 20, 0.45);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Avatar circular com anel rosa */
.hero-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #E91E8C, #ff6bb5, #c41677);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.25), 0 8px 32px rgba(233,30,140,0.4);
  animation: avatarIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #1a0a14;
  display: block;
}

.hero-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-tagline {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s 0.35s ease both;
}

@keyframes avatarIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MAIN WRAPPER ──────────────────────────────────────── */
.main {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

/* ─── SECTION HEADERS ───────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0 20px;
}

.section-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.section-header .section-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--pink-glow);
}

.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-light), transparent);
  border-radius: 2px;
}

/* ─── PROMOTIONS ────────────────────────────────────────── */
#promotions-section { display: none; }
#promotions-section.has-promos { display: block; }

.promo-card {
  background: linear-gradient(135deg, #1a0a14, #4a0d30); /* sobrescrito inline pela cor do admin */
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
  border: 1px solid rgba(233,30,140,0.3);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(233,30,140,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.promo-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.promo-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.promo-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ─── PRODUCT CAROUSEL ──────────────────────────────────── */
.carousel-wrapper {
  position: relative;
  margin-top: 16px;
}

.product-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.product-carousel::-webkit-scrollbar { display: none; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}

.carousel-btn:hover { background: rgba(255,255,255,0.35); }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }

.carousel-counter {
  text-align: right;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  padding-right: 2px;
}

.product-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255,255,255,0.08);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.product-card:active { transform: scale(0.97); }

.product-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card__img-placeholder {
  width: 100%;
  height: 220px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.product-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.product-card__price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #7effa0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ─── LIGHTBOX (Story format) ───────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 10, 0.92);
  backdrop-filter: blur(8px);
}

/* Full-screen story */
.lightbox-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

/* Wrapper animável do conteúdo (imagem + overlay) */
.lb-content {
  position: absolute;
  inset: 0;
}

@keyframes lbSlideRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes lbSlideLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.lb-content.slide-right { animation: lbSlideRight 0.28s cubic-bezier(0.4,0,0.2,1) both; }
.lb-content.slide-left  { animation: lbSlideLeft  0.28s cubic-bezier(0.4,0,0.2,1) both; }

/* Imagem preenche o card inteiro */
.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: #2d1020;
}

/* Gradiente na parte inferior — onde ficam as infos */
.lightbox-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 20px max(24px, env(safe-area-inset-bottom, 24px));
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  z-index: 4;
}

.lightbox-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.lightbox-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #7effa0;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.lightbox-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.lightbox-wa-btn:hover { background: #1ebe5d; }
.lightbox-wa-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* Barra de progresso no topo */
.lightbox-progress {
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 14px));
  left: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.lightbox-progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}

.lightbox-progress-bar.active { background: #fff; }

/* Botão fechar */
.lightbox-close {
  position: absolute;
  top: max(32px, calc(env(safe-area-inset-top, 0px) + 10px));
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(0,0,0,0.7); }

/* Zonas de toque laterais para navegação */
.lightbox-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 3;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
}

.lightbox-nav.prev { left: 0; }
.lightbox-nav.next { right: 0; }

@media (min-width: 768px) {
  .lightbox-card {
    width: auto;
    height: 100dvh;
    aspect-ratio: 9 / 16;
    max-height: 100dvh;
    border-radius: 12px;
    overflow: hidden;
  }
}

/* ─── DEPARTMENT CARDS ──────────────────────────────────── */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dept-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  min-height: 140px;
  transition: var(--transition);
  cursor: pointer;
  background: #2d1020;
}

.dept-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dept-card:active { transform: scale(0.97); }

.dept-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dept-card:hover .dept-card__bg { transform: scale(1.07); }

.dept-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.dept-card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.dept-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  z-index: 2;
  line-height: 1.3;
}

.dept-wa-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  z-index: 3;
  opacity: 0.9;
}

/* ─── VIP GROUP BANNER ──────────────────────────────────── */
.vip-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vip-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.vip-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(7, 94, 84, 0.4);
}

.vip-wa-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.vip-text { flex: 1; }

.vip-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.vip-description {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.vip-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ─── SOCIAL SECTION ────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 380px;
}

.social-grid--single {
  grid-template-columns: 1fr;
  max-width: 180px;
}

.social-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-light);
}

.social-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.social-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ─── CANAIS DIGITAIS ───────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.channel-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ch-color, #E91E8C);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--ch-color, #E91E8C);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.channel-card:hover::before { transform: scaleX(1); }

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ch-bg, #f5f5f5);
  transition: var(--transition);
}

.channel-card:hover .channel-icon-wrap {
  background: var(--ch-color, #E91E8C);
}

.channel-card:hover .channel-icon-wrap svg,
.channel-card:hover .channel-icon-wrap path { fill: #fff !important; }

.channel-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

/* ─── GOOGLE REVIEW BANNER ──────────────────────────────── */
.google-review-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  text-decoration: none;
  border: 2px solid #e8f0fe;
  box-shadow: 0 4px 20px rgba(66,133,244,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.google-review-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66,133,244,0.04) 0%, rgba(52,168,83,0.04) 50%, rgba(251,188,5,0.04) 100%);
  pointer-events: none;
}

.google-review-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(66,133,244,0.22);
  border-color: #4285F4;
}

.google-review-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-review-logo {
  width: 56px;
  height: 56px;
  background: #f8f9fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.google-review-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.google-review-stars {
  font-size: 1.2rem;
  color: #FBBC05;
  letter-spacing: 2px;
  margin-bottom: 2px;
  line-height: 1;
}

.google-review-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-review-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4285F4;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
  padding: 10px 16px;
  background: #e8f0fe;
  border-radius: 10px;
  transition: var(--transition);
}

.google-review-banner:hover .google-review-cta {
  background: #4285F4;
  color: #fff;
}

/* ─── MAP ───────────────────────────────────────────────── */
.contact-map-wrap {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.contact-map-wrap a {
  display: block;
  position: relative;
}

.contact-map-iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
  pointer-events: none;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  transition: background 0.25s ease;
}

.contact-map-wrap a:hover .contact-map-overlay {
  background: rgba(0,0,0,0.25);
}

.contact-map-cta {
  background: var(--pink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.contact-map-wrap a:hover .contact-map-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CONTACT SECTION ───────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-top: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e0eb;
}

.contact-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--off-white);
}

.contact-row-text { flex: 1; }

.contact-row-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-row-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid #f0d0e6;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.phone-chip:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: linear-gradient(145deg, #1a0a14, #2d1020);
  padding: 20px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-link:hover { color: var(--pink-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer-credit {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--pink-light);
  text-decoration: underline;
}

/* ─── FLOATING WhatsApp ─────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 3s ease infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

.float-wa svg { width: 32px; height: 32px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ─── LOADING STATE ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0d0e6 25%, #f8e8f2 50%, #f0d0e6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  height: 130px;
  border-radius: var(--radius);
}

/* ─── UTILITIES ─────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 560px) {
  .main { padding: 20px 12px 60px; }
  .section-header { margin: 24px 0 14px; }
  .promo-card { padding: 16px; }
}

@media (max-width: 380px) {
  .departments-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-logo { width: 130px; }
}

@media (min-width: 768px) {
  .hero-avatar { width: 140px; height: 140px; }
}
