/* ============================================================
   MERKATUNO ES — Folha de estilos global
   Fonte: Montserrat (Google Fonts)
   Versão: 1.0 · Abril 2026
   ============================================================ */


/* ── 1. VARIÁVEIS DE MARCA ─────────────────────────────────── */
:root {
  /* Cores oficiais */
  --color-brand:      #32a3c4;   /* Azul Merkatuno (triângulo do logo) */
  --color-brand-dark: #2286a3;   /* Versão escura para hover */

  /* Neutros */
  --color-dark:  #131313;
  --color-mid:   #1e1e1e;
  --color-gray:  #5a5a5a;
  --color-light: #f5f5f5;
  --color-white: #ffffff;

  /* Tipografia */
  --font-main: 'Montserrat', sans-serif;

  /* Espaçamentos de secção */
  --section-padding:  80px 40px;
  --section-max-width: 1400px;

  /* Border-radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Sombras */
  --shadow-card:  0 2px 16px rgba(0, 0, 0, .07);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, .13);
  --shadow-brand: 0 8px 30px rgba(50, 163, 196, .18);
}


/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}


/* ── 3. UTILITÁRIOS ────────────────────────────────────────── */
.container {
  max-width: var(--section-max-width);
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.section--dark    { background: var(--color-dark); }
.section--light   { background: var(--color-light); }
.section--brand   { background: var(--color-brand); }
.section--white   { background: var(--color-white); }
.section--tinted  { background: #f0f6fb; }

/* Eyebrow (label acima do título) */
.eyebrow {
  display: block;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Títulos de secção */
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
}

.section-title--white { color: var(--color-white); }

.section-title span,
.section-title em {
  color: var(--color-brand);
  font-style: normal;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-gray);
  font-weight: 500;
  max-width: 560px;
  line-height: 1.7;
  margin-top: 14px;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, .7);
}

/* Cabeçalho de secção padrão */
.section-header {
  margin-bottom: 52px;
}

.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Link "ver tudo" */
.link-more {
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: gap .2s;
}

.link-more:hover { text-decoration: underline; }


/* ── 4. BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, border-color .2s;
}

.btn:hover { transform: translateY(-1px); }

/* Primário — fundo azul Merkatuno */
.btn--primary {
  background: var(--color-brand);
  color: var(--color-white);
  padding: 15px 34px;
}
.btn--primary:hover { background: var(--color-brand-dark); }

/* Outline escuro — borda branca translúcida (sobre fundo escuro) */
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, .4);
}
.btn--outline-light:hover { border-color: var(--color-white); }

/* Outline escuro — borda cinzenta (sobre fundo claro) */
.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid #ddd;
}
.btn--outline-dark:hover { border-color: var(--color-brand); color: var(--color-brand); }

/* Branco — para usar sobre fundo de cor */
.btn--white {
  background: var(--color-white);
  color: var(--color-brand);
}
.btn--white:hover { opacity: .92; }

/* Pequeno */
.btn--sm {
  font-size: 11px;
  padding: 10px 14px;
}


/* ── 5. BARRA TOPO ─────────────────────────────────────────── */
.topbar {
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
}

.topbar a {
  color: var(--color-white);
  opacity: .9;
}

.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar__sep { opacity: .5; }


/* ── 6. HEADER / NAVEGAÇÃO ─────────────────────────────────── */
.site-header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  transition: box-shadow .3s;
}

/* Estado ao fazer scroll — sombra para separar do conteúdo */
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.site-header__inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Altura inicial maior — encolhe ao fazer scroll */
  height: 96px;
  gap: 32px;
  transition: height .35s ease;
}

/* Altura compacta após scroll */
.site-header.is-scrolled .site-header__inner {
  height: 68px;
}

/* Logo também encolhe ligeiramente */
.site-logo__icon {
  height: 48px;
  width: auto;
  display: block;
  transition: height .35s ease;
}

.site-header.is-scrolled .site-logo__icon {
  height: 34px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo__text {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Nav principal */
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav__link {
  color: rgba(255, 255, 255, .82);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: var(--color-brand);
  color: var(--color-white);
}

/* Dropdown */
.site-nav__item {
  position: relative;
}

/* Chevron no item com dropdown */
.site-nav__item > .site-nav__link::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .7;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  /* Pequena seta decorativa */
  border-top: 3px solid var(--color-brand);
}

/* Ponte invisível para não perder o hover ao mover o rato */
.site-nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.site-nav__item:hover .site-nav__dropdown {
  display: block;
}

.site-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: background .15s, color .15s, padding-left .15s;
}

.site-nav__dropdown a:hover {
  background: rgba(50, 163, 196, .08);
  color: var(--color-brand);
  padding-left: 26px;
}

/* Ações do header (conta, carrinho) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-header__actions a {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}

.site-header__actions a:hover { color: var(--color-brand); }

.btn--cart {
  background: var(--color-brand);
  color: var(--color-white) !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background .2s !important;
}

.btn--cart:hover { background: var(--color-brand-dark) !important; }


/* ── 7. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, #0a1628 0%, #102040 40%, #0a2a3a 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(50, 163, 196, .15) 0%, transparent 70%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80&fit=crop') center/cover no-repeat;
  opacity: .5;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 100px 60px 60px;
  width: 100%;
}

.hero__eyebrow {
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: .02em;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero__title span { color: var(--color-brand); }

.hero__sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  padding: 28px 60px;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero__stats .stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.hero__stats .stat:last-child { border-right: none; }

/* Stat individual */
.stat {
  color: var(--color-white);
}

.stat__number {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.stat__number span { color: var(--color-brand); }

.stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: 4px;
}


/* ── 8. GRELHA DE CATEGORIAS ───────────────────────────────── */
.categories {
  background: var(--color-light);
  padding: 50px 40px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.cat-card__icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.cat-card__name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.cat-card__count {
  font-size: 11px;
  color: var(--color-gray);
  font-weight: 500;
  margin-top: 4px;
}


/* ── 9. BANNER WOODPLAY ────────────────────────────────────── */
.woodplay-banner {
  background: var(--color-dark);
  padding: 80px 40px;
}

.woodplay-banner__inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.woodplay-banner__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 40px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-row__text {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.feature-row__text strong { color: var(--color-white); }

.woodplay-banner__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a2a3a;
}

.woodplay-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ── 10. GRELHA DE PRODUTOS ────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.products-grid { grid-template-columns: repeat(3, 1fr); }

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card__img {
  aspect-ratio: 1 / 1;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__placeholder {
  font-size: 64px;
  opacity: .2;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-card__info {
  padding: 18px 20px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-card__tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  background: rgba(50, 163, 196, .1);
  border-radius: 20px;
  padding: 3px 10px;
}

.product-card__footer {
  padding: 10px 20px 18px;
  display: flex;
  gap: 8px;
}


/* ── 11. CARDS HORECA ──────────────────────────────────────── */
.horeca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.horeca-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.horeca-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
}

.horeca-card__img {
  height: 220px;
  background: var(--color-light);
  overflow: hidden;
}

.horeca-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horeca-card__body {
  padding: 24px 26px 28px;
}

.horeca-card__tag {
  display: inline-block;
  background: rgba(50, 163, 196, .1);
  color: var(--color-brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.horeca-card__title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.horeca-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.horeca-card__link {
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.horeca-card__link:hover { gap: 10px; }


/* ── 12. CARDS "POR QUÉ" ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.why-card {
  text-align: center;
  padding: 12px;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(50, 163, 196, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.why-card__title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.7;
}


/* ── 13. BANNER ORÇAMENTO ──────────────────────────────────── */
.budget-banner {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  padding: 64px 40px;
  text-align: center;
  color: var(--color-white);
}

.budget-banner h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.budget-banner p {
  font-size: 16px;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


/* ── 14. PRÉ-FOOTER CTA ─────────────────────────────────────── */
.prefooter-cta {
  background: var(--color-mid);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 64px 40px;
}

.prefooter-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.prefooter-cta__title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-top: 8px;
}

.prefooter-cta__title em {
  color: var(--color-brand);
  font-style: normal;
}

.prefooter-cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ── 15. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #0e0e0e;
  color: rgba(255, 255, 255, .5);
}

/* Brands strip */
.site-footer__brands {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 28px 40px;
}

.site-footer__brands-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer__brands-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__brands-list {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* Logo links */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  opacity: .45;
  transition: opacity .25s;
}

.brand-logo-link:hover {
  opacity: 1;
}

/* Converte logos coloridos para branco no fundo escuro */
.brand-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

/* GC é quadrado — tamanho ligeiramente menor */
.brand-logo--square {
  height: 32px;
}

/* Main grid */
.site-footer__grid {
  max-width: var(--section-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 40px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-footer__brand .site-logo {
  margin-bottom: 20px;
}

.site-footer__brand p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 270px;
  margin-bottom: 24px;
}

/* Social */
.site-footer__social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .4);
  transition: all .2s;
}

.social-link:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: rgba(50, 163, 196, .08);
}

.site-footer__col h4 {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  transition: color .2s;
}

.site-footer__col ul li a:hover { color: var(--color-brand); }

/* Certifications */
.site-footer__certs {
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-footer__certs-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .04em;
}

.cert-badge svg { opacity: .55; }

.cert-badge--portugal { color: rgba(255, 255, 255, .4); }

/* Bottom bar */
.site-footer__bottom {
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.site-footer__bottom a:hover { color: var(--color-brand); }


/* ── 15. GALERIA KIDUPLAY INDOOR ───────────────────────────── */
.kiduplay-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2.5rem;
}

.kiduplay-gallery__main {
  grid-row: 1 / 2;
}

.kiduplay-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  aspect-ratio: 16/9;
}

.kiduplay-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kiduplay-gallery__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}

.kiduplay-gallery__grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}


/* ── 16. RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid         { grid-template-columns: repeat(3, 1fr); }
  .cat-grid              { grid-template-columns: repeat(3, 1fr); }
  .woodplay-banner__inner { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__grid     { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand    { grid-column: 1 / -1; }
  .kiduplay-gallery      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 20px;
  }

  .site-header        { padding: 0 20px; }
  .site-nav           { display: none; }  /* mobile menu a implementar */
  .hero__content      { padding: 0 24px; }
  .hero__stats        { padding: 20px 16px; }
  .hero__stats .stat  { padding: 0 8px; }
  .stat__number       { font-size: 24px; }
  .categories         { padding: 40px 20px; }
  .products-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .horeca-grid        { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .kiduplay-gallery__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__brand { grid-column: auto; }
  .prefooter-cta      { padding: 48px 20px; }
  .prefooter-cta__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__brands { padding: 18px 20px; }
  .site-footer__certs  { padding: 16px 20px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .woodplay-banner    { padding: 60px 20px; }
  .budget-banner      { padding: 48px 20px; }
}
