/* ══════════════════════════════════════════
   FlowerShop — CSS (Mobile-First Responsive)
   Paleta: Blush Rose · Sage · Champagne
   ══════════════════════════════════════════ */

:root {
  --rose:       #E05A73;
  --rose-deep:  #E05A73;
  --rose-light: #f5dde0;
  --blush:      #fdf0f1;
  --sage:       #8aab8a;
  --sage-light: #c8ddc8;
  --champagne:  #f0e6d3;
  --nude:       #e8d5c0;
  --cream:      #faf7f4;
  --charcoal:   #2d2320;
  --brown-mid:  #6b4f4a;
  --brown-soft: #9b7e7b;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 30px rgba(45,35,32,.08);
  --shadow-md: 0 8px 50px rgba(45,35,32,.12);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--rose-deep); color: var(--white); box-shadow: 0 4px 20px rgba(201,125,132,.35); }
.btn--primary:hover { background: var(--charcoal); box-shadow: 0 6px 28px rgba(45,35,32,.25); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.15); color: #E05A73; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn--nav { background: var(--rose-deep); color: var(--white); padding: .55rem 1.25rem; font-size: .8rem; }
.btn--nav:hover { background: var(--charcoal); }
.btn--card { background: var(--champagne); color: var(--brown-mid); padding: .55rem 1.25rem; font-size: .8rem; border-radius: 50px; }
.btn--card:hover { background: var(--rose-deep); color: var(--white); transform: translateY(-1px); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ══════════════ TYPOGRAPHY ══════════════ */
.section-tag { font-size: .75rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--charcoal); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--rose-deep); }
.section-sub { color: var(--brown-soft); font-size: 1rem; max-width: 500px; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 3.5rem; } }
.section-header .section-sub { margin: 0 auto; }
.logo-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; color: var(--charcoal); }
@media (min-width: 640px) { .logo-text { font-size: 1.5rem; } }
.logo-text em { font-style: italic; color: var(--rose-deep); }

/* ══════════════ HEADER ══════════════ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: var(--transition); }
.header.scrolled { background: rgba(250,247,244,.92); backdrop-filter: blur(16px); box-shadow: 0 2px 20px rgba(45,35,32,.08); padding: .7rem 0; }
.nav { max-width: 1200px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .nav { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav { padding: 0 2rem; } }
.nav__logo { display: flex; align-items: center; gap: .5rem; }
.nav__logo img { height: 52px; width: auto; filter: drop-shadow(0 0 2px white); }
@media (min-width: 640px) { .nav__logo img { height: 64px; } }
@media (min-width: 1024px) { .nav__logo img { height: 75px; } }
.header.scrolled .nav__logo .logo-text { color: var(--charcoal); text-shadow: none; }
.header.scrolled .nav__logo .logo-text em { color: var(--rose-deep); }
.nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__links a { font-size: .875rem; font-weight: 400; color: rgb(0,0,0); transition: color var(--transition); position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--rose-light); transition: width var(--transition); }
.nav__links a:hover::after { width: 100%; }
.header.scrolled .nav__links a { color: var(--brown-mid); }
.header.scrolled .nav__links a::after { background: var(--rose-deep); }
.nav__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; }
@media (min-width: 900px) { .nav__burger { display: none; } }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .nav__burger span { background: var(--charcoal); }
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh; background: var(--white); z-index: 99; padding: 5rem 2rem 2rem; box-shadow: -8px 0 40px rgba(45,35,32,.15); transition: right .4s cubic-bezier(.4,0,.2,1); overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a { font-size: 1.125rem; color: var(--charcoal); font-weight: 400; display: block; padding: .25rem 0; }
.mobile-menu .btn--nav { display: inline-flex; margin-top: 1rem; }

/* ══════════════ HERO ══════════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-placeholder { width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, #d4847a 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, #b5748a 0%, transparent 50%), radial-gradient(ellipse at 60% 80%, #8a6b5c 0%, transparent 50%), linear-gradient(135deg, #2d2320 0%, #5c3d38 40%, #3d2b28 100%); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(240,239,239,.8) 0%, rgba(121,118,118,.5) 60%, rgba(145,143,143,.15) 100%); }
@media (max-width: 640px) { .hero__overlay { background: linear-gradient(to bottom, rgba(240,239,239,.65) 0%, rgba(240,239,239,.8) 100%); } }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 6rem 1rem 3rem; }
@media (min-width: 640px) { .hero__content { padding: 6rem 1.5rem 3rem; } }
@media (min-width: 1024px) { .hero__content { padding: 5rem 2rem; } }
.hero__tag { font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #E05A73; margin-bottom: 1rem; opacity: 0; animation: fadeUp .8s .2s forwards; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 300; line-height: 1.05; color: rgb(0,0,0); margin-bottom: 1rem; opacity: 0; animation: fadeUp .8s .4s forwards; }
.hero__title em { font-style: italic; color: #E05A73; }
.hero__sub { font-size: clamp(.9rem, 2.5vw, 1.2rem); color: rgb(30,30,30); max-width: 480px; margin-bottom: 2rem; font-weight: 300; opacity: 0; animation: fadeUp .8s .6s forwards; line-height: 1.6; }
.hero__ctas { display: flex; gap: .65rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .8s forwards; }
.hero__ctas .btn { font-size: .8rem; padding: .65rem 1.2rem; }
@media (min-width: 640px) { .hero__ctas .btn { font-size: .875rem; padding: .75rem 1.5rem; } }
@media (max-width: 380px) { .hero__ctas { flex-direction: column; align-items: stretch; } .hero__ctas .btn { justify-content: center; } }
.hero__scroll { position: absolute; bottom: 2.5rem; right: 3rem; display: none; flex-direction: column; align-items: center; gap: .75rem; color: rgb(0,0,0); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; z-index: 2; }
@media (min-width: 900px) { .hero__scroll { display: flex; } }
.scroll-line { width: 1.5px; height: 60px; background: linear-gradient(to bottom, rgba(0,0,0,.7), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero::before { content: '✦'; position: absolute; top: 15%; right: 10%; font-size: 5rem; color: rgba(232,180,184,.1); z-index: 1; animation: rotate 20s linear infinite; }
@media (max-width: 640px) { .hero::before, .hero::after { display: none; } }
.hero::after { content: '✦'; position: absolute; bottom: 20%; right: 25%; font-size: 2.5rem; color: rgba(232,180,184,.08); z-index: 1; animation: rotate 15s linear infinite reverse; }

/* ══════════════ SOBRE ══════════════ */
.sobre { padding: 4.5rem 0; background: var(--white); position: relative; overflow: hidden; }
@media (min-width: 768px) { .sobre { padding: 7rem 0; } }
.sobre::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: var(--rose-light); border-radius: 50%; opacity: .3; pointer-events: none; }
.sobre__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; opacity: 0; transform: translateY(40px); transition: opacity .8s, transform .8s; }
@media (min-width: 900px) { .sobre__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.sobre__inner.visible { opacity: 1; transform: none; }
.sobre__deco { position: relative; display: flex; justify-content: center; }
.deco-circle { position: absolute; border-radius: 50%; opacity: .2; }
.deco-circle--1 { width: 220px; height: 220px; background: var(--rose); top: -30px; left: calc(50% - 150px); }
.deco-circle--2 { width: 150px; height: 150px; background: var(--sage-light); bottom: -15px; right: calc(50% - 150px); }
@media (min-width: 900px) { .deco-circle--1 { width: 300px; height: 300px; top: -40px; left: -40px; } .deco-circle--2 { width: 200px; height: 200px; bottom: -20px; right: -20px; } }
.sobre__img-wrap { position: relative; z-index: 1; width: 220px; height: 220px; margin: 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--champagne)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); border: 3px solid rgba(232,180,184,.4); }
@media (min-width: 640px) { .sobre__img-wrap { width: 270px; height: 270px; } }
@media (min-width: 900px) { .sobre__img-wrap { width: 340px; height: 340px; } }
.sobre__img-placeholder { font-size: 4.5rem; filter: drop-shadow(0 4px 12px rgba(201,125,132,.3)); }
.sobre__text p { color: var(--brown-soft); margin-bottom: 1.25rem; font-size: .95rem; font-weight: 300; }
.sobre__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--champagne); }
@media (min-width: 640px) { .sobre__stats { display: flex; gap: 2rem; } }
.stat__num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--rose-deep); line-height: 1; }
.stat__label { display: block; font-size: .78rem; color: var(--brown-soft); margin-top: .25rem; line-height: 1.3; }

/* ══════════════ PRODUTOS — CARROSSEL ══════════════ */
.produtos { padding: 4.5rem 0 3.5rem; background: var(--blush); position: relative; overflow: hidden; }
@media (min-width: 768px) { .produtos { padding: 7rem 0 5rem; } }
.produtos::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--rose-light), var(--sage-light), var(--champagne)); }
.carousel-wrapper { position: relative; display: flex; align-items: center; padding: 0 2.25rem; max-width: 1400px; margin: 0 auto; }
@media (min-width: 640px) { .carousel-wrapper { padding: 0 3rem; } }
.carousel-track-container { overflow: hidden; flex: 1; cursor: grab; border-radius: var(--radius); }
.carousel-track-container:active { cursor: grabbing; }
.carousel-track { display: flex; gap: .875rem; will-change: transform; transition: transform .45s cubic-bezier(.4,0,.2,1); align-items: stretch; }
@media (min-width: 640px) { .carousel-track { gap: 1.25rem; } }
@media (min-width: 1024px) { .carousel-track { gap: 1.5rem; } }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition), opacity .5s; opacity: 0; transform: translateY(20px); flex-shrink: 0; display: flex; flex-direction: column; }
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-8px) !important; box-shadow: var(--shadow-md); }
.card__img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--champagne); }
.card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: radial-gradient(ellipse at 30% 30%, hsl(calc(var(--hue) + 20), 60%, 92%) 0%, hsl(var(--hue), 40%, 88%) 50%, hsl(calc(var(--hue) - 20), 30%, 82%) 100%); }
.card__badge { position: absolute; top: .75rem; left: .75rem; background: var(--rose-deep); color: var(--white); font-size: .62rem; font-weight: 500; letter-spacing: .06em; padding: .25rem .65rem; border-radius: 50px; }
.card__badge--gold { background: #b8963e; }
.card__badge--rose { background: linear-gradient(135deg, var(--rose-deep), #a05a60); }
.card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 640px) { .card__body { padding: 1.25rem; } }
@media (min-width: 1024px) { .card__body { padding: 1.5rem; } }
.card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: .3rem; color: var(--charcoal); }
@media (min-width: 640px) { .card__name { font-size: 1.2rem; } }
.card__desc { font-size: .78rem; color: var(--brown-soft); font-weight: 300; margin-bottom: .9rem; flex: 1; }
@media (min-width: 640px) { .card__desc { font-size: .875rem; } }
.card__footer { display: flex; align-items: center; justify-content: flex-end; }
.carousel-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--rose); background: var(--white); color: var(--rose-deep); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: var(--transition); box-shadow: var(--shadow); z-index: 2; }
@media (min-width: 640px) { .carousel-btn { width: 42px; height: 42px; } }
@media (min-width: 1024px) { .carousel-btn { width: 48px; height: 48px; } }
.carousel-btn svg { width: 15px; height: 15px; }
@media (min-width: 640px) { .carousel-btn svg { width: 18px; height: 18px; } }
@media (min-width: 1024px) { .carousel-btn svg { width: 20px; height: 20px; } }
.carousel-btn:hover:not(:disabled) { background: var(--rose-deep); color: var(--white); border-color: var(--rose-deep); transform: scale(1.08); }
.carousel-btn:disabled { cursor: default; }
.carousel-btn--prev { margin-right: .4rem; }
.carousel-btn--next { margin-left: .4rem; }
@media (min-width: 640px) { .carousel-btn--prev { margin-right: .75rem; } .carousel-btn--next { margin-left: .75rem; } }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; padding: 0 1rem; flex-wrap: wrap; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--rose-light); cursor: pointer; transition: var(--transition); padding: 0; }
.carousel-dot.active { background: var(--rose-deep); width: 20px; border-radius: 4px; }

/* ══════════════ CTA BANNER ══════════════ */
.cta-banner { position: relative; padding: 3.5rem 0; background: linear-gradient(135deg, var(--charcoal) 0%, #4a3330 50%, var(--brown-mid) 100%); overflow: hidden; }
@media (min-width: 768px) { .cta-banner { padding: 5rem 0; } }
.cta-banner__deco { position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 50%, rgba(232,180,184,.15) 0%, transparent 50%), radial-gradient(circle at 90% 50%, rgba(138,171,138,.1) 0%, transparent 50%); }
.cta-banner::before { content: '🌸'; position: absolute; font-size: 6rem; top: 50%; right: 8%; transform: translateY(-50%); opacity: .08; filter: blur(2px); }
@media (max-width: 640px) { .cta-banner::before { display: none; } }
.cta-banner__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
@media (max-width: 640px) { .cta-banner__inner { flex-direction: column; text-align: center; align-items: center; } }
.cta-banner__text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.75rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: .5rem; }
.cta-banner__text h2 em { font-style: italic; color: var(--rose); }
.cta-banner__text p { color: rgba(255,255,255,.6); font-weight: 300; }

/* ── Demo wrapper ── */
.demo-body {
  min-height: 100vh;
  background: var(--cream);
  padding: 2rem 0;
}

/* ══════════════ LOJA SECTION ══════════════ */

.loja {
  padding: 6rem 0 7rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Fundo decorativo suave */
.loja::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 5% 0%, rgba(224,90,115,.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 95% 100%, rgba(138,171,138,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Linhas decorativas laterais */
.loja__line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(224,90,115,.12) 30%, rgba(224,90,115,.12) 70%, transparent);
  pointer-events: none;
}
.loja__line--left  { left: clamp(1rem, 4vw, 4rem); }
.loja__line--right { right: clamp(1rem, 4vw, 4rem); }

.loja__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.loja__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rose);
  opacity: .5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-sub {
  color: var(--brown-soft);
  font-size: .95rem;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══ GRID PRINCIPAL ══ */
.loja__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .loja__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* ══ COLUNA DE INFO ══ */
.loja__info {
  display: flex;
  flex-direction: column;
  gap: 1px; /* gap via separadores internos */
  background: var(--blush);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(224,90,115,.1);
  box-shadow: var(--shadow);
}

.loja__card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.6rem 1.75rem;
  background: var(--white);
  transition: background var(--transition);
  border-bottom: 1px solid rgba(224,90,115,.06);
  position: relative;
}

.loja__card:last-child { border-bottom: none; }

.loja__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rose);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.loja__card:hover::before { transform: scaleY(1); }
.loja__card:hover { background: #fdfafa; }

/* Ícone */
.loja__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-light), var(--champagne));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  transition: var(--transition);
}

.loja__card:hover .loja__icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  transform: scale(1.07);
}

/* Conteúdo */
.loja__card-content { flex: 1; min-width: 0; }

.loja__card-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .3rem;
  opacity: .8;
}

.loja__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .35rem;
}

.loja__card-text {
  font-size: .82rem;
  color: var(--brown-soft);
  font-weight: 300;
  line-height: 1.65;
}

.loja__card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--rose);
  margin-top: .65rem;
  transition: var(--transition);
  position: relative;
}

.loja__card-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width var(--transition);
}

.loja__card-link:hover::after { width: 100%; }
.loja__card-link:hover { gap: .55rem; }

.loja__card-link svg {
  transition: transform var(--transition);
}
.loja__card-link:hover svg { transform: translateX(3px); }

/* Chips de horário */
.loja__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .67rem;
  font-weight: 500;
  padding: .28rem .72rem;
  border-radius: 50px;
}

.chip--open {
  background: #f0faf3;
  border: 1px solid rgba(34,197,94,.2);
  color: #16a34a;
}

.chip--sat {
  background: #fef9f0;
  border: 1px solid rgba(234,179,8,.2);
  color: #ca8a04;
}

.chip--closed {
  background: #fff5f5;
  border: 1px solid rgba(224,90,115,.15);
  color: var(--rose);
}

/* ══ COLUNA DO MAPA ══ */
.loja__mapa-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .loja__mapa-col {
    position: sticky;
    top: 100px;
  }
}

/* Card do mapa */
.loja__mapa-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(224,90,115,.1);
  background: var(--champagne);
  position: relative;
}

/* Topo do card do mapa */
.mapa-header {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(224,90,115,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mapa-header__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.mapa-header__name svg { color: var(--rose); }

.mapa-header__addr {
  font-size: .75rem;
  color: var(--brown-soft);
  font-weight: 300;
  margin-top: .15rem;
}

.mapa-header__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #f0faf3;
  border: 1px solid rgba(34,197,94,.2);
  color: #16a34a;
  font-size: .68rem;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: 50px;
  flex-shrink: 0;
}

.mapa-header__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

/* iframe do mapa */
.mapa-iframe-wrap {
  height: 280px;
  position: relative;
}

@media (min-width: 480px) { .mapa-iframe-wrap { height: 320px; } }
@media (min-width: 768px) { .mapa-iframe-wrap { height: 360px; } }

.mapa-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer do mapa */
.mapa-footer {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid rgba(224,90,115,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.mapa-footer__dist {
  font-size: .75rem;
  color: var(--brown-soft);
  font-weight: 300;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224,90,115,.3);
}

.btn-maps:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,35,32,.2);
}

/* Card de ação rápida — WhatsApp */
.loja__action-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(37,211,102,.15);
  background: linear-gradient(135deg, #f0faf5, #e8f8f0);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.loja__action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,211,102,.3);
}

.action-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--transition);
}

.loja__action-card:hover .action-icon {
  transform: scale(1.08) rotate(-3deg);
}

.action-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .15rem;
}
.action-text span {
  font-size: .78rem;
  color: #16a34a;
  font-weight: 300;
}

.action-arrow {
  margin-left: auto;
  color: #16a34a;
  opacity: .5;
  transition: var(--transition);
}
.loja__action-card:hover .action-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Florezinha decorativa ── */
.loja__deco-flower {
  position: absolute;
  font-size: 7rem;
  opacity: .03;
  pointer-events: none;
  line-height: 1;
}
.loja__deco-flower--1 { bottom: 3rem; left: -1rem; transform: rotate(-15deg); }
.loja__deco-flower--2 { top: 4rem; right: -1rem; transform: rotate(20deg); font-size: 5rem; }

/* ══ ANIMAÇÃO DE ENTRADA ══ */
.loja__header,
.loja__info,
.loja__mapa-col {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.loja__mapa-col { transition-delay: .12s; }

.loja__header.visible,
.loja__info.visible,
.loja__mapa-col.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════ FOOTER ══════════════ */
.footer { padding: 3rem 0 2rem; background: var(--charcoal); }
@media (min-width: 768px) { .footer { padding: 4rem 0 2rem; } }
.footer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); align-items: start; }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2.5rem; } }
.footer__brand .logo-text { color: var(--white); }
.footer__brand .logo-text em { color: var(--rose); }
.footer__brand p { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: .4rem; font-weight: 300; }
.footer__address { font-size: .76rem !important; margin-top: .75rem !important; line-height: 1.7 !important; }
.footer__col h5, .footer__social-col h5 { font-family: var(--font-display); font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: .75rem; letter-spacing: .05em; text-transform: uppercase; font-size: .68rem; }
.footer__col p { font-size: .82rem; color: rgba(255,255,255,.4); font-weight: 300; line-height: 1.7; overflow-wrap: break-word; }
.footer__social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__social a:hover { background: var(--rose-deep); color: var(--white); transform: translateY(-3px); }
.footer__bottom { padding-top: 1.5rem; text-align: center; }
.footer__bottom p { font-size: .76rem; color: rgba(255,255,255,.25); font-weight: 300; line-height: 1.6; }

/* FAB */
.fab-wa { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 999; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.5); transition: var(--transition); animation: fabPop .6s 1.5s backwards; }
@media (min-width: 640px) { .fab-wa { bottom: 2rem; right: 2rem; width: 60px; height: 60px; } }
.fab-wa:hover { background: #1da856; transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.fab-wa::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: fabRing 2s ease-in-out infinite; }

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes scrollPulse { 0%, 100% { opacity: .5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.7); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes fabPop { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
@keyframes fabRing { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: .6; transform: scale(1.15); } }
