/* ============================================================
   COPACABANA BAKERY — design tokens + public site styles
   ============================================================ */

:root {
  --paper:        #FAF3E5;
  --paper-2:      #F4E8D0;
  --cream-card:   #FFFBF2;
  --brown-900:    #2A1C10;
  --brown-800:    #3B2817;
  --brown-700:    #57401F;
  --brown-600:    #6E5230;
  --mustard:      #C6871C;
  --mustard-deep: #A66B0F;
  --gold:         #E7A92A;
  --gold-soft:    #F0C45E;
  --olive:        #5C6536;
  --olive-deep:   #424A26;
  --olive-soft:   #889056;
  --line:         rgba(42, 28, 16, 0.14);
  --line-strong:  rgba(42, 28, 16, 0.28);
  --font-display: "Gloock", Georgia, "Times New Roman", serif;
  --font-serif:   "Newsreader", Georgia, serif;
  --font-sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 10px rgba(42,28,16,.08);
  --shadow-md: 0 10px 34px rgba(42,28,16,.14);
  --shadow-lg: 0 26px 70px rgba(42,28,16,.22);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--brown-900);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* ---- Typographic helpers ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--mustard); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; }
.section-title { font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); margin: 14px 0 10px; letter-spacing: -0.01em; }
.section-desc { max-width: 56ch; color: var(--brown-700); font-size: 17px; }

/* ============================================================ NAV */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(250, 243, 229, 0.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 12px clamp(20px, 5vw, 48px); display: flex; align-items: center; gap: 18px; }
.brand-mark { display: flex; flex-direction: column; line-height: .92; text-decoration: none; }
.brand-mark .b1 { font-family: var(--font-display); font-size: 26px; color: var(--mustard-deep); letter-spacing: -0.01em; }
.brand-mark .b2 { font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: .42em; text-transform: uppercase; color: var(--olive); padding-left: 2px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a { text-decoration: none; color: var(--brown-800); font-weight: 600; font-size: 15px; padding: 9px 14px; border-radius: 999px; transition: background .15s, color .15s; }
.nav-links a:hover { background: var(--paper-2); }
.lang-toggle { display: inline-flex; border: 1.5px solid var(--line-strong); border-radius: 999px; overflow: hidden; background: var(--cream-card); }
.lang-toggle button { border: 0; background: transparent; padding: 7px 12px; font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--brown-600); }
.lang-toggle button.active { background: var(--brown-900); color: var(--gold-soft); }
.nav-burger { display: none; margin-left: auto; background: transparent; border: 1.5px solid var(--line-strong); border-radius: 12px; width: 44px; height: 40px; align-items: center; justify-content: center; }
.nav-burger span { display:block; width: 20px; height: 2px; background: var(--brown-800); position: relative; }
.nav-burger span::before, .nav-burger span::after { content:""; position:absolute; left:0; width:20px; height:2px; background: var(--brown-800); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.mobile-menu { display: none; }
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu.open { display: flex; flex-direction: column; gap: 2px; padding: 8px clamp(20px,5vw,48px) 16px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .mobile-menu a { text-decoration: none; color: var(--brown-800); font-weight: 600; padding: 12px 6px; border-bottom: 1px solid var(--line); }
}

/* ============================================================ HERO */
.hero { background: radial-gradient(120% 90% at 85% 0%, #4a3018 0%, transparent 55%), var(--brown-900); color: var(--paper); position: relative; overflow: hidden; }
.hero-grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 70px); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-eyebrow { color: var(--gold-soft); }
.hero h1 { font-size: clamp(52px, 9vw, 104px); margin: 18px 0 6px; color: var(--paper); letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--gold); }
.hero .bakery-tag { font-family: var(--font-sans); font-weight: 800; font-size: clamp(13px, 1.6vw, 16px); letter-spacing: .5em; text-transform: uppercase; color: var(--olive-soft); margin-bottom: 22px; }
.hero .slogan { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(22px, 3vw, 31px); line-height: 1.25; color: #f3e3c4; max-width: 22ch; margin: 0 0 16px; }
.hero .hero-desc { color: #d8c4a4; max-width: 44ch; margin: 0 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 16px; border: 0; transition: transform .12s ease, box-shadow .15s ease, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--brown-900); box-shadow: 0 10px 26px rgba(231,169,42,.34); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(250,243,229,.32); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; background: rgba(250,243,229,.07); border: 1px solid rgba(250,243,229,.16); padding: 9px 16px 9px 13px; border-radius: 999px; font-size: 14px; font-weight: 600; color: #e9d9bb; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; }
.status-dot.open { background: #8fc06a; box-shadow: 0 0 0 4px rgba(143,192,106,.22); }
.status-dot.closed { background: #d98a5a; box-shadow: 0 0 0 4px rgba(217,138,90,.22); }
.status-pill .sep { opacity: .4; }
.status-pill .hrs { color: #c9b390; font-weight: 500; }
.arch { border-radius: 50% 50% 18px 18px / 32% 32% 6px 6px; overflow: hidden; background: linear-gradient(135deg, #5a4226, #3b2817); box-shadow: var(--shadow-lg); position: relative; }
.arch.framed { border: 8px solid var(--mustard); }
.hero-photo { width: 100%; max-width: 400px; margin-left: auto; }
.hero-photo .arch { width: 100%; aspect-ratio: 3/4; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-photo { max-width: 360px; margin: 6px auto 0; } }

/* ============================================================ PAPEL PICADO */
.papel { height: 34px; background: radial-gradient(circle at 14px 0, transparent 11px, var(--mustard) 12px) 0 0 / 28px 18px repeat-x; background-color: transparent; position: relative; }
.papel-band { background: var(--brown-900); }
.papel-band .papel { background: radial-gradient(circle at 14px 0, var(--brown-900) 11px, var(--gold) 12px) 0 0 / 28px 18px repeat-x; }

/* ============================================================ SECTION */
section { scroll-margin-top: 84px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }

/* ---- Novedades ---- */
.section-novedades { background: var(--paper-2); }
.nov-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(248px, 1fr); gap: 22px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.nov-card { scroll-snap-align: start; }
.nov-card .arch-sm { border-radius: 46% 46% 14px 14px / 28% 28% 5px 5px; overflow: hidden; position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg,#e6d4b2,#d8c096); box-shadow: var(--shadow-sm); }
.nov-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 16px; }
.nov-meta h3 { font-size: 23px; }
.nov-card p { color: var(--brown-700); font-size: 15px; margin: 4px 0 0; }
.price-tag { font-family: var(--font-sans); font-weight: 800; color: var(--mustard-deep); font-size: 18px; white-space: nowrap; }
.badge-new { display: inline-flex; align-items: center; gap: 6px; background: var(--olive); color: #f3eecb; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }

/* ============================================================ MENU */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.tab { border: 1.5px solid var(--line-strong); background: var(--cream-card); color: var(--brown-800); font-weight: 700; font-size: 15px; padding: 10px 18px; border-radius: 999px; transition: all .15s; }
.tab:hover { border-color: var(--mustard); }
.tab.active { background: var(--brown-900); color: var(--gold-soft); border-color: var(--brown-900); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 48px; }
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center; padding: 16px 6px; border-bottom: 1px solid var(--line); }
.menu-thumb { width: 64px; height: 64px; border-radius: 16px; overflow: hidden; position: relative; background: linear-gradient(135deg,#ecdcbb,#ddc89e); box-shadow: var(--shadow-sm); }
.menu-item .mi-name { font-family: var(--font-display); font-size: 21px; display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
.menu-item .mi-desc { color: var(--brown-700); font-size: 14.5px; margin-top: 2px; }
.menu-item .price-tag { font-size: 19px; }
.badge-new.sm { font-size: 9.5px; padding: 3px 8px; }

/* ============================================================ MENU TEASER */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card { display: flex; align-items: center; gap: 4px; text-decoration: none; background: var(--cream-card); border: 1.5px solid var(--line-strong); border-radius: 16px; padding: 22px 22px; transition: transform .14s ease, border-color .14s, box-shadow .14s; position: relative; }
.cat-card:hover { transform: translateY(-3px); border-color: var(--mustard); box-shadow: var(--shadow-md); }
.cat-name { font-family: var(--font-display); font-size: 24px; color: var(--brown-900); line-height: 1.1; }
.cat-count { font-family: var(--font-sans); font-weight: 700; font-size: 13px; color: var(--olive); position: absolute; left: 22px; bottom: 14px; }
.cat-card { padding-bottom: 40px; flex-direction: column; align-items: flex-start; gap: 6px; }
.cat-arrow { position: absolute; top: 18px; right: 20px; color: var(--mustard); font-size: 20px; font-weight: 700; transition: transform .14s ease; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }
.menu-teaser-cta { text-align: center; margin-top: 38px; }
.menu-teaser-cta .btn { font-size: 18px; padding: 16px 32px; }

/* ============================================================ FULL MENU PAGE */
.menu-hero { background: radial-gradient(120% 90% at 85% 0%, #4a3018 0%, transparent 55%), var(--brown-900); color: var(--paper); padding: clamp(40px, 6vw, 72px) 0 clamp(34px, 5vw, 52px); }
.menu-hero h1 { font-size: clamp(40px, 7vw, 76px); color: var(--paper); margin: 16px 0 12px; letter-spacing: -0.02em; }
.menu-hero p { color: #d8c4a4; max-width: 52ch; font-size: 17px; margin: 0; }
.cat-bar { position: sticky; top: 0; z-index: 40; background: rgba(250,243,229,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.cat-bar-inner { display: flex; gap: 8px; overflow-x: auto; padding: 12px clamp(20px,5vw,48px); scrollbar-width: none; }
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill { flex: none; border: 1.5px solid var(--line-strong); background: var(--cream-card); color: var(--brown-800); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; transition: all .15s; white-space: nowrap; }
.cat-pill:hover { border-color: var(--mustard); }
.cat-pill.active { background: var(--brown-900); color: var(--gold-soft); border-color: var(--brown-900); }
.menu-main { padding: clamp(34px, 5vw, 56px) 0 clamp(48px, 7vw, 80px); }
.menu-cat { padding: 26px 0; scroll-margin-top: 130px; }
.menu-cat-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; border-bottom: 2px solid var(--line); padding-bottom: 12px; }
.menu-cat-head h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); margin: 0; }
.menu-cat-count { font-weight: 700; font-size: 14px; color: var(--olive); }
.big-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.big-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; }
.big-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.big-photo { position: relative; width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #ecdcbb, #d8c096); }
.big-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.big-body { padding: 16px 18px 20px; }
.big-body h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 6px; line-height: 1.1; }
.big-body p { color: var(--brown-700); font-size: 14.5px; line-height: 1.5; margin: 0; }
.menu-back-mobile { display: none; }
@media (max-width: 1040px) { .menu-back-mobile { display: inline-flex; margin-left: auto; text-decoration: none; color: var(--brown-800); font-weight: 700; font-size: 14px; border: 1.5px solid var(--line-strong); padding: 8px 14px; border-radius: 999px; } }

/* ============================================================ QR / CUSTOM CAKES */
.section-qr { background: var(--olive-deep); color: var(--paper); }
.qr-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 820px) { .qr-grid { grid-template-columns: 1fr; } }
.qr-grid .eyebrow { color: var(--gold-soft); }
.qr-grid .eyebrow::before { background: var(--gold); }
.qr-grid h2 { color: var(--paper); font-size: clamp(34px, 5vw, 54px); margin: 14px 0 14px; }
.qr-grid .section-desc { color: #e3e0c2; }
.qr-steps { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.qr-steps li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: #eef0d6; }
.qr-steps .num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--olive-deep); font-weight: 800; display: grid; place-items: center; font-size: 15px; }
.qr-card { background: var(--cream-card); border-radius: 24px; padding: 26px; box-shadow: var(--shadow-lg); text-align: center; color: var(--brown-900); }
.qr-slot { width: 100%; aspect-ratio: 1; border-radius: 16px; background: repeating-linear-gradient(45deg, #efe6d2, #efe6d2 9px, #e7dcc2 9px, #e7dcc2 18px); border: 2px dashed var(--line-strong); display: grid; place-items: center; padding: 20px; box-sizing: border-box; }
.qr-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.qr-label { font-weight: 700; margin-top: 16px; font-size: 15px; }
.qr-sub { color: var(--brown-700); font-size: 14px; margin-top: 4px; }
.qr-phone { font-family: var(--font-display); font-size: 24px; color: var(--mustard-deep); margin-top: 2px; display: block; text-decoration: none; }

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-blocks { display: grid; gap: 26px; }
.contact-block .clabel { font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.contact-block .cval { font-family: var(--font-display); font-size: 24px; color: var(--brown-900); text-decoration: none; display: block; }
.contact-block a.cval:hover { color: var(--mustard-deep); }
.hours-table { display: grid; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.hours-row.is-today { font-weight: 700; }
.hours-row.is-today .hr-day::after { content: " · " attr(data-today); color: var(--mustard-deep); font-weight: 800; font-size: 12px; letter-spacing: .1em; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; background: var(--cream-card); border: 1.5px solid var(--line-strong); padding: 12px 18px; border-radius: 14px; font-weight: 700; color: var(--brown-800); transition: all .15s; }
.social-btn:hover { border-color: var(--mustard); color: var(--mustard-deep); transform: translateY(-2px); }
.social-btn .glyph { font-weight: 800; font-size: 15px; }
.map-slot { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); position: relative; background: repeating-linear-gradient(45deg, #e9dcc0, #e9dcc0 10px, #e1d2b1 10px, #e1d2b1 20px); }
.map-slot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================ FOOTER */
.footer { background: var(--brown-900); color: var(--paper); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px,6vw,64px) clamp(20px,5vw,48px) 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer .brand-mark .b1 { color: var(--gold); font-size: 34px; }
.footer .brand-mark .b2 { color: var(--olive-soft); }
.footer .f-tag { color: #cdb88f; max-width: 36ch; margin-top: 14px; font-family: var(--font-serif); font-style: italic; font-size: 18px; }
.footer h4 { font-family: var(--font-sans); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin: 4px 0 14px; }
.footer .f-col a, .footer .f-col span { display: block; color: #ddcba6; text-decoration: none; padding: 5px 0; }
.footer .f-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(250,243,229,.12); padding: 18px clamp(20px,5vw,48px); max-width: var(--maxw); margin: 0 auto; display:flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #b59f78; }

/* ---- Novedades floating badge ---- */
.badge-new.floating { position: absolute; top: 12px; left: 12px; box-shadow: 0 4px 12px rgba(42,28,16,.28); }

/* ============================================================ REVIEWS */
.section-reviews { background: var(--paper-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; }
.review-text { color: var(--brown-800); font-size: 15.5px; line-height: 1.55; flex: 1; margin: 0; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--olive); color: #f3eecb; font-weight: 800; display: grid; place-items: center; flex: none; }
.review-name { font-weight: 700; flex: 1; }
.review-g { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); color: #4285F4; font-size: 13px; flex: none; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ============================================================ ABOUT */
.section-about { background: var(--brown-900); color: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.section-about .section-title { color: var(--paper); }
.about-p { color: #d8c4a4; max-width: 52ch; margin: 0 0 16px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
@media (max-width: 520px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { background: rgba(250,243,229,.06); border: 1px solid rgba(250,243,229,.14); border-radius: 16px; padding: 18px 20px; }
.mv-label { font-family: var(--font-sans); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.mv-card p { margin: 0; color: #e3d4b6; font-size: 15px; line-height: 1.5; }
.about-photo .arch { width: 100%; aspect-ratio: 4/5; }
.about-photo { max-width: 420px; margin: 0 auto; width: 100%; }

/* ============================================================ CATALOG */
.section-catalog { background: var(--paper); }
.catalog-head { text-align: center; }
.catalog-head .eyebrow { justify-content: center; }
.catalog-head .section-desc { margin-left: auto; margin-right: auto; font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2.2vw, 22px); color: var(--olive-deep); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
@media (max-width: 760px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.catalog-cell { position: relative; aspect-ratio: 1; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #ecdcbb, #ddc89e); box-shadow: var(--shadow-sm); border: 3px solid var(--cream-card); transition: transform .18s ease, box-shadow .18s ease; }
.catalog-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.catalog-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalog-foot { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.catalog-highlight { display: inline-flex; align-items: center; gap: 16px; background: var(--brown-900); color: var(--paper); padding: 16px 26px; border-radius: 999px; box-shadow: var(--shadow-md); }
.catalog-highlight .ch-num { font-family: var(--font-display); font-size: 30px; color: var(--gold); line-height: 1; }
.catalog-highlight .ch-text { font-weight: 600; font-size: clamp(15px, 2vw, 18px); }
.catalog-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-ic { font-size: 18px; line-height: 1; }
.btn-wa { background: var(--olive); color: #f3eecb; box-shadow: 0 10px 26px rgba(92,101,54,.32); }
.btn-wa:hover { background: var(--olive-deep); }

/* ============================================================ WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================ REVEAL */
.reveal { opacity: 1; transform: none; transition: transform .6s ease; }
@media print { .reveal { transform: none !important; } }
