/* ============================================================
   GUIA ATS — main.css v2.0
   Premium business portal for Atlântida Sul
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --navy:       #12304A;
  --navy-dark:  #0d2236;
  --navy-light: #1a4060;
  --red:        #E30613;
  --red-dark:   #b80510;
  --sand:       #F5EFE5;
  --sand-dark:  #EDE4D5;
  --white:      #FFFFFF;
  --text:       #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border:     rgba(0,0,0,.07);
  --shadow-xs:  0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:  0 4px 12px rgba(0,0,0,.06);
  --shadow:     0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.10);
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: .2s ease;
  --container:  1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.guia-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; } /* Montserrat SemiBold */
h3 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.7; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow-xs);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  min-height: 44px;
  padding: 0 20px;
  gap: 6px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}
.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

/* ── Section header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin-inline: auto; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img { height: 40px; width: auto; }
.site-logo__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__list li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav__list li a:hover {
  color: var(--navy);
  background: var(--sand);
}
.site-header__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-header__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.site-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hp-hero {
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  padding: 100px 0 130px;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,47,.20) 0%,
    rgba(10,22,47,.60) 38%,
    rgba(10,22,47,.90) 65%,
    rgba(10,22,47,.95) 100%
  );
  pointer-events: none;
}
.hp-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
/* Content: lado direito sobre o céu */
.hp-hero__content {
  color: var(--white);
  max-width: 560px;
  width: 100%;
}
.hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.hp-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.hp-hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}
.hp-hero__content h1 em {
  font-style: normal;
  color: #FCA5A5;
}
.hp-hero__content > p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.65;
}
/* Search */
.hp-search {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  margin-bottom: 28px;
}
.hp-search input[type="search"] {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  border: none;
  outline: none;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.hp-search input[type="search"]::placeholder { color: var(--text-light); }
.hp-search button {
  background: var(--navy);
  color: var(--white);
  padding: 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
  white-space: nowrap;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-search button:hover { background: var(--red); }
.hp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Hero Stats bar ───────────────────────────────────────── */
.hp-stats {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.hp-stats__inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 24px;
}
.hp-stats__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 32px;
}
.hp-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hp-stats__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hp-stats__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hp-stats__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   VALORIZE / ABOUT
   ═══════════════════════════════════════════════════════════ */
.hp-about {
  padding: 100px 0;
  background: var(--white);
}
.hp-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.hp-about__card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}
.hp-about__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.hp-about__icon {
  width: 60px;
  height: 60px;
  background: var(--sand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
  transition: all var(--transition);
}
.hp-about__card:hover .hp-about__icon {
  background: var(--navy);
  color: var(--white);
}
.hp-about__card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1rem;
}
.hp-about__card p { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════ */
.hp-cats {
  padding: 100px 0;
  background: var(--sand);
}
.hp-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
.hp-cats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  text-align: center;
}
.hp-cats__card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hp-cats__icon {
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}
.hp-cats__card:hover .hp-cats__icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.hp-cats__card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.hp-cats__footer {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED EMPRESAS
   ═══════════════════════════════════════════════════════════ */
.hp-featured {
  padding: 100px 0;
  background: var(--white);
}
.hp-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.empresa-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.empresa-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.empresa-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.empresa-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.empresa-card__img-placeholder {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  opacity: .5;
}
.empresa-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.empresa-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.empresa-card__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.empresa-card__body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}
.empresa-card__body h3 a { color: inherit; }
.empresa-card__body h3 a:hover { color: var(--red); }
.empresa-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.empresa-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(245,239,229,.3);
}
.empresa-card__ver {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.empresa-card__ver:hover { gap: 8px; color: var(--red); }
.hp-featured__footer { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════ */
.hp-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 90% 50%, rgba(227,6,19,.15) 0%, transparent 60%);
}
.hp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hp-cta__text h2 { color: var(--white); margin-bottom: 8px; font-size: 1.75rem; }
.hp-cta__text p { color: rgba(255,255,255,.7); font-size: 16px; }
.hp-cta__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   GUIA STRIP (PDF Download)
   ═══════════════════════════════════════════════════════════ */
.hp-guia {
  padding: 80px 0;
  background: var(--sand);
}
.hp-guia__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hp-guia__img {
  flex-shrink: 0;
  width: 180px;
}
.hp-guia__img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hp-guia__content { flex: 1; }
.hp-guia__content .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.hp-guia__content h2 {
  color: var(--navy);
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.hp-guia__content p { margin-bottom: 24px; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
}
.site-footer__main {
  padding: 64px 0 48px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer__brand .site-logo__text {
  color: var(--white);
  font-size: 17px;
}
.site-footer__brand a.custom-logo-link { display: inline-block; line-height: 0; }
.site-footer__brand img { height: 36px; width: auto; max-width: 180px; object-fit: contain; }
.site-footer__tagline {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.site-footer__social a:hover {
  background: var(--red);
  color: var(--white);
}
.site-footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--white); }
.site-footer__contact { display: flex; flex-direction: column; gap: 14px; }
.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.site-footer__contact a:hover { color: var(--white); }
.site-footer__whats-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition) !important;
  margin-top: 4px;
}
.site-footer__whats-btn:hover { background: #1ebe5a !important; }
.site-footer__copy {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer__copy p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.site-footer__copy a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.site-footer__copy a:hover { color: var(--white); }
.site-footer__rdv {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.site-footer__rdv a { color: rgba(255,255,255,.5); }
.site-footer__rdv a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   SINGLE EMPRESA (page individual)
   ═══════════════════════════════════════════════════════════ */
.empresa-single {
  padding: 60px 0 100px;
}
.empresa-single__header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0;
  color: var(--white);
  margin-bottom: 60px;
}
.empresa-single__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.empresa-single__breadcrumb a { color: rgba(255,255,255,.6); }
.empresa-single__breadcrumb a:hover { color: var(--white); }
.empresa-single__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  display: block;
}
.empresa-single__header h1 { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   ARCHIVE EMPRESAS
   ═══════════════════════════════════════════════════════════ */
.archive-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0;
  text-align: center;
}
.archive-header h1 { color: var(--white); font-size: clamp(1.75rem,3vw,2.5rem); }
.archive-header p { color: rgba(255,255,255,.7); margin-top: 10px; }

/* Archive search form */
.archive-search {
  display: inline-flex;
  margin-top: 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.archive-search input[type="search"] {
  padding: 14px 20px;
  font-size: 15px;
  border: none;
  outline: none;
  width: 320px;
  max-width: 55vw;
  color: var(--text);
}
.archive-search button {
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.archive-search button:hover { background: var(--red-dark); }

/* Archive filter pills */
.archive-filter {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.archive-filter__inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.archive-filter__tag {
  padding: 7px 18px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}
.archive-filter__tag:hover,
.archive-filter__tag.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Archive body & grid */
.archive-body { padding: 60px 0 100px; }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pagination */
.archive-pagination { margin-top: 56px; text-align: center; }
.archive-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--navy); transition: all var(--transition);
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.archive-pagination .page-numbers.dots { border: none; }

/* Empty state */
.archive-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}
.archive-empty svg { margin: 0 auto 20px; color: var(--text-light); }
.archive-empty h3 { color: var(--navy); margin-bottom: 8px; }
.archive-empty a { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-about__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-cats__grid { grid-template-columns: repeat(3, 1fr); }
  .hp-featured__grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hp-cta__inner { flex-direction: column; text-align: center; }
  .hp-guia__inner { gap: 40px; }
}

@media (max-width: 768px) {
  .site-nav__toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    margin-left: 0;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .site-header__cta { display: none; }
  .site-header { position: relative; }

  .hp-hero { padding: 70px 0 100px; }
  .hp-hero__inner { justify-content: center; }
  .hp-hero__content { max-width: 100%; }

  .hp-stats__card { flex-wrap: wrap; gap: 20px; }
  .hp-stats__divider { display: none; }

  .hp-about__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-featured__grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }

  .hp-cta__btns { flex-direction: column; width: 100%; }
  .hp-cta__btns .btn { width: 100%; justify-content: center; }

  .hp-guia__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hp-guia__img { width: 140px; }

  .site-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__copy { flex-direction: column; text-align: center; }
  .hp-hero__btns { flex-direction: column; }
  .hp-hero__btns .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hp-about__grid { grid-template-columns: 1fr; }
  .hp-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats__card { padding: 20px 24px; }
}
