/*! REDEIL - Renta de Iluminación | Custom Styles */

/* ==========================================================================
   Global overflow fix
   ========================================================================== */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
  /* Colors - Optimized for CTA Conversion */
  --color-primary: #ff5722;
  --color-primary-dark: #e64a19;
  --color-primary-light: #ff8a65;
  --color-secondary: #1a1a2e;
  --color-secondary-light: #16213e;
  --color-accent: #f4a261;
  --color-accent-light: #e9c46a;

  /* Neutrals */
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  --color-black: #000000;

  /* WhatsApp */
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;

  /* Typography */
  --font-primary: 'Montserrat', 'Montserrat Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Open Sans', 'Open Sans Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1400px;
  --container-padding: 1.5rem;

  /* Header */
  --header-height: 76px;
}

/* === directorio/index page === */
.dir-zonas {
  padding: 3rem 0;
  background: #f8f9fa;
}
.dir-zonas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.dir-zona-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
}
.dir-zona-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}
.dir-zona-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.dir-zona-card__overlay h3 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.dir-zona-card__count {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-light, #ff8a65);
  margin: 0 0 0.35rem;
}
.dir-zona-card__desc {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0 0 0.75rem;
}
.dir-zona-card__cta {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary, #ff5722);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s;
}
.dir-zona-card:hover .dir-zona-card__cta {
  background: var(--color-primary-dark, #e64a19);
}
.dir-main {
  padding: 3rem 0;
  background: #fff;
}
.dir-main__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.dir-main__header {
  margin-bottom: 2rem;
}
.dir-main__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 1rem;
}
.dir-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.dir-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 100px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.dir-pill:hover {
  border-color: var(--color-primary, #ff5722);
  color: var(--color-primary, #ff5722);
}
.dir-pill--active {
  background: var(--color-primary, #ff5722);
  border-color: var(--color-primary, #ff5722);
  color: #fff;
}
.dir-pill__count {
  font-size: 0.7rem;
  opacity: 0.7;
}
.dir-pill--active .dir-pill__count {
  opacity: 0.9;
}
.dir-sidebar {
  position: sticky;
  top: calc(36px + 70px + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dir-sidebar__box {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.25rem;
}
.dir-sidebar__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary, #ff5722);
}
.dir-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dir-sidebar__item {
  border-bottom: 1px solid #f1f3f5;
}
.dir-sidebar__item:last-child {
  border-bottom: none;
}
.dir-sidebar__item a,
.dir-sidebar__cat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  text-decoration: none;
  color: #343a40;
  font-size: 0.875rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.15s;
}
.dir-sidebar__item a:hover,
.dir-sidebar__cat-btn:hover {
  color: var(--color-primary, #ff5722);
}
.dir-sidebar__name {
  font-weight: 600;
  flex: 1;
}
.dir-sidebar__meta {
  font-size: 0.75rem;
  color: #6c757d;
  flex-shrink: 0;
}
.dir-sidebar__item span {
  font-size: 0.75rem;
  color: #6c757d;
}
.dir-sidebar__cta {
  background: var(--color-secondary, #1a1a2e);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.dir-sidebar__cta h3 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.dir-sidebar__cta p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.dir-sidebar__cta .btn {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
}
.dir-sidebar__cta .btn:last-child {
  margin-bottom: 0;
}
.cta-section {
  background: var(--color-primary, #ff5722);
  padding: 3.5rem 0;
  color: #fff;
}
.cta-section h2 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--color-primary, #ff5722);
  border-color: #fff;
}
.cta-section .btn-primary:hover {
  background: #f0f0f0;
}
.cta-section .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
@media (max-width: 1200px) {
  .dir-main__layout {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }
}
@media (max-width: 960px) {
  .dir-main__layout {
    grid-template-columns: 1fr;
  }
  .dir-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .dir-zonas__grid {
    grid-template-columns: 1fr;
  }
  .dir-zona-card__overlay {
    padding: 1.25rem;
  }
  .dir-zonas {
    padding: 2rem 0;
  }
  .dir-main {
    padding: 2rem 0;
  }
}

/* === estado-de-mexico page === */
.dir-section {
  padding: 4rem 0;
  background: var(--c-bg, #FEFDFB);
}
.dir-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.dir-empty {
  text-align: center;
  color: var(--c-text-muted, #78716C);
  padding: 3rem 0;
  font-size: 1rem;
}
.dir-sidebar {
  position: sticky;
  top: calc(var(--header-height, 70px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dir-sidebar__card {
  background: #fff;
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: 12px;
  padding: 1.5rem;
}
.dir-sidebar__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-text, #1C1917);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border, #E7E0D8);
}
.dir-sidebar__cats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dir-sidebar__cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--c-text, #1C1917);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--c-border, #E7E0D8);
}
.dir-sidebar__cat:last-child {
  border-bottom: 0;
}
.dir-sidebar__cat--total .dir-sidebar__cat-name {
  font-weight: 700;
}
.dir-sidebar__cat-count {
  background: var(--color-primary, #ff5722);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 20px;
}
.dir-sidebar__empty {
  font-size: 0.875rem;
  color: var(--c-text-muted, #78716C);
  margin: 0;
  text-align: center;
}
.dir-sidebar__cta {
  background: var(--color-secondary, #1a1a2e);
  border-radius: 12px;
  padding: 1.5rem;
}
.dir-sidebar__cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.375rem;
}
.dir-sidebar__cta-title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.dir-sidebar__cta-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.dir-sidebar__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.dir-sidebar__servicios-link {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.dir-sidebar__servicios-link:hover {
  color: #fff;
}
.dir-sidebar__zona {
  background: #fff;
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: 12px;
  padding: 1.25rem;
}
.dir-sidebar__zona-label {
  font-size: 0.8125rem;
  color: var(--c-text-muted, #78716C);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.dir-sidebar__zona-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary, #ff5722);
  text-decoration: none;
}
.dir-sidebar__zona-link:hover {
  text-decoration: underline;
}
.dir-faq {
  padding: 4rem 0;
  background: var(--c-bg-alt, #F7F4F0);
}
.dir-faq .container {
  margin-bottom: 2.5rem;
}
.dir-cta {
  padding: 3rem 0;
  background: var(--c-bg, #FEFDFB);
}
.dir-cta__box {
  background: var(--color-secondary, #1a1a2e);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.dir-cta__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.dir-cta__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}
.dir-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.dir-cta__btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: var(--color-primary, #ff5722);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  text-align: center;
}
.dir-cta__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}
@media (max-width: 1024px) {
  .dir-layout {
    grid-template-columns: 1fr;
  }
  .dir-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .dir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dir-sidebar {
    grid-template-columns: 1fr;
  }
  .dir-cta__box {
    padding: 2rem 1.5rem;
  }
  .dir-cta__title { font-size: 1.125rem; }
}
@media (max-width: 640px) {
  .dir-grid { grid-template-columns: 1fr; }
  .dir-cta__btns { flex-direction: row; flex-wrap: wrap; }
}

/* === cdmx page === */
/* (Identical styles to estado-de-mexico, already covered above) */

/* === [...slug] page === */
.ficha-hero {
  background: var(--color-secondary, #1a1a2e);
  /* padding-top: header fijo (nav + crumbs ≈ header-height + ~2.25rem) + breathing room */
  padding: calc(var(--header-height, 76px) + 4.5rem) 0 2.5rem;
}
.ficha-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.ficha-hero__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--cat {
  background: var(--color-primary, #ff5722);
  color: #fff;
}
.badge--zona {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.ficha-hero__name {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 2.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.875rem;
  line-height: 1.15;
}
.ficha-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}
.ficha-stars { display: flex; gap: 2px; }
.star--full  { color: #F59E0B; }
.star--half  { color: #F59E0B; opacity: 0.65; }
.star--empty { color: rgba(255,255,255,0.25); }
.ficha-rating-val {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.ficha-resenas {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.ficha-hero__addr {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.ficha-hero__addr svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255,255,255,0.45);
}
.ficha-hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ficha-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ficha-hero__btn--phone {
  background: var(--color-primary, #ff5722);
  color: #fff;
}
.ficha-hero__btn--maps {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
/* ── Hero visual card (replaces old __desc text block) ── */
.ficha-hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
/* Rating top strip */
.ficha-hero__card-top {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ficha-hero__card-score-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ficha-hero__card-score {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 3rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
  letter-spacing: -1px;
}
.ficha-hero__card-score-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ficha-hero__card-score-detail .ficha-stars {
  gap: 3px;
}
.ficha-hero__card-score-detail .star--full  { color: #F59E0B; }
.ficha-hero__card-score-detail .star--empty { color: rgba(255,255,255,0.2); }
.ficha-hero__card-resenas {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
/* Details rows */
.ficha-hero__card-details {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ficha-hero__card-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
}
.ficha-hero__card-row svg {
  flex-shrink: 0;
  color: var(--color-primary, #ff5722);
}
/* Service chips */
.ficha-hero__card-chips {
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ficha-hero__chip {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
/* CTA WhatsApp */
.ficha-hero__card-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-fast, 150ms ease);
}
.ficha-hero__card-wa:hover {
  background: #128C7E;
}
/* ─── FICHA BODY ───────────────────────────────────────────────
   !important necesario: .container (posterior en el CSS) sobreescribe
   padding con shorthand "padding: 0 var(--container-padding)"
   ────────────────────────────────────────────────────────────── */
.ficha-body {
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
}
.ficha-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ─── TÍTULOS DE SECCIÓN con jerarquía clara ─── */
.ficha-section-title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-text, #1C1917);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-primary, #ff5722);
  letter-spacing: -0.02em;
}

/* ─── OVERRIDE: elimina el padding: 5rem global de <section> ─── */
.ficha-datos,
.ficha-servicios,
.ficha-descripcion,
.ficha-mapa {
  padding: 0;
}

/* ─── DATOS DE CONTACTO ─── */
.ficha-datos {
  margin-bottom: 2.5rem;
}
.ficha-datos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.ficha-datos__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.ficha-datos__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: var(--c-bg-alt, #F7F4F0);
  border-radius: 12px;
  border: 1px solid var(--c-border, #E7E0D8);
}
.ficha-datos__icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary, #ff5722);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ficha-datos__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted, #78716C);
  margin-bottom: 0.3rem;
}
.ficha-datos__val {
  display: block;
  font-size: 0.9375rem;
  color: var(--c-text, #1C1917);
  font-weight: 600;
  line-height: 1.4;
}
.ficha-datos__link {
  color: var(--color-primary, #ff5722);
  text-decoration: none;
  font-weight: 600;
}
.ficha-datos__link:hover {
  text-decoration: underline;
}

/* ─── SERVICIOS ─── */
.ficha-servicios {
  margin-bottom: 2.5rem;
}
.ficha-servicios__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ficha-servicios__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--c-text, #1C1917);
  padding: 0.75rem 1rem;
  background: var(--c-bg-alt, #F7F4F0);
  border-radius: 8px;
  border: 1px solid var(--c-border, #E7E0D8);
  font-weight: 500;
}
.ficha-servicios__item svg {
  flex-shrink: 0;
  color: var(--color-primary, #ff5722);
}

/* ─── DESCRIPCIÓN ─── */
.ficha-descripcion {
  margin-bottom: 2.5rem;
}
.prose :global(p) {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text, #1C1917);
  margin-bottom: 1.125rem;
}
.prose :global(h2),
.prose :global(h3) {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-weight: 700;
  color: var(--c-text, #1C1917);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

/* ─── MAPA ─── */
.ficha-mapa {
  margin-bottom: 0;
}
.ficha-mapa__embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border, #E7E0D8);
}
.ficha-mapa__embed iframe {
  display: block;
  width: 100%;
  height: 240px !important;
}
.ficha-mapa__addr {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--c-text-muted, #78716C);
  margin: 0.75rem 0 0;
}
.ficha-sidebar {
  position: sticky;
  top: calc(var(--header-height, 76px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

/* --- Contact card --- */
.ficha-sidebar__card {
  background: #fff;
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: 14px;
  padding: 1.375rem 1.5rem;
}
.ficha-sidebar__title {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-primary, #ff5722);
  margin: 0 0 0.875rem;
}
.ficha-sidebar__tel {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.7rem 1rem;
  background: var(--c-bg-alt, #F7F4F0);
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: 9px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-text, #1C1917);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: background 0.15s;
}
.ficha-sidebar__tel:hover { background: #ede9e4; }
.ficha-sidebar__tel svg {
  color: var(--color-primary, #ff5722);
  flex-shrink: 0;
}
.ficha-sidebar__maps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary, #ff5722);
  text-decoration: none;
}
.ficha-sidebar__maps:hover { text-decoration: underline; }

/* --- Dynamic services block --- */
.ficha-sidebar__servicios {
  background: var(--color-secondary, #1a1a2e);
  border-radius: 14px;
  padding: 1.375rem 1.5rem;
}
.ficha-sidebar__servicios-eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-primary, #ff5722);
  margin: 0 0 0.375rem;
}
.ficha-sidebar__servicios-title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.ficha-sidebar__servicios-list {
  list-style: none;
  margin: 0 0 1.125rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ficha-sidebar__servicios-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.ficha-sidebar__servicios-item:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
}
.ficha-sidebar__servicios-item svg {
  flex-shrink: 0;
  color: var(--color-primary, #ff5722);
}
.ficha-sidebar__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9px;
  transition: opacity 0.2s;
}
.ficha-sidebar__wa-btn:hover { opacity: 0.88; }

/* --- Zona link card --- */
.ficha-sidebar__zona {
  background: var(--c-bg-alt, #F7F4F0);
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: 12px;
  padding: 1.125rem 1.375rem;
  text-align: center;
}
.ficha-sidebar__zona-label {
  font-size: 0.8rem;
  color: var(--c-text-muted, #78716C);
  margin: 0 0 0.5rem;
}
.ficha-sidebar__zona-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  text-decoration: none;
}
.ficha-sidebar__zona-link:hover { color: var(--color-primary, #ff5722); }
.ficha-otras {
  background: var(--c-bg-alt, #F7F4F0);
  padding: 2.5rem 0;
}
.ficha-otras__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.ficha-otras__ver-mas {
  text-align: center;
  margin-top: 1.75rem;
}
.ficha-otras__btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-secondary, #1a1a2e);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}
.ficha-cta-rentar {
  padding: 3rem 0;
  background: var(--color-secondary, #1a1a2e);
}
.ficha-cta-rentar__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.ficha-cta-rentar__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.ficha-cta-rentar__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.ficha-cta-rentar__btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ficha-cta-rentar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}
.ficha-cta-rentar__btn--primary {
  background: var(--color-primary, #ff5722);
  color: #fff;
}
.ficha-cta-rentar__btn--wa {
  background: #25D366;
  color: #fff;
}
/* Reduce card image height in the ficha CTA section */
.ficha-cta-rentar__cards .sc__img {
  aspect-ratio: 16 / 9;
}
.ficha-cta-rentar__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ficha-faq {
  padding: 2.5rem 0;
  background: var(--c-bg, #FEFDFB);
}
.ficha-faq .container {
  margin-bottom: 1.5rem;
}
/* SectionHeader bottom padding dentro de secciones ficha */
.ficha-faq .sh,
.ficha-otras .sh,
.ficha-cta-rentar .sh {
  padding-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .ficha-otras__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .ficha-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ficha-layout {
    grid-template-columns: 1fr;
  }
  .ficha-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .ficha-cta-rentar__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ficha-hero__name { font-size: 1.625rem; }
  .ficha-datos__grid {
    grid-template-columns: 1fr;
  }
  .ficha-servicios__list {
    grid-template-columns: 1fr;
  }
  .ficha-sidebar {
    grid-template-columns: 1fr;
  }
  .ficha-otras__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ficha-hero { padding: calc(var(--header-height, 76px) + 4rem) 0 2rem; }
  .ficha-hero__name { font-size: 1.375rem; }
  .ficha-cta-rentar__title { font-size: 1.375rem; }
  .ficha-cta-rentar__cards { grid-template-columns: 1fr; }
  .ficha-otras__grid { grid-template-columns: 1fr; }
}

/* === zonas/index page === */
.zona-category {
  margin-bottom: 4rem;
}
.zona-category-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.zona-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-bg);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.zona-card:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.15);
}
.zona-card-content {
  flex: 1;
}
.zona-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
}
.zona-region {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0.25rem 0;
  font-weight: 600;
}
.zona-description {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0.75rem 0;
}
.zona-keyword {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
  margin: 0.5rem 0 0 0;
  font-style: italic;
}
.zona-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.zona-card:hover .zona-arrow {
  transform: translateX(4px);
}

/* === contacto page === */
.wizard-progress {
  margin-bottom: 1.5rem;
}
.wizard-progress__bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.wizard-progress__fill {
  height: 100%;
  background: #ff5722;
  border-radius: 99px;
  transition: width 0.3s ease;
}
.wizard-progress__label {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}
.wizard-step__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}
.wizard-step__hint {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
}
.wizard-event-types {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wizard-event-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.wizard-event-btn:hover,
.wizard-event-btn.selected {
  border-color: #ff5722;
  background: #fff8f6;
}
.wizard-event-btn__icon {
  font-size: 1.75rem;
  line-height: 1;
}
.wizard-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wizard-service-option {
  display: block;
  cursor: pointer;
}
.wizard-service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wizard-service-option__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  transition: border-color 0.2s, background 0.2s;
}
.wizard-service-option input:checked + .wizard-service-option__content {
  border-color: #ff5722;
  background: #fff8f6;
}
.wizard-service-option__icon {
  font-size: 1.5rem;
}
.wizard-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.wizard-phone-group {
  margin-bottom: 1.25rem;
}
.wizard-phone-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.wizard-phone-input:focus {
  border-color: #ff5722;
}
.btn-outline {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-outline:hover {
  border-color: #aaa;
}

/* === blog/index page === */
.blog-articles {
  padding: var(--space-12) 0;
  background: #fff;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2rem;
}
.blog-articles--alt {
  background: #f8f9fa;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
}
.article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.article-card__image-wrapper {
  overflow: hidden;
  height: 200px;
  background: #f0f0f0;
}
.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-card__content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex-grow: 1;
}
.article-card__category {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff5722;
  background: rgba(255, 87, 34, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.article-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  flex-grow: 1;
}
.article-card__description {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.article-card__link {
  display: inline-block;
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.article-card__link:hover {
  color: #c44d00;
}
.blog-cta {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
  padding: 4rem 0;
  color: #fff;
}
.blog-cta__inner {
  text-align: center;
  max-width: 600px;
}
.blog-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.blog-cta p {
  font-size: 1.0625rem;
  margin: 0 0 2rem;
  opacity: 0.95;
}
.blog-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-cta .btn-primary {
  background: #fff;
  color: #ff5722;
  border: 2px solid #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.blog-cta .btn-primary:hover {
  background: transparent;
  color: #fff;
}
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-articles {
    padding: 3rem 0;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-cta {
    padding: 2.5rem 0;
  }
  .blog-cta h2 {
    font-size: 1.5rem;
  }
  .blog-cta p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   BLOG INDEX + PAGINA — REDEIL Editorial Premium v2 (Apr 2026)
   ========================================================================== */

/* ── HERO EDITORIAL ───────────────────────────────────────────── */
.blog-hero {
  position: relative;
  background: linear-gradient(180deg, #0d1426 0%, #1a2440 60%, #1f2d52 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.blog-hero--compact {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.blog-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 18%, rgba(224,88,0,0.28) 0%, transparent 60%),
    radial-gradient(45% 55% at 12% 90%, rgba(247,168,93,0.16) 0%, transparent 60%),
    linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.04) 60%, transparent 80%);
}
.blog-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.blog-hero__inner {
  position: relative;
  z-index: 1;
}
.blog-hero__main {
  max-width: 880px;
}
.blog-hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0c094;
  margin-bottom: 1.5rem;
}
.blog-hero__overline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary, #ff5722);
  box-shadow: 0 0 0 4px rgba(224,88,0,0.18);
}
.blog-hero__h1 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  color: #fff;
}
.blog-hero__h1-accent {
  color: var(--color-primary, #ff5722);
  background: linear-gradient(120deg, #ff8a3d 0%, #ff5722 60%, #d44600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 0 2rem;
}
.blog-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 760px;
}
.blog-hero__stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.blog-hero__stat-value {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.blog-hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── FILTROS / PILLS ──────────────────────────────────────────── */
.blog-filters {
  padding: 1rem 0;
  background: #fff;
  border-bottom: 1px solid #eef0f3;
  position: sticky;
  top: calc(36px + 70px);
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.bf-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.bf-pills::-webkit-scrollbar { display: none; }
.bf-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.05rem;
  background: #f5f6f8;
  border: 1px solid #e7e9ec;
  border-radius: 100px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3d4453;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.bf-pill:hover {
  background: #fff;
  border-color: var(--color-primary, #ff5722);
  color: var(--color-primary, #ff5722);
}
.bf-pill--active {
  background: var(--color-secondary, #1a1a2e);
  border-color: var(--color-secondary, #1a1a2e);
  color: #fff;
}
.bf-pill--active:hover {
  background: var(--color-primary, #ff5722);
  border-color: var(--color-primary, #ff5722);
  color: #fff;
}
.bf-pill__count {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.05rem 0.45rem;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  min-width: 1.4rem;
  text-align: center;
}
.bf-pill--active .bf-pill__count {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── LAYOUT MAIN (content + sidebar) ──────────────────────────── */
.blog-main {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  background: #fafbfc;
}
.blog-main__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.75rem;
  align-items: start;
}
.blog-main__content { min-width: 0; }
.blog-main__sidebar {
  min-width: 0;
}

/* ── ARTÍCULO DESTACADO ───────────────────────────────────────── */
.bc-feat {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 22px -10px rgba(20,30,55,0.18);
}
.bc-feat__img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.bc-feat__img {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}
.bc-feat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bc-feat__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary, #ff5722);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 6px 16px -6px rgba(224,88,0,0.6);
}
.bc-feat__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bc-feat__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.bc-feat__cat {
  text-transform: uppercase;
  color: var(--color-primary, #ff5722);
  letter-spacing: 0.08em;
}
.bc-feat__sep { color: #cdd2d8; }
.bc-feat__read { color: #6c757d; font-weight: 500; }
.bc-feat__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.bc-feat__title a {
  text-decoration: none;
  color: inherit;
}
.bc-feat__title a:hover {
  color: var(--color-primary, #ff5722);
}
.bc-feat__desc {
  font-size: 1rem;
  color: #4d5562;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.bc-feat__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bc-feat__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-secondary, #1a1a2e);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bc-feat__cta:hover {
  background: var(--color-primary, #ff5722);
  color: #fff;
  transform: translateX(2px);
}
.bc-feat__cta svg { transition: transform 0.2s ease; }
.bc-feat__cta:hover svg { transform: translateX(2px); }
.bc-feat__author {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── HEADER DE LISTADO ────────────────────────────────────────── */
.blog-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e7eaee;
}
.blog-section-head__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--color-secondary, #1a1a2e);
  margin: 0;
  letter-spacing: -0.01em;
}
.blog-section-head__sub {
  font-size: 0.8125rem;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}

/* ── GRID DE TARJETAS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}
.bc {
  background: #fff;
  border: 1px solid #e7eaee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bc__img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.bc__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #f1f2f4;
}
.bc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bc__cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(26,26,46,0.92);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.bc__body {
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bc__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b919a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.bc__sep { color: #d4d8dd; }
.bc__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 0.65rem;
  line-height: 1.32;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc__title a { text-decoration: none; color: inherit; }
.bc__title a:hover { color: var(--color-primary, #ff5722); }
.bc__desc {
  font-size: 0.875rem;
  color: #5a6270;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc__link {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary, #ff5722);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}
.bc__link:hover { color: var(--color-secondary, #1a1a2e); }

/* ── PAGINACIÓN ───────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination__prev,
.pagination__next {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pagination__prev:hover,
.pagination__next:hover {
  background: var(--color-secondary, #1a1a2e);
  border-color: var(--color-secondary, #1a1a2e);
  color: #fff;
}
.pagination__pages {
  display: flex;
  gap: 0.35rem;
}
.pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.5rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  text-decoration: none;
  color: #495057;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pagination__page--active {
  background: var(--color-primary, #ff5722);
  border-color: var(--color-primary, #ff5722);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(224,88,0,0.5);
}
.pagination__page:not(.pagination__page--active):hover {
  border-color: var(--color-primary, #ff5722);
  color: var(--color-primary, #ff5722);
}

/* ── CTA FINAL ────────────────────────────────────────────────── */
.blog-cta-final {
  background: linear-gradient(135deg, #d54600 0%, #ff5722 50%, #ff7a45 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.blog-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(35% 50% at 0% 100%, rgba(0,0,0,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.blog-cta-final__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-cta-final__badge {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 100px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.blog-cta-final h2 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
  line-height: 1.18;
}
.blog-cta-final p {
  color: rgba(255,255,255,0.92);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 2rem;
}
.blog-cta-final__btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-cta-final .btn-primary {
  background: #fff;
  color: var(--color-primary, #ff5722);
  border-color: #fff;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.35);
}
.blog-cta-final .btn-primary:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.blog-cta-final .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.blog-cta-final .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary, #ff5722);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .blog-main__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .bc-feat { grid-template-columns: 1fr; }
  .bc-feat__img { min-height: 220px; aspect-ratio: 16 / 9; }
  .blog-hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .blog-main__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .blog-hero__stat { padding: 0.85rem 0.95rem; }
  .blog-section-head { flex-direction: column; align-items: flex-start; }
  .pagination { gap: 0.4rem; }
  .pagination__page { min-width: 2.1rem; height: 2.1rem; font-size: 0.8125rem; }
}
@media (max-width: 480px) {
  .bc-feat__actions { flex-direction: column; align-items: flex-start; }
  .blog-cta-final__btns { flex-direction: column; }
  .blog-cta-final__btns .btn { width: 100%; }
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  font-size-adjust: 0.5352;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  font-size-adjust: 0.517;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  color: var(--color-secondary);
}

h1 { font-size: var(--text-4xl); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); font-weight: 700; }
h4 { font-size: var(--text-xl); font-weight: 700; }
h5 { font-size: var(--text-lg); font-weight: 600; }

p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  z-index: 100;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,0.12));
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--topbar-height, 36px) + var(--header-height, 100px) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
  background: var(--color-secondary, #1a1a2e);
}

.hero-two-columns .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-two-columns .hero-content {
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-two-columns .hero-ctas {
  justify-content: flex-start;
}

.hero-two-columns .hero-stats {
  justify-content: flex-start;
}

.hero-intro p {
  color: var(--color-gray-300);
  font-size: var(--text-base);
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.hero-intro p:last-child {
  margin-bottom: 0;
}

.hero-intro strong {
  color: var(--color-white);
}

.hero-background {
  display: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  color: var(--color-gray-300);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 87, 34, 0.15);
  color: var(--color-primary-light);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-stat__value {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat__label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Page (Internal Pages) */

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.feature-icon svg {
  color: var(--color-white);
}

.feature-card h3 {
  font-size: var(--text-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ==========================================================================
   Featured Service Section (Two Columns)
   ========================================================================== */

@media (max-width: 768px) {

}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-section .btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}

.cta-section .btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.cta-section .btn-primary {
  background: #fff;
  color: #ff5722;
  border: 2px solid #fff;
}

.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-4);
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

/* ── Section alternating backgrounds ── */
.services-section {
  padding: 4rem 0;
  background: #ffffff;
}

.services-section.services-alt {
  background: var(--color-gray-100, #f8f9fa);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   Audio / Renta de Bocinas Section
   ========================================================================== */

.audio-card-content .btn {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Equipment / Equipo para Eventos Section
   ========================================================================== */

.equipment-card-content .btn {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us-section {
  padding: 5rem 0;
  background: var(--color-secondary, #1a1a2e);
  color: var(--color-white);
}

.why-us-section .section-header h2 {
  color: var(--color-white);
}

.why-us-section .section-header p {
  color: var(--color-gray-400);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(230, 57, 70, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  color: var(--color-primary-light);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  padding: 5rem 0;
  background: #ffffff;
}

/* TestimonialCards — global (evita FOUC en dev mode) */
.tc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tc__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eaecef;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.tc__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff5722, #ff8a65);
  border-radius: 16px 16px 0 0;
}

.tc__card:hover {
  box-shadow: 0 8px 32px rgba(255, 87, 34, 0.10), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.tc__quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: #ff5722;
  opacity: 0.08;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.tc__text {
  font-size: 0.9375rem;
  color: #3d4451;
  line-height: 1.72;
  font-style: italic;
  margin: 0 0 1.25rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.tc__stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
}

.tc__star {
  color: #ff5722;
  font-size: 0.9375rem;
}

.tc__divider {
  border: none;
  border-top: 1px solid #eaecef;
  margin: 0 0 1.25rem;
}

.tc__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tc__avatar-wrap {
  flex-shrink: 0;
}

.tc__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f3f5;
}

.tc__avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.tc__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.tc__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc__role {
  font-size: 0.75rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc__company {
  font-size: 0.6875rem;
  color: #ff5722;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc__company-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.tc__company-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 87, 34, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.tc__company-link:hover {
  text-decoration-color: #ff5722;
}

.tc__badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ff5722;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tc__date {
  font-size: 0.6875rem;
  color: #adb5bd;
  margin-top: 0.75rem;
  display: block;
}

@media (max-width: 992px) {
  .tc__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .tc__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Coverage Section
   ========================================================================== */

.coverage-section {
  padding: 5rem 0;
  background: var(--color-gray-100, #f8f9fa);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
  transition: all var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--text-2xl);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--color-gray-100);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-gray-700);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ==========================================================================
   Providers / Proveedores Section
   ========================================================================== */

.provider-card-content .btn {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Quote Section (Form)
   ========================================================================== */

.quote-section .section-header h2 {
  color: var(--color-white);
}

.quote-section .section-header p {
  color: var(--color-gray-400);
}

@media (min-width: 992px) {
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

/* Quote CTA Section */

.quote-cta .cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.quote-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
}

.quote-cta .btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  border: none;
}

.quote-cta .btn-whatsapp:hover {
  background: #1da851;
  box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,0.12));
}

/* Company Info Section */

/* Branches Info */

/* Social Links */

/* ==========================================================================
   Footer
   ========================================================================== */

/* Primer Piso - Info Principal */

/* Grid especial para footer-main con 6 columnas */

/* Footer-main responsive para pantallas medianas */

/* Footer móvil mejorado */
@media (max-width: 768px) {

  

  /* Columnas colapsables estilo acordeón */

  /* Contacto especial */

  /* Footer zones */

  /* Footer branches */

  /* Footer bottom */
}

/* Logo texto sin icono */

/* Redes sociales texto */

/* Contacto texto sin iconos */

/* ==========================================================================
   FOOTER MÓVIL - DISEÑO LIMPIO Y ORDENADO
   ========================================================================== */

@media (max-width: 768px) {
  /* Ocultar secciones secundarias en móvil */

  /* Grid principal 2x2 */

  /* About section - full width arriba */

  /* Columnas de enlaces 2x2 */

  /* Contacto - full width abajo */

  /* Footer bottom */
}

/* Móvil pequeño */

/* Contact Items with Icons */

/* Social Links */

/* Segundo Piso - Zonas de Cobertura */

/* Tercer Piso - Sucursales */

/* Sucursales responsive - siempre 2x2 en móvil */

/* Footer Bottom */

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */


/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
}

@media (max-width: 992px) {
  .hero-two-columns .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-two-columns .hero-content {
    text-align: center;
  }

  .hero-two-columns .hero-ctas {
    justify-content: center;
  }

  .hero-two-columns .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Cards en formato horizontal para móvil */
  

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-10) 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--topbar-height, 56px) + var(--header-height, 70px) + 1.5rem);
    padding-bottom: 2rem;
  }

  .hero h1,
  .hero #hero-title {
    margin-top: 0;
  }

  .hero-intro p {
    font-size: var(--text-sm);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .hero-stats {
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }

  .hero-stat__value {
    font-size: var(--text-lg);
  }

  .hero-badge {
    font-size: var(--text-xs);
    padding: 0.375rem 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }

  /* Section headers más compactos */
  .section-header {
    margin-bottom: var(--space-6);
  }

  .section-header h2 {
    font-size: var(--text-2xl);
  }

  .section-header p {
    font-size: var(--text-sm);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Cards horizontales en móvil */
  

  

  /* Footer principal con 6 columnas - tablet: 3 columnas */

}

@media (max-width: 480px) {
  :root {
    --container-padding: 0.75rem;
  }

  h1 { font-size: var(--text-xl); }
  h2 { font-size: var(--text-lg); }
  h3 { font-size: var(--text-base); }

  section {
    padding: var(--space-8) 0;
  }

  .section-header {
    margin-bottom: var(--space-5);
  }

  .section-header h2 {
    font-size: var(--text-xl);
  }

  /* Cards verticales compactas en móviles pequeños */
  

  

  /* Footer móvil pequeño - diseño 2x2 */

  

  /* Columnas 2x2 */

  /* Contacto full width abajo */

  /* Footer zones 2x2 */

  /* Footer branches 2x2 */

  /* Footer bottom */

  /* Hero móvil pequeño */
  .hero {
    padding-top: calc(var(--topbar-height, 64px) + var(--header-height, 70px) + 1.25rem);
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-top: var(--space-4);
  }

  .hero h1,
  .hero #hero-title {
    font-size: var(--text-2xl);
    line-height: 1.2;
    margin-top: 0;
  }

  .hero-intro p {
    font-size: var(--text-xs);
  }

  .hero-ctas .btn {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
  }

  .faq-item summary {
    padding: var(--space-4);
    font-size: var(--text-sm);
  }

  /* Formularios móvil pequeño */

  /* FAQ móvil */
  .faq-item summary {
    padding: var(--space-3);
    font-size: var(--text-sm);
  }

  .faq-item p {
    padding: var(--space-3);
    font-size: var(--text-xs);
  }

  /* Galería móvil */
  .gallery-grid {
    gap: var(--space-2);
  }

  .gallery-item img {
    height: 150px;
  }

  /* Features/Why Us móvil */
  .feature-card {
    padding: var(--space-4);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-3);
  }

  /* Breadcrumb móvil */
  

  

  /* Stats móvil */

}

/* ==========================================================================
   Projects / Portfolio Section
   ========================================================================== */

/* ==========================================================================
   Brands Section
   ========================================================================== */

/* ==========================================================================
   Form Messages
   ========================================================================== */


/* ==========================================================================
   Back to Top Button
   ========================================================================== */

/* ==========================================================================
   Projects Section Responsive
   ========================================================================== */

@media (max-width: 576px) {

}

/* ==========================================================================
   Print Styles
   ========================================================================== */

/* ==========================================================================
   Info Cards - Informative Product/Type Cards (No CTA)
   ========================================================================== */

@media (min-width: 576px) {
}

@media (min-width: 992px) {
}

/* Alternative: Icon-based info cards */

/* Info cards with icon variant */

/* ==========================================================================
   Gallery Section - Clean Professional Grid
   ========================================================================== */

.gallery-section {
  padding: var(--space-12) 0;
  background: var(--color-gray-100);
  overflow: hidden;
}

.gallery-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  height: 280px;
  cursor: pointer;
  background: linear-gradient(145deg, #2a2a3e 0%, #1a1a2e 100%);
}

@media (min-width: 768px) {
  .gallery-item {
    height: 400px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Showcase Section - Professional Image Galleries by Category
   ========================================================================== */

/* Gallery Grid Large - 12 column layout */

/* ==========================================================================
   Legal Pages - Aviso de Privacidad, Términos y Condiciones
   ========================================================================== */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {

  .legal-section h1,
  .legal-content h1 {
    margin-top: var(--space-8);
  }

}

@media (max-width: 480px) {
  .legal-section h1,
  .legal-content h1 {
    margin-top: 0;
  }
}

/* ==========================================================================
   Values Section - Nosotros Page
   ========================================================================== */

/* Values Section Responsive */
@media (max-width: 992px) {
}

@media (max-width: 576px) {

}

/* ==========================================================================
   Mission, Vision, Purpose Section - Nosotros Page
   ========================================================================== */

.mvv-section .section-header h2 {
  color: var(--color-white);
}

.mvv-section .section-header p {
  color: var(--color-gray-400);
}

.mvv-section .section-header h2::after {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* MVV Section Responsive */
@media (max-width: 992px) {

}

@media (max-width: 480px) {

}

/* ==========================================================================
   History Timeline Section - Nosotros Page
   ========================================================================== */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-12);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -80px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.timeline-item-current .timeline-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
  border-left-color: var(--color-accent);
}

.timeline-content p {
  color: var(--color-gray-700);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.timeline-item-current .timeline-content p {
  color: var(--color-gray-300);
}

.timeline-content p strong {
  color: var(--color-secondary);
}

.timeline-item-current .timeline-content p strong {
  color: var(--color-white);
}

/* Timeline Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 60px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-marker {
    left: -60px;
  }

  .timeline-year {
    font-size: var(--text-xs);
  }

  .timeline-content {
    padding: var(--space-5);
  }

}

@media (max-width: 480px) {
  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-marker {
    left: -50px;
  }

  .timeline-content {
    padding: var(--space-4);
  }

}

/* ==========================================================================
   Stats Section Enhanced - Nosotros Page
   ========================================================================== */

.stats-section-enhanced {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.stats-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(244, 162, 97, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.stat-card-enhanced {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.stat-number-enhanced {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label-enhanced {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-2);
}

/* Stats Enhanced Responsive */
@media (max-width: 1200px) {
  .stats-grid-enhanced {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .stats-grid-enhanced {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .stat-card-enhanced {
    padding: var(--space-6) var(--space-5);
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--space-5);
  }

  .stat-number-enhanced {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

/* Blog Hero */

/* Blog Categories */

/* Blog Featured Post */

/* Blog Posts Grid */

/* Blog Pagination */

/* Blog Newsletter */

.newsletter-input-group .btn {
  white-space: nowrap;
}

/* Blog Responsive */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {

  .newsletter-input-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

}

/* ==========================================================================
   Blog Sidebar Styles
   ========================================================================== */

/* Blog Layout with Sidebar */

@media (max-width: 768px) {
}

/* Sidebar Base */

/* Widget Base Styles */

/* Search Widget */

/* About Widget */

/* Categories Widget */

/* Popular Posts Widget */

/* Tags Widget */

/* CTA Widget */

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.btn-block:last-child {
  margin-bottom: 0;
}

/* Social Widget */

/* Newsletter Widget */

/* Archive Widget */

/* Sidebar Responsive */
@media (max-width: 1200px) {
}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

/* ==========================================================================
   Blog Article Page Styles
   ========================================================================== */

/* Article Hero */

/* Article Content Section */

/* Table of Contents */

/* Article Body */

/* Article Highlight Box */

/* Article Tip Box */

/* Article Figure */

/* Article Features Grid */

.feature-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.feature-icon svg {
  color: var(--color-primary);
}

.feature-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
  color: var(--color-gray-600);
}

/* Article Moments */

/* Article Tips Grid */

/* Article Errors */

/* Article Conclusion */

/* Article CTA Box */

/* Article Share */

/* Sidebar Services Widget */

/* Related Articles */

/* Article Responsive */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  

  a[href]::after {
    content: " (" attr(href) ")";
  }
}

/* ==========================================================================
   Zonas de Cobertura - Páginas de Zonas
   ========================================================================== */

/* Zone Card Icon (replacing image) */

/* Related Section for Zones */

/* Responsive for Zone Cards */

/* ==========================================================================
   Zone Featured Cards - Zonas de Cobertura Mejoradas
   ========================================================================== */

/* Grid de Cards Destacadas */

/* Card Principal */

/* Imagen de la Card */

/* Badge de la Card */

/* Colores de Badges */

/* Contenido de la Card */

/* Lista de Highlights */

/* Botón de la Card */
.zone-featured-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  margin-top: auto;
}

.zone-featured-content .btn svg {
  transition: transform var(--transition-fast);
}

.zone-featured-content .btn:hover svg {
  transform: translateX(4px);
}

/* Sección de Más Zonas */

/* Responsive para Zone Featured Cards */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {

}

@media (max-width: 480px) {

}

/* Section Header Secondary (para subtítulos) */

/* CTA Wrapper para zonas */

.zones-cta-wrapper .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.zones-cta-wrapper .btn svg {
  transition: transform var(--transition-fast);
}

.zones-cta-wrapper .btn:hover svg {
  transform: rotate(360deg);
}

/* Responsive para section-header-secondary */

/* ==========================================================================
   Branches Section Enhanced - Sucursales Mejoradas
   ========================================================================== */

.branches-section-enhanced .section-header h2,
.branches-section-enhanced .section-header p {
  color: var(--color-white);
}

.branch-card-footer .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3);
}

/* Responsive para Branches Enhanced */
@media (max-width: 1200px) {
}

@media (max-width: 768px) {

  .branch-card-footer .btn {
    font-size: 11px;
    padding: var(--space-2);
  }
}

/* ==========================================================================
   Why Us Section Enhanced - ¿Por Qué Elegir REDEIL?
   ========================================================================== */

.why-us-section {
  padding: var(--space-16) 0;
  background: #000000;
}

.why-us-section.bg-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-us-section .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.why-us-section .section-header h2 {
  color: #ffffff;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.why-us-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
}

/* Services Mini Grid */

/* Why Us Section Responsive */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .why-us-section {
    padding: var(--space-12) 0;
  }

}

/* ==========================================================================
   Zona Pages - Individual Zone Styles
   ========================================================================== */

/* Hero Zona */

/* Zona Features Section */

@media (max-width: 1024px) {
}

@media (max-width: 768px) {

}

/* Zona Intro Section */

/* Zona Venues Section */

.zona-venues-section .section-header h2,
.zona-venues-section .section-header p {
  color: var(--color-white);
}

/* Zona Eventos Section */

/* Zona Sucursal Section */

/* Otras Zonas Section */

/* Testimonials Section */

/* Zona Pages Responsive */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

/* ==========================================================================
   NUEVO FOOTER - DISEÑO PROFESIONAL EQUILIBRADO
   ========================================================================== */

/* ===== FILA SUPERIOR: Brand + Contacto ===== */

/* ===== SECCIÓN BRAND (Logo + Descripción + Redes) ===== */

/* ===== SECCIÓN SERVICIOS (3 columnas) ===== */

/* Iluminación: 2 columnas internas */

/* ===== SECCIÓN ZONAS DE COBERTURA ===== */

/* ===== SECCIÓN SUCURSALES ===== */

/* ===== SECCIÓN CONTACTO (en fila superior) ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== SECCIÓN BOTTOM ===== */

/* ========================================
   FOOTER RESPONSIVE - TABLET (992px)
   ======================================== */
@media (max-width: 992px) {

  

  /* Zonas de Cobertura - 992px */

}

/* ========================================
   FOOTER RESPONSIVE - TABLET (768px)
   ======================================== */
@media (max-width: 768px) {

  /* Fila superior: 2 columnas en tablet */

  

  

  .contact-grid {
    gap: 15px;
  }

  /* Links: 2 columnas en tablet */
  

  /* Zonas de Cobertura - tablet 768px */

  /* Sucursales 2x2 */

  /* Bottom centrado */

}

/* ========================================
   FOOTER RESPONSIVE - MÓVIL (576px)
   ======================================== */
@media (max-width: 576px) {

  /* Fila superior: 1 columna en móvil */

  

  

  

  .contact-grid {
    gap: 12px;
  }

  /* Links: 1 columna con acordeón visual */
  

  /* Zonas de Cobertura - móvil 576px */

  /* Sucursales 1 columna compactas */

}

/* ==========================================================================
   FOOTER PROFESIONAL - NUEVO DISEÑO LIMPIO
   ========================================================================== */

/* ===== SECCIÓN PRINCIPAL DEL FOOTER ===== */

/* ===== COLUMNA DE MARCA ===== */

/* ===== COLUMNAS DE ENLACES ===== */

/* ===== SECCIÓN DE ZONAS DE COBERTURA ===== */

/* ===== SECCIÓN DE SUCURSALES ===== */

/* ===== SECCIÓN INFERIOR ===== */

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {

  

  
}

/* ===== RESPONSIVE: MÓVIL ===== */
@media (max-width: 768px) {

  

  

  

  

  

  

  

  

  
}

/* ===== RESPONSIVE: MÓVIL PEQUEÑO ===== */
@media (max-width: 480px) {

  

  

  

  

  

  

  

}

/* ══════════════════════════════════════
   Header Stack — Header + Breadcrumbs (fixed)
   TopBar is static above, hdr-stack sits below it
   ══════════════════════════════════════ */
.hdr-stack {
  position: fixed;
  top: var(--topbar-height, 36px);
  left: 0;
  right: 0;
  z-index: 9999;
}

/* ══════════════════════════════════════
   Events Section
   ══════════════════════════════════════ */
.events-section {
  padding: 5rem 0;
  background: var(--color-gray-100, #f8f9fa);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200, #e9ecef);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.event-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.125rem;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 0.75rem;
}

.event-card p {
  font-size: 0.875rem;
  color: var(--color-gray-600, #6c757d);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Zone Cards — Cobertura (2 columnas)
   ══════════════════════════════════════ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.zone-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200, #e9ecef);
  border-radius: 12px;
  padding: 2rem;
  overflow: hidden;
}

.zone-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary, #ff5722);
}

.zone-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.zone-card__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary, #1a1a2e);
  margin: 0;
}

.zone-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-card__list li {
  font-size: 0.9375rem;
  color: var(--color-gray-700, #495057);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.zone-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary, #ff5722);
  border-radius: 50%;
}

.zones-cta {
  text-align: center;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .zone-card__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .zone-card__list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Gallery 4×4
   ══════════════════════════════════════ */
.gallery-4x4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-4x4 figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-4x4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .gallery-4x4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-4x4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  height: 56px;
}
.sticky-cta__wa,
.sticky-cta__cotizar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 50%;
  height: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}
.sticky-cta__wa:hover,
.sticky-cta__cotizar:hover {
  opacity: 0.9;
}
.sticky-cta__wa {
  background: #25d366;
}
.sticky-cta__cotizar {
  background: #ff5722;
}
@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: flex;
  }
  body {
    padding-bottom: 56px;
  }
}

/* ==========================================================================
   Header — migrado desde Header.astro
   ========================================================================== */

/* ══════════════════════════════════════
   HEADER BASE
   (.hdr background/height ya están en BaseLayout critical CSS)
   ══════════════════════════════════════ */
.hdr {
  position: relative;
  z-index: 1;
  height: var(--hdr-height, 76px);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.hdr--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 87, 34, 0.2);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hdr-max);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

/* ── Logo ── */
.hdr__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.hdr__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.hdr__logo:hover { opacity: 0.8; }

/* ── Desktop Nav ── */
.hdr__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hdr__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hdr__item {
  position: relative;
}

.hdr__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.hdr__link:hover {
  color: #ff5722;
  background: rgba(255, 87, 34, 0.06);
}

.hdr__link--active {
  color: #ff5722;
}

.hdr__link--active:hover {
  background: rgba(255, 87, 34, 0.08);
}

.hdr__chevron {
  color: rgba(26, 26, 46, 0.4);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.hdr__item--has-sub:hover .hdr__chevron {
  transform: rotate(180deg);
  color: #ff5722;
}

/* ── Dropdown ── */
.hdr__item--has-sub {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.hdr__item--has-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 14px;
}

.hdr__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 210px;
  max-height: 72vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 87, 34, 0.05);
  padding: 0.4rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 9999;
}

.hdr__item--has-sub:hover .hdr__dropdown,
.hdr__item--has-sub:focus-within .hdr__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hdr__drop-link {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2d2d3a;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.hdr__drop-link:hover {
  background: #FFF4ED;
  color: #ff5722;
}

.hdr__drop-link--active {
  color: #ff5722;
  background: #FFF4ED;
}

/* ── Right side ── */
.hdr__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── CTA ── */
.hdr__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--hdr-accent);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(255, 87, 34, 0.3);
  white-space: nowrap;
}

.hdr__cta:hover {
  background: #e64a19;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.45);
}

/* ── Hamburger ── */
.hdr__toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hdr__toggle:hover {
  background: #FFF4ED;
  border-color: rgba(255, 87, 34, 0.3);
}

.hdr__bar,
.hdr__bar::before,
.hdr__bar::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.25s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hdr__bar { top: 50%; margin-top: -1px; }
.hdr__bar::before { top: -6px; margin-top: 0; }
.hdr__bar::after  { top: 6px; margin-top: 0; }

.hdr__toggle--open {
  background: #FFF4ED;
  border-color: rgba(255, 87, 34, 0.35);
}
.hdr__toggle--open .hdr__bar { background: transparent; }
.hdr__toggle--open .hdr__bar::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  background: #ff5722;
}
.hdr__toggle--open .hdr__bar::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
  background: #ff5722;
}

/* ══════════════════════════════════════
   MOBILE OVERLAY
   ══════════════════════════════════════ */
.hdr__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.hdr__overlay--visible {
  display: block;
  opacity: 1;
}

/* ══════════════════════════════════════
   MOBILE PANEL
   ══════════════════════════════════════ */
.hdr__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hdr__panel--open {
  transform: translateX(0);
}

.hdr__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

.hdr__panel-brand img {
  height: 38px;
  width: auto;
}

.hdr__panel-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 46, 0.45);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.hdr__panel-close:hover {
  background: #FFF4ED;
  color: #ff5722;
  border-color: rgba(255, 87, 34, 0.25);
}

.hdr__panel-list {
  flex: 1;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
}

.hdr__panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a2e;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  text-decoration: none;
}

.hdr__panel-link:hover {
  background: #FFF4ED;
  color: #ff5722;
}

.hdr__panel-link--active {
  color: #ff5722;
  font-weight: 600;
}

.hdr__panel-chev {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: rgba(26, 26, 46, 0.3);
}

.hdr__panel-subtoggle--open .hdr__panel-chev {
  transform: rotate(180deg);
  color: var(--hdr-accent);
}

.hdr__panel-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hdr__panel-sub--open { max-height: 400px; }

.hdr__panel-sublink {
  padding-left: 2.5rem;
  font-size: 0.875rem;
  min-height: 44px;
  color: rgba(26, 26, 46, 0.6);
  border-left: 2px solid transparent;
}

.hdr__panel-sublink:hover {
  border-left-color: #ff5722;
  color: #ff5722;
  background: #FFF4ED;
}

.hdr__panel-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

.hdr__panel-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--hdr-accent);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
}

.hdr__panel-cta:hover {
  background: #e64a19;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .hdr__toggle { display: flex; }
  .hdr__panel { display: flex; }
  .hdr__cta { display: none; }
}

@media (max-width: 400px) {
  .hdr__panel { width: 100%; max-width: none; }
}

/* ==========================================================================
   TopBar — migrado desde TopBar.astro
   ========================================================================== */

/* ══════════════════════════════════════
   TopBar — Styles
   ══════════════════════════════════════ */

.topbar {
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1;
  z-index: 10000;
}

/* ── Variants ── */
.topbar--dark {
  background: #111827;
  color: rgba(255, 255, 255, 0.85);
}

.topbar--primary {
  background: var(--c-primary, #2D5016);
  color: rgba(255, 255, 255, 0.9);
}

.topbar--accent {
  background: var(--c-accent, #D4A574);
  color: #1a1a1a;
}

/* ── Inner layout ── */
.topbar__inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
}

/* ── Sections ── */
.topbar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.topbar__center {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* ── Items ── */
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.topbar__icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar__link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s var(--ease, ease);
}

.topbar__link:hover {
  opacity: 1;
}

.topbar__sep {
  opacity: 0.3;
  font-size: 0.75rem;
  user-select: none;
}

/* ── Promo badge ── */
.topbar__promo {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── WhatsApp highlight ── */
.topbar__wa {
  font-weight: 600;
  color: #25D366;
  transition: color 0.2s, opacity 0.2s;
}

.topbar--accent .topbar__wa {
  color: #128C7E;
}

.topbar__wa:hover {
  opacity: 0.85;
}

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */

/* Tablet: hide delivery + email, keep phone + promo + WA */
@media (max-width: 1024px) {
  .topbar__sep--hide-tablet,
  .topbar__delivery {
    display: none;
  }
}

/* Mobile: show promo + phone + WA in compact layout */
@media (max-width: 768px) {
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.4rem 1rem;
    min-height: auto;
    gap: 0.25rem 0.75rem;
  }

  .topbar__left {
    width: 100%;
    justify-content: center;
    order: -1;
  }

  .topbar__center {
    display: none;
  }

  .topbar__right {
    display: flex;
    justify-content: center;
  }

  .topbar__delivery {
    display: none;
  }

  .topbar__promo {
    font-size: 0.75rem;
  }

  .topbar__right .topbar__item,
  .topbar__right .topbar__link {
    font-size: 0.75rem;
  }

  .topbar__sep--hide-tablet {
    display: inline;
  }
}

/* Very small: tighten spacing */
@media (max-width: 480px) {
  .topbar__item {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
  .topbar__promo {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .topbar__inner {
    padding: 0.35rem 0.75rem;
    gap: 0.2rem 0.5rem;
  }

  .topbar__promo {
    font-size: 0.7rem;
  }

  .topbar__right .topbar__item span,
  .topbar__right .topbar__link span {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   Footer — migrado desde Footer.astro
   ========================================================================== */

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
.ft {
  background: #0f0f1a;
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
}

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.ft__trust {
  background: #1a1a2e;
  border-top: 2px solid #ff5722;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ft__trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 0;
  padding: 1rem 0;
  min-height: 56px;
}

.ft__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #c4c4d8;
  flex: 1 1 auto;
  white-space: nowrap;
  padding: 0.25rem 1.25rem;
}

.ft__trust-item svg {
  color: #ff5722;
  flex-shrink: 0;
}

.ft__trust-item strong {
  color: #fff;
  font-weight: 700;
}

.ft__trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.ft__trust-cta {
  padding-right: 0;
}

.ft__trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff5722;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  white-space: nowrap;
}

.ft__trust-btn:hover {
  background: #e64a19;
}

/* ═══════════════════════════════════════
   CUERPO
═══════════════════════════════════════ */
.ft__body {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ft__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem 2.5rem;
}

/* ── Marca ── */
.ft__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft__logo {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 1rem;
  line-height: 1;
}

.ft__logo-re {
  color: #ff5722;
}

.ft__logo-deil {
  color: #ffffff;
}

.ft__logo:hover .ft__logo-re,
.ft__logo:hover .ft__logo-deil {
  opacity: 0.85;
}

.ft__tagline {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #9090b0;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

/* Rating */
.ft__rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  max-width: fit-content;
}

.ft__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.ft__rating-text {
  font-size: 0.75rem;
  color: #9090b0;
}

.ft__rating-text strong {
  color: #fff;
  font-weight: 700;
}

/* Contacto */
.ft__contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ft__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b0b0cc;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.15s;
}

.ft__contact-item:hover { color: #fff; }

.ft__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.15s;
}

.ft__contact-item:hover .ft__contact-icon {
  background: rgba(255,255,255,0.1);
}

.ft__contact-icon--wa {
  background: rgba(37,211,102,0.15);
  color: #25D366;
}

.ft__contact-wa { color: #25D366; }
.ft__contact-wa:hover { color: #2ee077; }

.ft__address {
  align-items: flex-start;
  line-height: 1.5;
}

.ft__schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: #5a5a7a;
  padding-top: 0.25rem;
}

/* ── Columnas nav ── */
.ft__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 0.875rem;
}

.ft__heading--gap {
  margin-top: 1.75rem;
}

.ft__heading-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff5722;
  border-radius: 50%;
  flex-shrink: 0;
}

.ft__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft__list li a {
  font-size: 0.8125rem;
  color: #7878a0;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}

.ft__list li a:hover {
  color: #e0e0f0;
  padding-left: 4px;
}

/* ═══════════════════════════════════════
   BOTTOM BAR
═══════════════════════════════════════ */
.ft__bar {
  background: #09090f;
  padding: 1rem 0;
}

.ft__bar-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.ft__bar-copy {
  font-size: 0.6875rem;
  color: #44445a;
  line-height: 1.5;
}

.ft__bar-copy strong {
  color: #66668a;
  font-weight: 600;
}

.ft__bar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ft__bar-nav a {
  font-size: 0.6875rem;
  color: #44445a;
  text-decoration: none;
  transition: color 0.15s;
}

.ft__bar-nav a:hover { color: #9090b0; }

.ft__bar-dot {
  color: #2a2a3a;
  font-size: 0.6875rem;
}

.ft__bar-brands {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: nowrap;
}

.ft__brand-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3a3a52;
  border: 1px solid #2a2a3e;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.ft__brand-badge:hover {
  color: #7878a0;
  border-color: #444460;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .ft__brand {
    grid-column: 1 / -1;
  }
  .ft__tagline {
    max-width: 100%;
  }
  .ft__trust-item {
    padding: 0.25rem 0.75rem;
  }
}

@media (max-width: 860px) {
  .ft__bar-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  .ft__bar-nav {
    justify-content: center;
  }
  .ft__bar-brands {
    justify-content: center;
    flex-wrap: wrap;
  }
  .ft__trust-sep { display: none; }
  .ft__trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0;
  }
  .ft__trust-item {
    padding: 0.125rem 0;
  }
  .ft__trust-cta {
    align-self: stretch;
  }
  .ft__trust-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .ft__body {
    padding: 2.5rem 0 2rem;
  }
  .ft__logo {
    font-size: 1.875rem;
  }
}

@media (max-width: 400px) {
  .ft__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Hero — migrado desde Hero.astro
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-secondary, #0d0d12);
  padding-top: calc(var(--topbar-height, 36px) + var(--header-height, 100px) + 2.5rem);
  padding-bottom: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.07) 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__overline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__overline-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5722;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  line-height: 1.05;
}

.hero__h1-top {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hero__h1-accent {
  font-size: clamp(2.8rem, 5.5vw, 4.25rem);
  font-weight: 900;
  color: #ff5722;
  letter-spacing: -0.03em;
  line-height: 0.95;
  display: block;
}

.hero__h1-bottom {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  margin-top: 0.4rem;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stat-value {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__right {
  display: flex;
  align-items: flex-start;
}

.hero__editorial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.hero__editorial-bar {
  width: 36px;
  height: 3px;
  background: #ff5722;
  border-radius: 2px;
}

.hero__para {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

.hero__para :global(strong) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero__para--lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.hero__brands {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero__brands-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.hero__brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero__brand-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .hero {
    padding-bottom: 3rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: calc(var(--topbar-height, 36px) + var(--header-height, 80px) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero__h1-accent {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero__stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   NavRapida — migrado desde NavRapida.astro
   ========================================================================== */

.nav-rapida {
  background: #ff5722;
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.nav-rapida__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav-item:last-child {
  border-right: none;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.nav-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-item__icon svg {
  width: 16px;
  height: 16px;
}

.nav-item:hover .nav-item__icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.nav-item__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-item__label {
  font-size: 0.925rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.nav-item:hover .nav-item__label {
  color: #fff;
}

.nav-item__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.nav-item:hover .nav-item__sub {
  color: rgba(255, 255, 255, 0.85);
}

.nav-item__arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease, transform 0.25s ease;
}

.nav-item:hover .nav-item__arrow {
  color: #fff;
  transform: translateX(2px);
}

.nav-item--cta {
  background: rgba(0, 0, 0, 0.18);
}

.nav-item--cta .nav-item__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.nav-item--cta .nav-item__label {
  color: #fff;
}

.nav-item--cta .nav-item__arrow {
  color: rgba(255, 255, 255, 0.6);
}

.nav-item--cta:hover {
  background: rgba(0, 0, 0, 0.28);
}

.nav-item--cta:hover .nav-item__label {
  color: #fff;
}

.nav-item--cta:hover .nav-item__icon {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.nav-item--cta:hover .nav-item__arrow {
  color: #fff;
}

.nav-item--cta::after {
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .nav-rapida__inner {
    flex-wrap: wrap;
    padding: 0;
  }

  .nav-item {
    flex: 0 0 33.333%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.125rem 1.25rem;
  }

  .nav-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .nav-item {
    flex: 0 0 50%;
    padding: 1.125rem 1rem;
  }

  .nav-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-item:nth-child(2n) {
    border-right: none;
  }

  .nav-item__sub {
    display: none;
  }
}

/* ==========================================================================
   SectionHeader — migrado desde SectionHeader.astro
   ========================================================================== */

.sh {
  padding-bottom: 2.5rem;
}

.sh__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sh__col1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sh__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent, #ff5722);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.sh__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-text, #1C1917);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem 0;
}

.sh__divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent, #ff5722);
  border-radius: 99px;
  opacity: 0.6;
}

.sh__col2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh__text {
  font-size: 0.9375rem;
  color: var(--c-text-muted, #78716C);
  line-height: 1.75;
}

.sh--dark .sh__eyebrow {
  color: var(--color-accent, #ff5722);
}

.sh--dark .sh__title {
  color: #ffffff;
}

.sh--dark .sh__text {
  color: rgba(255, 255, 255, 0.7);
}

.sh--dark .sh__divider {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .sh__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   CtaBar — migrado desde CtaBar.astro
   ========================================================================== */

.ctabar {
  background: #c0392b;
  position: relative;
  z-index: 2;
}

.ctabar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ctabar__card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease;
  overflow: hidden;
}

.ctabar__card:last-child {
  border-right: none;
}

.ctabar__card:hover {
  background: rgba(0, 0, 0, 0.12);
}

.ctabar__card--cta {
  background: rgba(0, 0, 0, 0.15);
}

.ctabar__card--cta:hover {
  background: rgba(0, 0, 0, 0.25);
}

.ctabar__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ctabar__card--cta .ctabar__label {
  color: #fff;
}

.ctabar__desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ctabar__card:hover .ctabar__desc {
  color: rgba(255, 255, 255, 0.9);
}

.ctabar__card--cta .ctabar__desc {
  color: rgba(255, 112, 67, 0.55);
}

.ctabar__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.ctabar__arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.2s ease, transform 0.25s ease;
}

.ctabar__card:hover .ctabar__arrow {
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(3px);
}

.ctabar__card--cta .ctabar__arrow {
  color: rgba(255, 112, 67, 0.5);
}

.ctabar__card--cta:hover .ctabar__arrow {
  color: #ff7043;
  transform: translateX(3px);
}

.ctabar__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff5722;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctabar__card--cta .ctabar__line {
  background: linear-gradient(90deg, #ff5722, #ff8a65);
}

.ctabar__card:hover .ctabar__line {
  transform: scaleX(1);
}

@media (max-width: 860px) {
  .ctabar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ctabar__card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ctabar__card:nth-child(2n) {
    border-right: none;
  }

  .ctabar__card:nth-child(3),
  .ctabar__card:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 500px) {
  .ctabar__grid {
    grid-template-columns: 1fr;
  }

  .ctabar__card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 1.25rem;
  }

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

/* ==========================================================================
   FaqSection — migrado desde FaqSection.astro
   ========================================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.faq-layout__faqs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: var(--radius-sm, 8px);
  overflow: hidden;
}

.faq-item__q {
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-text, #1C1917);
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--c-text-muted, #78716C);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-item__q::after {
  content: '−';
}

.faq-item[open] .faq-item__q {
  background: var(--c-bg-alt, #F7F4F0);
}

.faq-item__a {
  padding: 0 1.5rem 1.125rem;
  color: var(--c-text-muted, #78716C);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-contact {
  background: #fff;
  border: 1px solid var(--c-border, #E7E0D8);
  border-radius: var(--radius-md, 12px);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-height, 70px) + 1.5rem);
}

.faq-contact__title {
  font-size: 1.125rem;
  color: var(--c-text, #1C1917);
  margin-bottom: 0.5rem;
}

.faq-contact__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted, #78716C);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.faq-contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border, #E7E0D8);
}

.faq-contact__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text, #1C1917);
}

.faq-contact__item svg {
  color: var(--c-primary, #2C5530);
  flex-shrink: 0;
}

.faq-chat-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0.5rem;
}
.faq-chat-cta__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.faq-chat-cta__name { font-size: 1rem; font-weight: 700; color: var(--c-text, #1C1917); margin: 0 0 0.25rem; }
.faq-chat-cta__status { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--c-text-muted, #78716C); margin: 0 0 1rem; }
.faq-chat-cta__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.faq-chat-cta__desc { font-size: 0.875rem; color: var(--c-text-muted, #78716C); line-height: 1.6; margin: 0 0 1.25rem; }
.faq-chat-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.85rem 1rem;
  background: #ff5722; color: #fff;
  font-size: 0.9375rem; font-weight: 600;
  border: none; border-radius: var(--radius-sm, 8px);
  cursor: pointer; font-family: var(--font-body, 'Inter', sans-serif);
  transition: background 0.2s ease;
}
.faq-chat-btn:hover { background: #e64a19; }
.faq-chat-cta__fallback {
  font-size: 0.8125rem;
  color: var(--c-text-muted, #78716C);
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-contact {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   FeatureGrid — migrado desde FeatureGrid.astro
   ========================================================================== */

.fg {
  display: grid;
  grid-template-columns: repeat(var(--fg-cols, 3), 1fr);
  gap: 1.25rem;
}

.fg__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1.25rem;
}

.fg__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF4ED;
  color: #ff5722;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 8px;
}

.fg__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.fg__desc {
  font-size: 0.8125rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .fg {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Breadcrumbs — migrado desde Breadcrumbs.astro
   ========================================================================== */

.crumbs {
  background: #0a0a10;
  border-bottom: 1px solid rgba(255, 87, 34, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.crumbs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #ff5722, transparent);
}

.crumbs__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
}

.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.crumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.35);
}

.crumbs__item:not(:last-child)::after {
  content: '/';
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

.crumbs__home-icon {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-bottom: 1px;
}

.crumbs__link {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.crumbs__link:hover {
  color: #ff7043;
}

.crumbs__current {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

@media (max-width: 768px) {
  .crumbs__inner {
    padding: 0.5rem 1.25rem;
  }
}

/* ==========================================================================
   ServiceCard — migrado desde ServiceCard.astro
   ========================================================================== */

.sc { background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 14px rgba(15, 23, 42, 0.05); }
.sc__img-link { display: block; }
.sc__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-secondary, #0d0d12); }
.sc__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.sc__body { padding: 1.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.65rem; }
.sc__eyebrow { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(15, 23, 42, 0.4); margin: 0; }
.sc__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary, #ff5722); flex-shrink: 0; }
.sc__bar { width: 36px; height: 3px; background: var(--color-primary, #ff5722); border-radius: 2px; margin: 0.1rem 0 0.2rem; }
.sc__title { font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 1.25rem; font-weight: 800; color: var(--color-secondary, #0d0d12); margin: 0; line-height: 1.15; letter-spacing: -0.025em; }
.sc__title-link { color: inherit; text-decoration: none; }
.sc__desc { font-size: 0.9375rem; color: rgba(15, 23, 42, 0.6); line-height: 1.7; flex: 1; margin: 0; }
.sc__btn { margin-top: 0.85rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.95rem 1rem; background: var(--color-secondary, #0d0d12); color: #fff; font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.8125rem; font-weight: 700; text-align: center; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 8px; transition: background-color 0.15s ease, color 0.15s ease; }
.sc__btn svg { flex-shrink: 0; }
.sc__btn:hover, .sc__btn:focus-visible { background: var(--color-primary, #ff5722); color: #fff; }
@media (max-width: 480px) { .sc { border-radius: 12px; } .sc__body { padding: 1.2rem; gap: 0.55rem; } .sc__title { font-size: 1.125rem; } .sc__desc { font-size: 0.875rem; line-height: 1.65; } .sc__btn { padding: 0.85rem 1rem; font-size: 0.75rem; } }

/* ==========================================================================
   ServiceCardPackages — migrado desde ServiceCardPackages.astro
   ========================================================================== */

.sc__packages { list-style: none; margin: 0.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; flex: 1; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 10px; overflow: hidden; }
.sc__pkg { border-bottom: 1px solid rgba(15, 23, 42, 0.07); }
.sc__pkg:last-child { border-bottom: none; }
.sc__pkg-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; text-decoration: none; background: transparent; transition: background-color 0.12s ease; }
.sc__pkg-link:hover, .sc__pkg-link:focus-visible { background: rgba(255, 87, 34, 0.05); }
.sc__pkg-link:hover .sc__pkg-label, .sc__pkg-link:focus-visible .sc__pkg-label { color: var(--color-primary, #ff5722); }
.sc__pkg-link:hover .sc__pkg-arrow, .sc__pkg-link:focus-visible .sc__pkg-arrow { color: var(--color-primary, #ff5722); transform: translateX(3px); }
.sc__pkg-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sc__pkg-label { font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.8125rem; font-weight: 700; color: var(--color-secondary, #0d0d12); line-height: 1.2; transition: color 0.12s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc__pkg-sublabel { font-size: 0.6875rem; color: rgba(15, 23, 42, 0.45); font-weight: 500; margin-top: 0.1rem; line-height: 1; }
.sc__pkg-arrow { flex-shrink: 0; color: rgba(15, 23, 42, 0.3); transition: color 0.12s ease, transform 0.12s ease; }
.sc__btn { margin-top: 0.6rem; }

/* ==========================================================================
   PricingCards — migrado desde PricingCards.astro
   ========================================================================== */

.pk__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
.pk__card { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 2rem 1.5rem; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.pk__card--highlight { border: 2px solid #ff5722; box-shadow: 0 8px 30px rgba(255, 87, 34, 0.12); }
.pk__badge { position: absolute; top: 0; right: 0; background: #ff5722; color: #fff; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 1rem; border-radius: 0 10px 0 8px; }
.pk__name { font-size: 1.125rem; font-weight: 700; color: #1a1a2e; margin: 0 0 1rem; line-height: 1.3; }
.pk__price { margin-bottom: 0.75rem; }
.pk__price-value { display: block; font-size: 2rem; font-weight: 800; color: #ff5722; line-height: 1.1; }
.pk__price-note { display: block; font-size: 0.75rem; color: #6c757d; margin-top: 0.25rem; }
.pk__desc { font-size: 0.8125rem; color: #6c757d; line-height: 1.6; margin: 0 0 1.25rem; flex: 0; }
.pk__features { list-style: none !important; padding: 0 !important; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; border-top: 1px solid #f0f0f0; padding-top: 1.25rem !important; }
.pk__features li { font-size: 0.8125rem; color: #495057; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.pk__feat-icon { flex-shrink: 0; font-weight: 700; color: #ff5722; font-size: 0.75rem; margin-top: 0.1rem; }
.pk__feat--no { color: #adb5bd; }
.pk__feat--no .pk__feat-icon { color: #ced4da; }
.pk__cta { display: block; width: 100%; padding: 0.8rem 1rem; text-align: center; font-size: 0.875rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: background 0.2s ease, color 0.2s ease; background: #f8f9fa; color: #1a1a2e; border: 1px solid #e0e0e0; }
.pk__cta:hover { background: #e9ecef; }
.pk__cta--highlight { background: #ff5722; color: #fff; border-color: #ff5722; }
.pk__cta--highlight:hover { background: #e64a19; }
@media (max-width: 1100px) { .pk__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pk__grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; padding: 0 0.5rem; } }

/* ==========================================================================
   ZoneCards — migrado desde ZoneCards.astro
   ========================================================================== */

.zc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.zc__card { background: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 2rem; }
.zc__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid #ff5722; }
.zc__icon { font-size: 1.75rem; line-height: 1; }
.zc__title { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.2; }
.zc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; list-style: none !important; padding: 0 !important; margin: 0; }
.zc__list li { font-size: 0.9375rem; color: #495057; padding: 0.4rem 0 0.4rem 1.25rem; position: relative; line-height: 1.4; }
.zc__list a { color: #495057; text-decoration: none; }
.zc__list a:hover { color: #ff5722; }
.zc__list li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 6px; height: 6px; background: #ff5722; border-radius: 50%; }
.zc__cta { text-align: center; }
.zc__btn { display: inline-block; padding: 0.85rem 2rem; background: #ff5722; color: #fff; font-weight: 600; font-size: 0.9375rem; text-decoration: none; border-radius: 8px; transition: background 0.2s ease; }
.zc__btn:hover { background: #e64a19; }
@media (max-width: 768px) { .zc__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
@media (max-width: 480px) { .zc__list { grid-template-columns: 1fr; } }

/* ==========================================================================
   DirectoryCard — migrado desde DirectoryCard.astro
   ========================================================================== */

.dc { background: #fff; border: 1px solid var(--color-gray-200, #e9ecef); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.dc__img-link { display: block; }
.dc__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.dc__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc__cat { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--color-primary, #ff5722); color: #fff; font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 4px; }
.dc__zona { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--color-secondary, #1a1a2e); color: #fff; font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 4px; }
.dc__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.dc__title { font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 1rem; font-weight: 700; color: var(--color-secondary, #1a1a2e); margin: 0 0 0.5rem; line-height: 1.3; }
.dc__title a { text-decoration: none; color: inherit; }
.dc__title a:hover { color: var(--color-primary, #ff5722); }
.dc__rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.dc__stars { display: flex; gap: 1px; }
.dc__star { color: #dee2e6; }
.dc__star--full { color: #f5a623; }
.dc__star--half { color: #f5a623; opacity: 0.6; }
.dc__rating-text { font-size: 0.8125rem; color: #6c757d; }
.dc__location { font-size: 0.875rem; color: #495057; margin: 0 0 0.35rem; }
.dc__phone { font-size: 0.875rem; margin: 0 0 0.75rem; }
.dc__phone a { color: var(--color-secondary, #1a1a2e); text-decoration: none; font-weight: 600; }
.dc__phone a:hover { color: var(--color-primary, #ff5722); }
.dc__btn { display: block; width: 100%; padding: 0.75rem 1rem; background: var(--color-primary, #ff5722); color: #fff; font-family: var(--font-primary, 'Montserrat', sans-serif); font-size: 0.875rem; font-weight: 700; text-align: center; text-decoration: none; border-radius: 8px; margin-top: auto; transition: background 0.2s; }
.dc__btn:hover { background: var(--color-primary-dark, #e64a19); color: #fff; }

/* ==========================================================================
   BlogSidebar — REDEIL Editorial Premium v2 (Apr 2026)
   Widgets: search, top numerado, categorías, tipos de evento, CTA, servicios,
   zonas, newsletter, directorio.
   ========================================================================== */

.bsb {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.bsb__card {
  background: #fff;
  border: 1px solid #e7eaee;
  border-radius: 12px;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 2px 6px -3px rgba(20,30,55,0.08);
}
.bsb__card-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef0f3;
}
.bsb__card-title-bar {
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #ff8a3d 0%, #ff5722 60%, #d44600 100%);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Search */
.bsb__search-card { padding: 1.1rem 1.4rem; }
.bsb__search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f6f8;
  border: 1px solid #e7eaee;
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
}
.bsb__search-box:focus-within {
  background: #fff;
  border-color: var(--color-primary, #ff5722);
  box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}
.bsb__search-icon { color: #8b919a; flex-shrink: 0; }
.bsb__search-input {
  border: none;
  background: none;
  font-family: var(--font-secondary, 'Open Sans', sans-serif);
  font-size: 0.875rem;
  color: #1a1a2e;
  width: 100%;
  outline: none;
}
.bsb__search-input::placeholder { color: #8b919a; }
.bsb__search-results {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bsb__search-results[hidden] { display: none; }

/* Top numerado */
.bsb__top-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  counter-reset: bsb-top;
}
.bsb__top-item {
  border-bottom: 1px solid #f1f3f5;
}
.bsb__top-item:last-child { border-bottom: none; }
.bsb__top-link {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  text-decoration: none;
}
.bsb__top-num {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffb38a 0%, #ff5722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 2.1rem;
  line-height: 1;
  padding-top: 0.15rem;
}
.bsb__top-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.bsb__top-cat {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary, #ff5722);
}
.bsb__top-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-secondary, #1a1a2e);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bsb__top-link:hover .bsb__top-title { color: var(--color-primary, #ff5722); }

/* Categorías */
.bsb__cat-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bsb__cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-secondary, 'Open Sans', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: #495057;
}
.bsb__cat-link:hover {
  background: #fff4ed;
  color: var(--color-primary, #ff5722);
}
.bsb__cat-link--active {
  background: #fff4ed;
  color: var(--color-primary, #ff5722);
  font-weight: 700;
}
.bsb__cat-count {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: #8b919a;
  background: #f1f3f5;
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  min-width: 1.6rem;
  text-align: center;
}
.bsb__cat-link--active .bsb__cat-count {
  background: var(--color-primary, #ff5722);
  color: #fff;
}

/* Tipos de evento */
.bsb__event-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bsb__event-link {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: #f7f8fa;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-secondary, 'Open Sans', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary, #1a1a2e);
}
.bsb__event-link:hover {
  background: #fff;
  border-color: var(--color-primary, #ff5722);
  color: var(--color-primary, #ff5722);
}
.bsb__event-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid #eef0f3;
}
.bsb__event-arrow {
  font-size: 0.875rem;
  color: #cdd2d8;
  font-weight: 700;
}
.bsb__event-link:hover .bsb__event-arrow { color: var(--color-primary, #ff5722); }

/* CTA WhatsApp */
.bsb__cta-card {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(224,88,0,0.35) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a2e 0%, #28304a 100%);
  border-color: transparent;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bsb__cta-icon {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}
.bsb__cta-title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.bsb__cta-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.bsb__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9px;
  transition: background 0.18s ease, transform 0.18s ease;
  box-shadow: 0 10px 24px -10px rgba(37,211,102,0.55);
}
.bsb__cta-btn:hover {
  background: #1fb855;
  color: #fff;
  transform: translateY(-1px);
}
.bsb__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  width: 100%;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.65rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: transparent;
}
.bsb__cta-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* Tags servicios + zonas */
.bsb__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.bsb__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  background: #f5f6f8;
  border: 1px solid #e7eaee;
  color: #3d4453;
  text-decoration: none;
}
.bsb__tag:hover {
  background: var(--color-primary, #ff5722);
  color: #fff;
  border-color: var(--color-primary, #ff5722);
}
.bsb__tag--zona {
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
}
.bsb__tag--zona svg {
  flex-shrink: 0;
  color: var(--color-primary, #ff5722);
}
.bsb__tag--zona:hover svg { color: #fff; }
.bsb__more-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary, #ff5722);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.bsb__more-link:hover {
  text-decoration: underline;
  color: var(--color-secondary, #1a1a2e);
}

/* Newsletter card */
.bsb__news-card {
  background: linear-gradient(135deg, #fff8f3 0%, #fff 60%);
  border-color: #ffd9c0;
  position: relative;
  overflow: hidden;
}
.bsb__news-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,87,34,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bsb__news-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--color-primary, #ff5722);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.bsb__news-title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-secondary, #1a1a2e);
  margin: 0 0 0.55rem;
  letter-spacing: -0.005em;
}
.bsb__news-text {
  font-size: 0.875rem;
  color: #5a6270;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}
.bsb__news-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bsb__news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: var(--color-secondary, #1a1a2e);
  color: #fff;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s ease;
}
.bsb__news-btn:hover { background: var(--color-primary, #ff5722); color: #fff; }
.bsb__news-link {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bsb__news-link:hover { color: var(--color-primary, #ff5722); }

/* Directorio */
.bsb__dir-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bsb__dir-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: #f7f8fa;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}
.bsb__dir-link:hover {
  background: #fff;
  border-color: var(--color-primary, #ff5722);
}
.bsb__dir-info { display: flex; flex-direction: column; gap: 0.15rem; }
.bsb__dir-name { font-weight: 700; font-size: 0.875rem; color: var(--color-secondary, #1a1a2e); }
.bsb__dir-zona { font-size: 0.75rem; color: #6c757d; }
.bsb__dir-rating { font-size: 0.75rem; font-weight: 700; color: #f5a623; }

/* ── Compatibilidad: legacy popular list (no se usa pero por seguridad) ── */
.bsb__pop-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.bsb__pop-item { padding-bottom: 0.875rem; border-bottom: 1px solid #f1f3f5; }
.bsb__pop-item:last-child { padding-bottom: 0; border-bottom: none; }
.bsb__pop-link { display: flex; gap: 0.75rem; text-decoration: none; align-items: flex-start; }
.bsb__pop-img { flex-shrink: 0; width: 72px; height: 54px; border-radius: 6px; overflow: hidden; }
.bsb__pop-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bsb__pop-text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.bsb__pop-cat { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary, #ff5722); }
.bsb__pop-title { font-size: 0.8125rem; font-weight: 600; color: var(--color-secondary, #1a1a2e); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bsb__pop-link:hover .bsb__pop-title { color: var(--color-primary, #ff5722); }
.bsb__help-text { font-size: 0.875rem; color: #6c757d; line-height: 1.6; margin: 0 0 1rem; }
.bsb__help-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 600; color: var(--color-secondary, #1a1a2e); text-decoration: none; }
.bsb__help-phone:hover { color: var(--color-primary, #ff5722); }

/* ==========================================================================
   RelatedBlog — migrado desde RelatedBlog.astro
   ========================================================================== */

.related-blog { padding: var(--space-8) 0; background: var(--neutral-50, #f9fafb); }
.related-blog__title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: var(--space-6); color: var(--neutral-900, #111827); }
.related-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-blog__card { background: #fff; border: 1px solid var(--neutral-200, #e5e7eb); border-radius: var(--radius-lg, 12px); padding: 1.5rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 0.75rem; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.related-blog__card:hover { border-color: var(--primary, #6366f1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.related-blog__card-title { font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--neutral-900, #111827); margin: 0; }
.related-blog__card-excerpt { font-size: 0.875rem; line-height: 1.6; color: var(--neutral-600, #4b5563); margin: 0; flex: 1; }
.related-blog__card-link { font-size: 0.875rem; font-weight: 600; color: var(--primary, #6366f1); }
@media (max-width: 768px) { .related-blog__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ContentWithSidebar — migrado desde ContentWithSidebar.astro
   ========================================================================== */

.cws { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; padding: 0 0 2rem; }
.cws__content { font-size: 0.9375rem; color: #495057; line-height: 1.8; }
.cws__content :global(h3) { font-size: 1.25rem; color: #1a1a2e; margin: 2rem 0 0.75rem; font-weight: 700; }
.cws__content :global(h3:first-child) { margin-top: 0; }
.cws__content :global(p) { margin: 0 0 1rem; }
.cws__content :global(ul) { list-style: none !important; padding: 0 !important; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cws__content :global(li) { padding-left: 1.5rem; position: relative; font-size: 0.9375rem; }
.cws__content :global(li::before) { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; background: #ff5722; border-radius: 50%; }
.cws__content :global(strong) { color: #1a1a2e; }
.cws__sidebar { min-width: 0; }
.cws__card { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 1.75rem; position: sticky; top: calc(70px + 36px + 1.5rem); }
.cws__card-title { font-size: 1.125rem; font-weight: 700; color: #1a1a2e; margin: 0 0 1.25rem; }
.cws__price { background: #FFF4ED; border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; text-align: center; }
.cws__price-label { display: block; font-size: 0.75rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.cws__price-value { display: block; font-size: 1.75rem; font-weight: 800; color: #ff5722; line-height: 1.2; }
.cws__price-note { display: block; font-size: 0.75rem; color: #6c757d; margin-top: 0.25rem; }
.cws__features { list-style: none !important; padding: 0 !important; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; border-bottom: 1px solid #e9ecef; padding-bottom: 1.25rem !important; }
.cws__features li { font-size: 0.8125rem; color: #495057; padding-left: 1.25rem; position: relative; line-height: 1.5; }
.cws__features li::before { content: '✓'; position: absolute; left: 0; color: #ff5722; font-weight: 700; font-size: 0.75rem; }
.cws__ctas { display: flex; flex-direction: column; gap: 0.625rem; }
.cws__btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1rem; font-size: 0.875rem; font-weight: 600; text-decoration: none; border-radius: 8px; text-align: center; transition: background 0.2s ease; }
.cws__btn--wa { background: #25D366; color: #fff; }
.cws__btn--wa:hover { background: #1fb855; }
.cws__btn--tel { background: #f8f9fa; color: #1a1a2e; border: 1px solid #e0e0e0; }
.cws__btn--tel:hover { background: #e9ecef; }
.cws__packages { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #e9ecef; display: flex; flex-direction: column; gap: 0.5rem; }
.cws__packages-title { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6c757d; margin-bottom: 0.25rem; }
.cws__pkg { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0.875rem; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; text-decoration: none; transition: border-color 0.15s ease, background 0.15s ease; }
.cws__pkg:hover { border-color: #ff5722; background: #FFF4ED; }
.cws__pkg--active { border-color: #ff5722; background: #FFF4ED; }
.cws__pkg-label { font-size: 0.8125rem; font-weight: 600; color: #1a1a2e; }
.cws__pkg-price { font-size: 0.8125rem; font-weight: 700; color: #ff5722; }
@media (max-width: 1024px) { .cws { grid-template-columns: 1fr 280px; gap: 1.5rem; } }
@media (max-width: 860px) { .cws { grid-template-columns: 1fr; } .cws__sidebar { max-width: 480px; margin: 0 auto; } .cws__card { position: static; } }

/* ==========================================================================
   Gallery4x4 — migrado desde Gallery4x4.astro
   ========================================================================== */

.g4 { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 0.75rem !important; }
.g4__item { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; background: #f0f0f0; }
.g4__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1024px) { .g4 { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 640px) { .g4 { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; } }
@media (max-width: 380px) { .g4 { gap: 0.375rem !important; } .g4__item img { min-height: 80px; } }


/* ==========================================================================
   BlogLayout — migrado desde BlogLayout.astro (:global() → CSS estándar)
   ========================================================================== */

/* ──────────────────────────────────────────
   LAYOUT DE 2 COLUMNAS
   ────────────────────────────────────────── */
.blog-article-section {
  background: #f8f9fa;
  padding: 3rem 0 4rem;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.blog-article {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.blog-article__hero-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.blog-article__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 2.5rem 2.5rem 2rem;
}

.blog-content h2 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-secondary, #1C2B4A);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
  padding-left: 1rem;
  border-left: 4px solid var(--color-primary, #ff5722);
}

.blog-content h2:first-child { margin-top: 0; }

.blog-content h3 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-secondary, #1C2B4A);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.blog-content p {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #343a40;
  margin: 0 0 1.4rem;
}

.blog-content strong { font-weight: 700; color: var(--color-secondary, #1C2B4A); }
.blog-content em { font-style: italic; }

.blog-content ul,
.blog-content ol {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #343a40;
  margin: 0 0 1.4rem 0;
  padding-left: 0;
  list-style: none;
}

.blog-content ul li,
.blog-content ol li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  background: var(--color-primary, #ff5722);
  border-radius: 50%;
}

.blog-content ol { counter-reset: ol-counter; }
.blog-content ol li { counter-increment: ol-counter; }
.blog-content ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-primary, #ff5722);
  font-size: 0.875rem;
}

.blog-content a { color: var(--color-primary, #ff5722); text-decoration: none; }
.blog-content a:hover { text-decoration: underline; }

.blog-content blockquote {
  border-left: 4px solid var(--color-primary, #ff5722);
  background: rgba(255, 87, 34, 0.05);
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.blog-content blockquote p {
  margin: 0;
  color: var(--color-secondary, #1C2B4A);
  font-weight: 600;
  font-style: italic;
  font-size: 1.0625rem;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: block;
}

.blog-content figure { margin: 1.5rem 0; }
.blog-content figcaption {
  font-size: 0.8125rem;
  color: #6c757d;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.blog-content .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.9375rem;
}

.blog-content th {
  background: var(--color-secondary, #1C2B4A);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.blog-content th:first-child { border-radius: 0; }

.blog-content td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #e9ecef;
  color: #343a40;
  vertical-align: top;
}

.blog-content tr:last-child td { border-bottom: none; }
.blog-content tr:nth-child(even) td { background: #f8f9fa; }

.blog-article__cta {
  border-top: 1px solid #e9ecef;
  background: #f8f9fa;
  padding: 2.5rem;
}

.blog-article__cta-inner { max-width: 640px; }

.blog-article__cta h3 {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary, #1C2B4A);
  margin: 0 0 0.5rem;
}

.blog-article__cta p {
  font-size: 0.9375rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.blog-article__cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.blog-article-sidebar {
  position: sticky;
  top: calc(36px + 70px + 1.5rem);
}

.blog-related { padding: 3.5rem 0; }
.blog-related__header { margin-bottom: 2rem; }

.blog-related__title {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-secondary, #1C2B4A);
  margin: 0 0 0.5rem;
}

.blog-related__sub { font-size: 0.9375rem; color: #6c757d; margin: 0; }

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.blog-related__link { text-align: center; }

@media (max-width: 1200px) {
  .blog-article-layout { grid-template-columns: 1fr 280px; gap: 2rem; }
}

@media (max-width: 1024px) {
  .blog-article-layout { grid-template-columns: 1fr 260px; gap: 1.5rem; }
  .blog-content { padding: 2rem 2rem 1.75rem; }
  .blog-article__cta { padding: 2rem; }
}

@media (max-width: 900px) {
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-article-sidebar { position: static; order: 2; }
  .blog-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-article-section { padding: 1.5rem 0 2.5rem; }
  .blog-content { padding: 1.5rem 1.25rem; }
  .blog-article__cta { padding: 1.5rem 1.25rem; }
  .blog-article__cta-btns { flex-direction: column; }
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-related { padding: 2.5rem 0; }
}
