/* =============================================
   JFC Consultoría y Análisis SAS — Estilos
   ============================================= */

:root {
  --navy: #0D3B6E;
  --navy-light: #1A5FAD;
  --gold: #4AB8E8;
  --gold-light: #7ECEF2;
  --white: #FFFFFF;
  --gray-50: #F5F8FB;
  --gray-100: #E8EFF6;
  --gray-400: #9BA3AF;
  --gray-700: #374151;
  --gray-900: #111827;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(13,59,110,0.10);
  --shadow-lg: 0 8px 40px rgba(13,59,110,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(13,59,110,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.logo-link { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-img-group { display: flex; align-items: center; gap: 6px; }
.logo-img { height: 96px; width: auto; object-fit: contain; }
.logo-sas {
  color: var(--navy-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  align-self: flex-end;
  margin-bottom: 5px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.5px;
  align-items: center;
}
.logo-text span { color: var(--navy-light); }
.logo-nombre {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.logo-nombre span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy-light);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.logo-nit {
  font-family: var(--font-body) !important;
  font-size: 0.70rem !important;
  color: var(--gray-400) !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  white-space: nowrap !important;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  color: var(--navy-light);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 7px 16px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.83rem !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}
.btn-nav:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.btn-portal {
  background: transparent !important;
  color: var(--navy-light) !important;
  border: 1.5px solid var(--navy-light) !important;
  font-size: 0.83rem !important;
}
.btn-portal:hover { background: var(--navy-light) !important; color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 12px 24px 20px;
  gap: 16px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to right, rgba(10,20,45,0.88) 45%, rgba(10,20,45,0.45) 100%),
    url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1600&q=80');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  width: 100%;
  max-width: 860px;
}

/* Texto animado JFC */
.hero-anim-wrap {
  margin-bottom: 48px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-line {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-line.line-1 { animation-delay: 0.3s; }
.hero-line.line-2 { animation-delay: 1.1s; }
.hero-line.line-3 { animation-delay: 1.9s; }
.hero-line.line-4 { animation-delay: 2.7s; }

.jfc-letter {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* Sigla JFC que aparece al final */
@keyframes jfcAppear {
  0%   { opacity: 0; letter-spacing: 40px; }
  100% { opacity: 1; letter-spacing: 10px; }
}
.jfc-formed {
  display: flex;
  gap: 0;
  margin-top: 16px;
  opacity: 0;
  animation: jfcAppear 1.2s ease forwards;
  animation-delay: 3.8s;
}
.jfc-formed span {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 10px;
  line-height: 1;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ===================== PANELES DE SERVICIOS ===================== */
.service-panels-section { width: 100%; }

.service-panels {
  display: flex;
  height: 220px;
}

.service-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  cursor: default;
  transition: flex 0.5s cubic-bezier(0.4,0,0.2,1), background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-panel:last-child { border-right: none; }
.service-panel:hover {
  flex: 2.8;
  background: #16335e;
}

/* Contenido por defecto */
.panel-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 32px 24px;
  transition: opacity 0.25s ease;
  position: absolute;
  width: 100%;
}
.service-panel:hover .panel-default {
  opacity: 0;
  pointer-events: none;
}
.panel-icon { line-height: 0; }
.panel-default h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy);
  line-height: 1.5;
}

/* Contenido al hacer hover */
.panel-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 40px;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
  pointer-events: none;
  min-width: 320px;
}
.service-panel:hover .panel-hover,
.service-panel.panel-activo .panel-hover {
  opacity: 1;
  pointer-events: all;
}

/* Dispositivos táctiles: mostrar el contenido siempre visible */
@media (hover: none) {
  .panel-hover {
    opacity: 1;
    pointer-events: all;
    background: rgba(10, 20, 45, 0.80);
  }
}
.panel-hover p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
}
.leer-mas-btn {
  align-self: center;
  background: transparent;
  border: 1.5px solid #C9A84C;
  color: #C9A84C;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.leer-mas-btn:hover { background: #C9A84C; color: var(--navy); }

/* ===================== MODALES ===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,48,0.75);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 44px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  border-top: 4px solid #C9A84C;
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-box h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.modal-box p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}
.modal-box strong { color: var(--navy); }
.modal-box ul {
  margin: 8px 0 16px 20px;
}
.modal-box li {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 8px;
  text-align: justify;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; text-align: center; font-size: 1rem; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ===================== STATS ===================== */
.stats {
  background: var(--navy);
  padding: 40px 0;
  border-top: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-sub {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ===================== QUIÉNES SOMOS ===================== */
.nosotros {
  padding: 96px 0;
  background: var(--white);
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.nosotros-text p {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}
.valores { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.valor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.valor-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 8px;
  flex-shrink: 0;
}
.valor strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.valor p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.5; margin: 0; }

.servicios-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 36px;
}
.servicios-box h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.servicios-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.servicios-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.servicio-icon {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
}
.servicios-list strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.servicios-list p {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

/* ===================== CLIENTES ===================== */
.clientes {
  padding: 96px 0;
  background: var(--gray-50);
}
/* --- Carrusel de logos --- */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-carousel {
  overflow: hidden;
  margin-bottom: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logos-track {
  display: flex;
  gap: 24px;
  animation: marquee 36s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.logo-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 16px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 3px solid var(--gold);
  min-width: 160px;
  max-width: 160px;
  flex-shrink: 0;
}
.logo-card img {
  max-width: 110px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-card span {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.3;
}

/* --- Nombres grid (clientes sin logo) --- */
.nombres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.nombre-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-left: 3px solid var(--gold);
}
.nombre-card:hover { transform: translateY(-2px); }
.nombre-inicial {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nombre-card strong {
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.4;
}

.testimonio {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  position: relative;
}
.testimonio::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 32px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonio blockquote {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 16px;
}
.testimonio cite {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
}

/* ===================== CONTACTO ===================== */
.contacto {
  padding: 96px 0;
  background: var(--white);
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contacto-info .section-tag { text-align: left; }
.contacto-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contacto-info > p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
  text-align: justify;
}
.info-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.info-list strong { display: block; color: var(--navy); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.info-list a, .info-list span { color: var(--gray-700); text-decoration: none; font-size: 0.95rem; }
.info-list a:hover { color: var(--gold); }

/* FORM */
.contacto-form {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contacto-form h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-ok {
  margin-top: 16px;
  padding: 12px 16px;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-logo-img-group { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.footer-logo-sas {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  align-self: flex-end;
  margin-bottom: 8px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.84rem; line-height: 1.7; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ===================== BLOG ===================== */
.blog { padding: 96px 0; background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-fecha { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; flex: 1; text-align: justify; }
.blog-leer { font-size: 0.85rem; font-weight: 600; color: var(--navy-light); text-decoration: none; margin-top: 4px; }
.blog-leer:hover { text-decoration: underline; }

/* ===================== ENLACES DE INTERÉS ===================== */
.enlaces { padding: 80px 0; background: var(--white); }
.enlaces-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.enlace-card { display: flex; flex-direction: column; gap: 8px; background: var(--gray-50); border-radius: 16px; padding: 28px 24px; text-decoration: none; border-left: 4px solid var(--navy); transition: transform 0.2s, box-shadow 0.2s; }
.enlace-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.enlace-icon { font-size: 2rem; }
.enlace-card strong { font-size: 0.98rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.enlace-card span { font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; }
.enlace-url { font-size: 0.78rem !important; color: var(--navy-light) !important; font-weight: 600 !important; margin-top: 4px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nosotros-grid, .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .nombres-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .nombres-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .enlaces-grid { grid-template-columns: 1fr; }
  .testimonio { padding: 32px 24px; }
  .servicios-box { padding: 28px 24px; }
  .contacto-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .logos-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
