@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #121923;
  --marengo: #18212d;
  --marengo-soft: #253141;
  --muted: #65717f;
  --soft: #f3f6f9;
  --line: #d5dde6;
  --white: #ffffff;
  --blue: #1267b3;
  --blue-deep: #083b74;
  --blue-soft: #e8f1fb;
  --steel: #eef2f6;
  --petrol: #0f5f88;
  --petrol-dark: #073454;
  --turquoise: #12b7c2;
  --turquoise-dark: #0b8fa0;
  --disabled: #e8edf1;
  --disabled-text: #8998a2;
  --shadow: 0 22px 54px rgba(18, 25, 35, 0.12);
  --shadow-hover: 0 28px 62px rgba(18, 25, 35, 0.17);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(213, 221, 230, 0.9);
  box-shadow: 0 10px 32px rgba(18, 25, 35, 0.07);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-copy,
.footer-brand span {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--marengo);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy span,
.footer-brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3d4b5a;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.side-menu {
  display: none;
}

.side-menu-inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(18, 103, 179, 0.94), rgba(8, 59, 116, 0.9) 43%, rgba(18, 25, 35, 0.96)),
    radial-gradient(circle at 24% 10%, rgba(255, 255, 255, 0.24), transparent 28%);
  box-shadow: 0 26px 60px rgba(8, 59, 116, 0.25);
}

.side-logo,
.side-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.side-logo {
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.side-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
}

.side-logo span {
  display: grid;
  line-height: 1.12;
}

.side-logo strong {
  font-size: 0.88rem;
  font-weight: 800;
}

.side-logo small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
}

.side-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.side-link {
  gap: 11px;
  min-height: 46px;
  padding: 0.76rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.side-link:hover,
.side-link:focus-visible {
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(18, 103, 179, 0.22));
  outline: none;
}

.side-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-note {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.side-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--blue-deep);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.side-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.products {
  min-height: calc(100vh - 68px);
  padding: 74px 0 42px;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-band h2 {
  margin: 0 0 8px;
  color: var(--marengo);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(213, 221, 230, 0.92);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 103, 179, 0.3);
  box-shadow: var(--shadow-hover);
}

.product-top,
.product-identity,
.product-meta,
.product-actions {
  display: flex;
  align-items: center;
}

.product-top {
  justify-content: space-between;
  gap: 18px;
}

.product-identity {
  min-width: 0;
  gap: 14px;
}

.product-logo {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid #e5eef4;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
}

.product-identity h3 {
  margin: 0 0 6px;
  color: #020b14;
  font-size: 1.28rem;
  line-height: 1.1;
}

.category-label,
.status-badge,
.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.category-label {
  padding: 0.28rem 0.62rem;
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.status-badge {
  flex: 0 0 auto;
  padding: 0.34rem 0.72rem;
}

.status-maestro {
  color: #064c86;
  background: #e6f1fb;
}

.status-vendemas {
  color: #64717a;
  background: #f0f4f7;
}

.product-body h4 {
  margin: 0 0 8px;
  color: #071827;
  font-size: 1.38rem;
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-pill {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0.56rem 0.7rem;
  border: 1px solid #e1edf3;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f7fa);
  color: #405866;
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-pill svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-pill span {
  overflow-wrap: anywhere;
}

.product-meta {
  flex-wrap: wrap;
  gap: 9px;
}

.product-meta span {
  padding: 0.36rem 0.72rem;
  border: 1px solid #e1edf3;
  color: #415162;
  background: var(--steel);
}

.product-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: 142px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 28px rgba(18, 103, 179, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(18, 103, 179, 0.26);
}

.btn-secondary {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(18, 103, 179, 0.34);
  box-shadow: 0 12px 26px rgba(16, 43, 54, 0.08);
}

.btn-disabled,
.is-disabled {
  color: var(--disabled-text);
  background: var(--disabled);
  box-shadow: none;
  cursor: not-allowed;
}

.is-disabled {
  pointer-events: none;
}

.btn-disabled:hover,
.btn-disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

.contact {
  padding: 42px 0 64px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, #ffffff, #eef3f8);
  box-shadow: 0 14px 36px rgba(16, 43, 54, 0.08);
}

.whatsapp-btn {
  flex: 0 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, #20c86f, #0a9f57 52%, #087b45);
  box-shadow: 0 14px 28px rgba(10, 159, 87, 0.22);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (min-width: 1180px) {
  .side-menu {
    position: fixed;
    top: 92px;
    bottom: 24px;
    left: 24px;
    z-index: 12;
    display: block;
    width: 220px;
  }

  main,
  .site-footer {
    margin-left: 244px;
  }

  .container {
    width: calc(100% - 56px);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

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

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand-icon,
  .footer-brand img {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .products {
    min-height: auto;
    padding: 52px 0 34px;
  }

  .product-card {
    padding: 20px;
    border-radius: 20px;
  }

  .product-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-logo {
    width: 52px;
    height: 52px;
  }


  .feature-list {
    grid-template-columns: 1fr;
  }

  .product-actions,
  .product-actions .btn,
  .whatsapp-btn {
    width: 100%;
  }

  .product-actions .btn {
    min-width: 0;
  }

  .contact {
    padding: 34px 0 52px;
  }

  .contact-band {
    padding: 22px;
    border-radius: 20px;
  }

  .footer-inner {
    min-height: auto;
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================================================
   POLÍTICA DE PRIVACIDAD - ESTILOS DEDICADOS
   ========================================================================== */

.policy-page {
  padding: 48px 0 80px;
}

.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.policy-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
}

.policy-breadcrumbs a:hover {
  color: var(--blue-deep);
  transform: translateX(-2px);
}

.policy-breadcrumbs svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.policy-hero {
  position: relative;
  padding: 36px 40px;
  margin-bottom: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fd 60%, #e8f2fc 100%);
  border: 1px solid rgba(18, 103, 179, 0.2);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(18, 25, 35, 0.06);
  overflow: hidden;
}

.policy-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(18, 103, 179, 0.12) 0%, rgba(18, 103, 179, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.policy-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.38rem 0.86rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(18, 103, 179, 0.12);
  border: 1px solid rgba(18, 103, 179, 0.25);
}

.policy-badge svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.policy-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
}

.policy-hero h1 {
  margin: 0 0 12px;
  color: var(--marengo);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.policy-hero p.lead {
  margin: 0 0 20px;
  max-width: 820px;
  color: #4a5968;
  font-size: 1.08rem;
  line-height: 1.6;
}

.policy-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 221, 230, 0.8);
}

.policy-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #405466;
}

.policy-hero-meta-item img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.policy-hero-meta-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}

/* Layout 2 columnas con Sticky Sidebar */
.policy-grid-container {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: start;
  gap: 36px;
}

.policy-sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(18, 25, 35, 0.05);
  scrollbar-width: thin;
  scrollbar-color: #ccd7e4 transparent;
}

.policy-sidebar::-webkit-scrollbar {
  width: 5px;
}

.policy-sidebar::-webkit-scrollbar-thumb {
  background-color: #ccd7e4;
  border-radius: 4px;
}

.policy-sidebar h4 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--marengo);
  font-size: 0.94rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-sidebar h4 svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}

.policy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.policy-toc-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #4b5966;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  transition: all 140ms ease;
}

.policy-toc-link .toc-num {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 20px;
}

.policy-toc-link:hover,
.policy-toc-link.is-active {
  background: var(--blue-soft);
  color: var(--blue-deep);
  transform: translateX(3px);
}

.policy-toc-link.is-active {
  font-weight: 700;
  border-left: 3px solid var(--blue);
}

/* Área Principal del Contenido */
.policy-content-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(18, 25, 35, 0.06);
  padding: 44px 48px;
}

.policy-section {
  scroll-margin-top: 96px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #edf2f7;
}

.policy-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.policy-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border: 1px solid rgba(18, 103, 179, 0.25);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
}

.policy-section h2 {
  margin: 0;
  color: var(--marengo);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
}

.policy-section h3 {
  margin: 22px 0 10px;
  color: #1a2a3a;
  font-size: 1.12rem;
  font-weight: 700;
}

.policy-section p {
  margin: 0 0 14px;
  color: #3b4956;
  font-size: 0.98rem;
  line-height: 1.72;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  margin: 12px 0 18px 20px;
  padding: 0;
  color: #3b4956;
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-section li strong {
  color: var(--marengo);
}

/* Cajas de Aviso Destacadas (Callouts) */
.policy-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  margin: 20px 0;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  line-height: 1.6;
}

.policy-callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.policy-callout-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
  fill: none;
}

.policy-callout-body strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.policy-callout-body p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.policy-callout-primary {
  background: #f0f6fd;
  border-color: #c9e0f7;
  color: #124c7f;
}

.policy-callout-primary .policy-callout-icon svg {
  stroke: var(--blue);
}

.policy-callout-primary strong {
  color: var(--blue-deep);
}

.policy-callout-success {
  background: #f0fbf5;
  border-color: #bfe9d2;
  color: #125e36;
}

.policy-callout-success .policy-callout-icon svg {
  stroke: #109f58;
}

.policy-callout-success strong {
  color: #0b6839;
}

.policy-callout-warning {
  background: #fff9ed;
  border-color: #f7e0b5;
  color: #82540b;
}

.policy-callout-warning .policy-callout-icon svg {
  stroke: #c8830f;
}

.policy-callout-warning strong {
  color: #794a05;
}

/* Tabla de datos de privacidad */
.policy-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.policy-table th {
  background: #f4f7fa;
  color: var(--marengo);
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f7;
  color: #3b4956;
  line-height: 1.5;
  vertical-align: top;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:hover td {
  background: #fafcff;
}

.table-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.table-tag-local {
  background: #e6f6ee;
  color: #0c7743;
}

.table-tag-server {
  background: #eaf1fb;
  color: #125699;
}

/* Tarjeta de Contacto Oficial */
.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfe;
  text-decoration: none;
  color: inherit;
  transition: all 160ms ease;
}

.contact-card-item:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 103, 179, 0.4);
  box-shadow: 0 10px 24px rgba(18, 25, 35, 0.08);
  background: #ffffff;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--blue-soft);
  color: var(--blue);
}

.contact-card-icon.whatsapp {
  background: #e6f8ef;
  color: #0ea65a;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-card-info strong {
  display: block;
  font-size: 0.94rem;
  color: var(--marengo);
  margin-bottom: 2px;
}

.contact-card-info span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Responsividad para Política */
@media (max-width: 1040px) {
  .policy-grid-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .policy-sidebar {
    position: static;
    max-height: none;
    padding: 18px;
  }

  .policy-toc-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .policy-page {
    padding: 28px 0 54px;
  }

  .policy-hero {
    padding: 24px 20px;
    border-radius: 18px;
    margin-bottom: 24px;
  }

  .policy-hero h1 {
    font-size: 1.85rem;
  }

  .policy-content-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .policy-section h2 {
    font-size: 1.25rem;
  }

  .policy-callout {
    padding: 16px;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .policy-toc-list {
    grid-template-columns: 1fr;
  }
  
  .policy-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

