/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --naranja:   #f97316;
  --naranja-d: #ea6c0a;
  --dark:      #0a0a0a;
  --dark-2:    #141414;
  --dark-3:    #1e1e1e;
  --gris-1:    #f9fafb;
  --gris-2:    #f3f4f6;
  --gris-3:    #e5e7eb;
  --texto:     #111827;
  --texto-2:   #374151;
  --texto-3:   #6b7280;
  --blanco:    #ffffff;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--blanco);
  color: var(--texto);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ===== Header ===== */
header {
  background: var(--dark);
  padding: 0 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo span { color: var(--naranja); }

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0; margin: 0;
}

header nav ul li a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: 64px;
  line-height: 64px;
  transition: color 0.15s;
}

header nav ul li a:hover,
header nav ul li a.active { color: #fff; }

header nav ul li a.nav-clientes {
  color: var(--naranja) !important;
  border: 1.5px solid var(--naranja);
  border-radius: 6px;
  height: auto;
  line-height: normal;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  transition: background 0.15s, color 0.15s;
}

header nav ul li a.nav-clientes:hover {
  background: var(--naranja) !important;
  color: #fff !important;
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
  padding: 4rem 3rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1f1f1f;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-brand strong span { color: var(--naranja); }
.footer-brand p { color: #4b5563; font-size: 0.875rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  color: #374151;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--naranja); }
.footer-col p { font-size: 0.875rem; color: #4b5563; margin-bottom: 0.5rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #374151;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Shared ===== */
.txt-naranja { color: var(--naranja); }

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(249,115,22,0.08);
  color: var(--naranja);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(249,115,22,0.08);
  color: var(--naranja);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--texto);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.section-title span { color: var(--naranja); }
.section-sub { color: var(--texto-3); font-size: 1rem; line-height: 1.7; max-width: 540px; }

/* ===== Buttons ===== */
.btn-hero-naranja {
  display: inline-block;
  background: var(--naranja);
  color: #fff;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.btn-hero-naranja:hover { background: var(--naranja-d); transform: translateY(-1px); }

.btn-hero-dark {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #e5e7eb;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.btn-hero-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.btn-cta-naranja {
  display: inline-block;
  background: var(--naranja);
  color: #fff;
  border-radius: 8px;
  padding: 0.875rem 2.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.btn-cta-naranja:hover { background: var(--naranja-d); transform: translateY(-1px); }

.btn-cta-whatsapp {
  display: block;
  text-align: center;
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-cta-whatsapp:hover { opacity: 0.88; }

.btn-cta-naranja-block {
  display: block;
  text-align: center;
  background: var(--naranja);
  color: #fff;
  border-radius: 8px;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-cta-naranja-block:hover { opacity: 0.88; }

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-whatsapp:hover { opacity: 0.85; }

.btn-llamar {
  background: var(--gris-1);
  color: var(--naranja);
  border: 1px solid var(--gris-3);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-llamar:hover { background: #fff7ed; }

.btn-email {
  background: var(--naranja);
  color: #fff;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-email:hover { opacity: 0.85; }

.link-naranja { color: var(--naranja); text-decoration: none; }
.link-naranja:hover { text-decoration: underline; }

/* ===== HOME — Hero ===== */
.home-hero {
  background: var(--dark-2);
  color: #f9fafb;
  padding: 7rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.home-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.home-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,0.1);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  margin-bottom: 1.75rem;
}

.home-hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.home-hero h1 span { color: var(--naranja); }

.home-hero > .home-hero-inner > p {
  font-size: 1.1rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.home-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== HOME — Historia ===== */
.historia-section {
  background: var(--blanco);
  padding: 6rem 3rem;
}

.historia-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: center;
}

.historia-card {
  background: var(--dark-3);
  border-radius: 16px;
  padding: 2.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.historia-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--naranja), #fb923c);
}

.historia-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.historia-icono {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.historia-card-top strong { display: block; font-size: 0.9rem; font-weight: 700; color: #f9fafb; }
.historia-card-top span { font-size: 0.75rem; color: #6b7280; }

.historia-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
}

.hm-item {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.hm-item:last-child { border-right: none; }

.hm-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--naranja);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hm-item span {
  font-size: 0.65rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.historia-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.historia-badges span {
  font-size: 0.78rem;
  color: #9ca3af;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-weight: 500;
}

.historia-year {
  background: var(--naranja);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  display: inline-block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}

.historia-texto h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.historia-texto h2 span { color: var(--naranja); }
.historia-texto p { font-size: 1rem; color: var(--texto-3); line-height: 1.8; margin-bottom: 1rem; }

/* ===== HOME — Servicios ===== */
.home-servicios {
  background: var(--gris-1);
  padding: 6rem 3rem;
}

.home-servicios-inner { max-width: 1100px; margin: 0 auto; }

.home-servicios-inner > h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.home-servicios-inner > h2 span { color: var(--naranja); }
.home-servicios-inner > p { color: var(--texto-3); font-size: 1rem; margin-bottom: 3rem; }

.home-servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-servicios-grid-2 {
  grid-template-columns: repeat(2, 380px) !important;
  justify-content: center;
}

.home-serv-card {
  background: var(--blanco);
  border-radius: 12px;
  border: 1px solid var(--gris-3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.home-serv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--naranja);
}

.home-serv-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: #fff7ed;
  color: var(--naranja);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
}

.home-serv-icono {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.icono-naranja { background: linear-gradient(135deg, #f97316, #fb923c); }
.icono-azul    { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.icono-teal    { background: linear-gradient(135deg, #0f766e, #14b8a6); }

.home-serv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--texto);
  letter-spacing: -0.01em;
}

.home-serv-card p { font-size: 0.9rem; color: var(--texto-3); line-height: 1.7; flex: 1; }

.home-serv-cta {
  color: var(--naranja);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.home-serv-cta:hover { text-decoration: underline; }

/* ===== HOME — CTA ===== */
.home-cta {
  background: var(--blanco);
  padding: 6rem 3rem;
  text-align: center;
  border-top: 1px solid var(--gris-3);
}

.home-cta-inner { max-width: 640px; margin: 0 auto; }

.home-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--texto);
}

.home-cta p { color: var(--texto-3); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }

.home-cta-tags {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: #9ca3af;
}

/* ===== Responsive HOME ===== */
@media (max-width: 960px) {
  .historia-inner { grid-template-columns: 1fr; gap: 3rem; }
  .home-servicios-grid { grid-template-columns: 1fr 1fr; }
  .home-hero h1 { font-size: 2.75rem; }
}

@media (max-width: 800px) {
  .home-servicios-grid-2 { grid-template-columns: 1fr !important; }
}

@media (max-width: 560px) {
  .home-servicios-grid { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 2.2rem; }
  .home-cta h2 { font-size: 2rem; }
  header { padding: 0 1.5rem; }
}

/* ===== Servicios — Hero ===== */
.servicios-hero {
  background: var(--dark-2);
  color: #f9fafb;
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.servicios-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.servicios-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(249,115,22,0.1);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.servicios-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.servicios-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.servicios-hero h1 span { color: var(--naranja); }
.servicios-hero .subtitulo { color: #9ca3af; font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }

.hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.hero-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.cotizar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
}

.cotizar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: #f9fafb; }
.cotizar-card p { font-size: 0.85rem; color: #6b7280; margin-bottom: 1.25rem; line-height: 1.5; }

.cotizar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.cotizar-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.cotizar-item:hover { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.3); }
.cotizar-item strong { display: block; font-size: 0.85rem; color: #f3f4f6; margin-bottom: 0.15rem; font-weight: 600; }
.cotizar-item span { font-size: 0.7rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== Servicios — Grid ===== */
.servicios-section {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 3rem;
}

.servicios-section h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.servicios-section h2 span { color: var(--naranja); }

.servicios-section .subtitulo {
  text-align: center;
  color: var(--texto-3);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.servicio-card {
  background: var(--blanco);
  border-radius: 12px;
  border: 1px solid var(--gris-3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--naranja);
}

.servicio-card .icono {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.servicio-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--texto); letter-spacing: -0.01em; }
.servicio-card p { font-size: 0.9rem; color: var(--texto-3); line-height: 1.7; flex: 1; }

.servicio-card .tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.servicio-card .tags span {
  background: var(--gris-1);
  color: var(--texto-3);
  border: 1px solid var(--gris-3);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
}

.servicio-card .cta { color: var(--naranja); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: 0.25rem; }
.servicio-card .cta:hover { text-decoration: underline; }

.card-orange { border-top: 3px solid var(--naranja); }
.card-orange .icono { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; }

.card-teal   { border-top: 3px solid #0f766e; }
.card-teal   .icono { background: linear-gradient(135deg, #0f766e, #14b8a6); color: #fff; }

.card-purple { border-top: 3px solid #7c3aed; }
.card-purple .icono { background: linear-gradient(135deg, #7c3aed, #8b5cf6); color: #fff; }

.card-blue   { border-top: 3px solid #1d4ed8; }
.card-blue   .icono { background: linear-gradient(135deg, #1d4ed8, #3b82f6); color: #fff; }

.card-green  { border-top: 3px solid #15803d; }
.card-green  .icono { background: linear-gradient(135deg, #15803d, #22c55e); color: #fff; }

.card-gray   { border-top: 3px solid #9ca3af; background: var(--gris-1); }
.card-gray   .icono { background: linear-gradient(135deg, #6b7280, #9ca3af); color: #fff; }

@media (max-width: 960px) {
  .servicios-hero-inner { grid-template-columns: 1fr; }
  .cotizar-card { display: none; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 560px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .servicios-hero h1 { font-size: 2rem; }
}

/* ===== Contacto — Hero ===== */
.contacto-hero {
  background: var(--dark-2);
  color: #f9fafb;
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.contacto-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contacto-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contacto-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(249,115,22,0.1);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.contacto-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.contacto-hero h1 span { color: var(--naranja); }
.contacto-hero .subtitulo { color: #9ca3af; font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }

.contacto-hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chc-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chc-item:last-of-type { border-bottom: none; padding-bottom: 0; }

.chc-icono {
  width: 38px; height: 38px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chc-item strong { display: block; font-size: 0.72rem; color: #6b7280; margin-bottom: 0.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.chc-item span { font-size: 0.9rem; color: #f3f4f6; font-weight: 600; }

.chc-btns { display: flex; gap: 0.6rem; margin-top: 0.25rem; }

.chc-btns .btn-hero-naranja,
.chc-btns .btn-hero-dark {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.65rem 0.5rem;
}

/* ===== Contacto — Cotizar ===== */
.cotizar-section {
  background: var(--blanco);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--gris-3);
}

.cotizar-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.cotizar-texto .section-title { margin-bottom: 0.5rem; }
.cotizar-texto .section-sub { margin-bottom: 2.5rem; }
.pasos-lista { display: flex; flex-direction: column; }

.cotizar-section .paso {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gris-3);
}

.cotizar-section .paso:last-of-type { border-bottom: none; }

.cotizar-section .paso-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--naranja);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cotizar-section .paso strong { display: block; font-size: 0.95rem; color: var(--texto); margin-bottom: 0.3rem; font-weight: 600; }
.cotizar-section .paso p { font-size: 0.875rem; color: var(--texto-3); line-height: 1.6; }
.cotizar-section .cta-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }

.emergencia-card {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 1.75rem;
}

.emergencia-card .card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.emergencia-sub { font-size: 0.875rem; color: #92400e; margin-bottom: 1.25rem; line-height: 1.6; }

.emergencia-inner {
  background: var(--naranja);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.emergencia-inner strong { display: block; color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 500; }
.emergencia-inner p { color: #fff; font-size: 1.05rem; font-weight: 700; }

.btn-llamar-ahora {
  background: #fff;
  color: var(--naranja);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.btn-llamar-ahora:hover { opacity: 0.9; }

.emergencia-info { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #fed7aa; }
.ei-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: #92400e; }
.ei-item span { font-size: 1rem; }
.ei-item p { margin: 0; }

/* ===== Cobertura ===== */
.cobertura-section {
  background: var(--gris-1);
  padding: 5rem 3rem;
  border-top: 1px solid var(--gris-3);
  border-bottom: 1px solid var(--gris-3);
}

.cobertura-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.cobertura-inner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.cobertura-inner h2 span { color: var(--naranja); }
.cobertura-inner > p { color: var(--texto-3); font-size: 1rem; max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }

.cobertura-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.cobertura-item {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: 12px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.cobertura-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--naranja);
}

.cobertura-icono {
  width: 52px; height: 52px;
  background: var(--dark-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.cobertura-item strong { font-size: 0.9rem; color: var(--texto); font-weight: 700; }
.cobertura-item span { font-size: 0.8rem; color: var(--texto-3); }

/* ===== FAQ ===== */
.faq-section { background: var(--blanco); padding: 5rem 3rem; border-top: 1px solid var(--gris-3); }

.faq-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.faq-inner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.faq-inner h2 span { color: var(--naranja); }
.faq-inner > p { color: var(--texto-3); font-size: 1rem; margin-bottom: 2.5rem; }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; text-align: left; }

.faq-card {
  background: var(--gris-1);
  border: 1px solid var(--gris-3);
  border-left: 3px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
}

.faq-card strong { display: block; font-size: 0.9rem; color: var(--texto); margin-bottom: 0.6rem; line-height: 1.45; font-weight: 600; }
.faq-card p { font-size: 0.875rem; color: var(--texto-3); line-height: 1.7; }

.faq-naranja { border-left-color: var(--naranja); }
.faq-teal    { border-left-color: #0f766e; }
.faq-verde   { border-left-color: #15803d; }

/* Contacto misc */
.contacto-btns { display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }

@media (max-width: 960px) {
  .contacto-hero-inner { grid-template-columns: 1fr; }
  .contacto-hero-card { max-width: 400px; }
  .cotizar-section-inner { grid-template-columns: 1fr; }
  .contacto-hero h1 { font-size: 2.5rem; }
  .cobertura-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .contacto-hero h1 { font-size: 2rem; }
  .cobertura-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Hero split con login ===== */
.home-hero-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
}

/* ===== Intranet Login Box ===== */
.intranet-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.intranet-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.intranet-icon { font-size: 1.4rem; }

.intranet-header strong {
  display: block;
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 700;
}

.intranet-header span { font-size: 0.75rem; color: #6b7280; }

.intranet-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.intranet-field label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.intranet-field input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: #f9fafb;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}

.intranet-field input::placeholder { color: #4b5563; }
.intranet-field input:focus { border-color: var(--naranja); }

.intranet-error {
  color: #f87171;
  font-size: 0.8rem;
  min-height: 1.1rem;
  margin-bottom: 0.5rem;
}

.btn-intranet {
  width: 100%;
  background: var(--naranja);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.btn-intranet:hover { background: var(--naranja-d); transform: translateY(-1px); }
.btn-intranet:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.intranet-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 1rem;
}

.intranet-footer a { color: var(--naranja); text-decoration: none; }
.intranet-footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .home-hero-split { grid-template-columns: 1fr; }
  .intranet-box { max-width: 400px; }
}

/* ===== Portal — Nav específico ===== */
.nav-center ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0; margin: 0;
}

.nav-center ul li a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: 64px;
  line-height: 64px;
  transition: color 0.15s;
}

.nav-center ul li a:hover,
.nav-center ul li a.active { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-portal-label {
  font-size: 0.72rem;
  color: #374151;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-cerrar-sesion {
  background: transparent;
  border: 1.5px solid #374151;
  color: #6b7280;
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-cerrar-sesion:hover { border-color: #f87171; color: #f87171; }

/* ===== Portal — Loading ===== */
.portal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1rem;
  color: var(--texto-3);
  font-size: 0.9rem;
}

.loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--gris-3);
  border-top-color: var(--naranja);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Portal — Hero bienvenida ===== */
.portal-hero {
  background: var(--dark-2);
  color: #f9fafb;
  padding: 5rem 3rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.portal-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.portal-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(249,115,22,0.1);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.portal-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.portal-hero h1 span { color: var(--naranja); }

.portal-rut {
  font-size: 0.78rem;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portal-sub { font-size: 1rem; color: #9ca3af; line-height: 1.75; max-width: 520px; }

.portal-hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.phc-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: background 0.15s;
  cursor: pointer;
}

.phc-item:last-child { border-bottom: none; }
.phc-item:hover { background: rgba(255,255,255,0.04); }

.phc-icono {
  width: 36px; height: 36px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.phc-item strong { display: block; font-size: 0.85rem; color: #f3f4f6; font-weight: 600; }
.phc-item span { font-size: 0.75rem; color: #6b7280; }

/* ===== Portal — Accesos rápidos ===== */
.portal-accesos {
  background: var(--gris-1);
  padding: 5rem 3rem;
  flex: 1;
}

.portal-accesos-inner { max-width: 1100px; margin: 0 auto; }

.portal-accesos h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

.portal-accesos h2 span { color: var(--naranja); }

.accesos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.acceso-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.acceso-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--naranja);
}

.acceso-icono {
  width: 48px; height: 48px;
  background: var(--gris-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.acceso-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--texto); }
.acceso-card p { font-size: 0.875rem; color: var(--texto-3); line-height: 1.6; flex: 1; }

.acceso-pronto {
  display: inline-block;
  background: var(--gris-2);
  color: var(--texto-3);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}

.btn-acceso-naranja {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  align-self: flex-start;
}

.btn-acceso-naranja:hover { opacity: 0.85; }

@media (max-width: 960px) {
  .portal-hero-inner { grid-template-columns: 1fr; }
  .portal-hero-card { max-width: 400px; }
  .accesos-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 560px) {
  .accesos-grid { grid-template-columns: 1fr; }
  .portal-hero h1 { font-size: 1.8rem; }
}

/* ===== Dashboard layout ===== */
.dashboard {
  display: flex;
  flex: 1;
  min-height: calc(100vh - 64px - 180px);
}

/* ===== Sidebar ===== */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--dark);
  border-right: 1px solid #1f1f1f;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar-perfil {
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid #1f1f1f;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.sidebar-avatar {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.sidebar-perfil strong {
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.sidebar-perfil span {
  color: #4b5563;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0.75rem;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  color: #6b7280;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.sidebar-link:hover { background: rgba(255,255,255,0.05); color: #e5e7eb; }
.sidebar-link.active { background: rgba(249,115,22,0.1); color: var(--naranja); font-weight: 600; }

.sidebar-icon { font-size: 1rem; flex-shrink: 0; }

.sidebar-logout {
  margin: 1rem 0.75rem 0;
  background: transparent;
  border: 1px solid #374151;
  color: #6b7280;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-align: left;
}

.sidebar-logout:hover { border-color: #f87171; color: #f87171; }

/* ===== Dashboard main ===== */
.dashboard-main {
  flex: 1;
  padding: 2.5rem 3rem;
  background: var(--gris-1);
  overflow-y: auto;
}

/* ===== Portal hero dentro del dashboard ===== */
.portal-hero-dash {
  background: var(--dark-2);
  border-radius: 14px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.portal-hero-dash::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.portal-hero-dash h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0.5rem;
  position: relative;
}

.portal-hero-dash h1 span { color: var(--naranja); }
.portal-hero-dash p { color: #9ca3af; font-size: 0.95rem; position: relative; }

/* ===== Dash cards ===== */
.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dash-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.dash-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--naranja);
}

.dash-card-icon { font-size: 1.75rem; margin-bottom: 0.25rem; }
.dash-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--texto); }
.dash-card p { font-size: 0.83rem; color: var(--texto-3); line-height: 1.5; flex: 1; }
.dash-card-link { color: var(--naranja); font-size: 0.82rem; font-weight: 600; }

/* ===== Secciones internas ===== */
.seccion-header {
  margin-bottom: 2rem;
}

.seccion-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}

.seccion-header h2 span { color: var(--naranja); }
.seccion-header p { color: var(--texto-3); font-size: 0.95rem; }

.seccion-vacia {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: 14px;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vacia-icono { font-size: 3rem; opacity: 0.3; }
.seccion-vacia h3 { font-size: 1rem; font-weight: 700; color: var(--texto-2); }
.seccion-vacia p { font-size: 0.875rem; color: var(--texto-3); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dashboard { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; padding: 1rem; }
  .sidebar-perfil { display: none; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; padding: 0; }
  .sidebar-logout { margin: 0; }
  .dashboard-main { padding: 1.5rem; }
  .dash-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .dash-cards { grid-template-columns: 1fr; }
}
