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

:root {
  /* Palette design system */
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  --primary-dark: #0c4a6e;
  
  --secondary: #f59e0b;
  --secondary-hover: #d97706;
  --secondary-light: #fef3c7;
  
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --text-dark: #0f172a;
  
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-glass: rgba(255, 255, 255, 0.8);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-primary: 0 10px 20px -3px rgba(2, 132, 199, 0.25);
  --shadow-warm: 0 10px 20px -3px rgba(245, 158, 11, 0.25);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-round: 9999px;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 1rem; /* 16px base */
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TIPOGRAFÍA UNIFICADA ---------- */
/* Todos los párrafos y listas usan la misma base */
p, li, .text-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

/* Texto secundario (más claro y ligeramente más pequeño) */
.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Texto muy pequeño (etiquetas, pies) */
.text-small {
  font-size: 0.85rem;
}

/* Títulos de sección */
.section-title-new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.section-title-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-round);
}

.section-title-left {
  text-align: left;
}
.section-title-left::after {
  left: 0;
  transform: none;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 8px;
}

/* ---------- FIN TIPOGRAFÍA ---------- */

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  max-height: 60px;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 36px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}
.nav-link:hover { color: var(--primary); }

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-primary);
  font-size: 0.9rem;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(2, 132, 199, 0.35);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--gradient-dark);
  color: white;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 30%, rgba(15, 23, 42, 0.6) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-round);
  font-size: 0.85rem;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 580px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-round);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(2, 132, 199, 0.4);
  color: white;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

/* SENCAMER card */
.hero-card-sencamer {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--primary);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.8s ease-out;
}
.hero-card-sencamer h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.hero-card-sencamer p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
}
.sencamer-badge-inner {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sencamer-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.sencamer-detail-item {
  font-size: 0.8rem;
  color: #cbd5e1;
}
.sencamer-detail-item i {
  color: var(--primary);
  margin-right: 6px;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  padding: 80px 0;
}

.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Los párrafos dentro de .about-section ahora usan la base, solo se personaliza el margen */
.about-text {
  /* hereda de p */
}
.about-text-muted {
  /* usa .text-muted si se aplica en el HTML, aquí se deja por si se usa */
}

.founder-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  opacity: 0.8;
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--primary-light);
  margin-top: 24px;
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-light);
}
.timeline-year {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-text {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-main);
  display: inline; /* para que no rompa el flujo */
}

.about-founder {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: var(--radius-round);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.about-founder i {
  font-size: 1.2rem;
}

/* Misión / Visión cards */
.mv-card {
  background: var(--light-card);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mv-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.mv-card p {
  /* hereda de p, pero se puede ajustar margen */
  margin-bottom: 0;
}
.mv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mv-icon-wrapper {
  background: var(--primary);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== ACCREDITATION ===== */
.accreditation-section {
  padding: 40px 0;
}
.accreditation-banner {
  background: var(--gradient-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.accreditation-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.accreditation-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 10;
}
.accred-details {
  flex: 1;
  min-width: 300px;
}
.accred-tag {
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: var(--shadow-primary);
}
.accred-details h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.accred-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #94a3b8;
}
.accred-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.accred-meta-item {
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.accred-meta-item i { color: #38bdf8; }

.accred-stamp {
  background: white;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--secondary);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  animation: pulse 3s infinite;
}
.accred-stamp i { color: var(--secondary); font-size: 1.5rem; }
.stamp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  opacity: 0.8;
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 80px 0; }
.section-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* ===== SERVICES (NDT) ===== */
.services-section { background: #f8fafc; }

.card-service-premium {
  background: var(--light-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-service-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.2);
}

.service-image-container {
  width: 100%;
  height: 180px;
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card-service-premium:hover .service-image-container img { transform: scale(1.05); }

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-content h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
}
.service-content h3 i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
}

.service-description {
  /* hereda de p, pero se ajusta margen */
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  margin-top: auto;
}
.service-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.4;
}
.service-list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary);
}

/* ===== OTHER SERVICES ===== */
.other-services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#inspeccion-certificacion-wrapper,
#tratamiento-termico-wrapper {
  margin-bottom: 60px;
}
#tratamiento-termico-wrapper { margin-bottom: 0; }

.services-grid-uniform {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.service-card-uniform {
  background: var(--bg-card, #f8fafc);
  padding: 22px 24px 24px 24px;
  border-radius: 16px;
  border-left: 5px solid var(--primary);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.service-card-uniform:hover {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.service-card-uniform h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}
.service-card-uniform h3 i {
  color: var(--primary);
  font-size: 1.15rem;
  width: 26px;
  text-align: center;
}
.service-card-uniform .service-list li {
  font-size: 0.95rem;
}

.client-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eef2ff;
  padding: 16px 24px;
  border-radius: 14px;
  border-left: 5px solid var(--primary);
  margin-top: 28px;
}
.client-tagline i {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
}
.client-tagline span {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.client-tagline strong { color: var(--primary); }

/* ===== CLIENTES DESTACADOS ===== */
.clientes-destacados-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
  justify-items: center;
  margin-top: 30px;
}
.cliente-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 100%;
  border: 1px solid #eef2f6;
}
.cliente-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.cliente-icon {
  font-size: 4.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cliente-nombre {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.cliente-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== POLICIES ===== */
.policy-card {
  background: var(--light-card);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}
.policy-card-safety::before { background: var(--gradient-warm); }
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.policy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-card h3 i { font-size: 1.5rem; }
.policy-card-quality h3 i { color: var(--primary); }
.policy-card-safety h3 i { color: var(--secondary); }

.policy-card p {
  /* hereda de p */
  margin-bottom: 20px;
}

.policy-list {
  list-style: none;
}
.policy-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 6px 0 6px 28px;
  position: relative;
}
.policy-list li i {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.95rem;
}
.policy-card-quality .policy-list li i { color: var(--primary); }
.policy-card-safety .policy-list li i { color: #10b981; }

/* ===== SEDES ===== */
.sedes-section { background: #f8fafc; }

.sede-card {
  background: var(--light-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.sede-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.15);
}
.sede-header {
  padding: 24px;
  background: var(--gradient-dark);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sede-header i {
  font-size: 1.3rem;
  color: #38bdf8;
}
.sede-header h4 {
  color: white;
  font-size: 1.15rem;
  margin: 0;
}
.sede-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.sede-address {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sede-address i {
  color: var(--text-muted);
  margin-top: 3px;
  font-size: 0.85rem;
}
.sede-contact-badge {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: auto;
}
.sede-contact-badge .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.sede-contact-badge .name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.sede-contact-badge .phone {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sede-contact-badge .phone i { font-size: 0.8rem; }

/* ===== CONTACTS ===== */
.contacts-section {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}
.contacts-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.executive-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.executive-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.15);
}
.executive-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.executive-info { flex-grow: 1; }
.executive-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}
.executive-title {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.executive-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.executive-detail-item {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.executive-detail-item i {
  color: var(--primary);
  font-size: 0.9rem;
}
.executive-detail-item a { color: var(--text-main); }
.executive-detail-item a:hover { color: var(--primary); }

.quick-contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  margin-top: 20px;
}
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.quick-contact-item i {
  font-size: 1.2rem;
  color: var(--primary);
}
.quick-contact-item a { color: var(--text-dark); }
.quick-contact-item a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 4px solid var(--primary);
  font-size: 0.9rem;
}
.footer,
.footer h2,
.footer h3,
.footer p,
.footer span,
.footer li,
.footer a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin-bottom: 16px;
}
.footer-logo i {
  font-size: 2rem;
  color: #38bdf8;
}
.footer-logo h2 {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
}
.footer-logo-img {
  display: block;
  width: 270px;
  max-width: 270px;
  height: auto;
  filter: brightness(0) invert(0.75);
}
.footer-desc {
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}
.footer-rif {
  font-size: 0.9rem;
  color: #94a3b8;
}
.footer-title {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}
.footer-contacts-list {
  list-style: none;
}
.footer-contacts-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.6;
  align-items: center;
}
.footer-contacts-list span,
.footer-contacts-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}
.footer-contacts-list i {
  color: var(--primary);
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons { justify-content: center; }
  .hero-card-sencamer {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .nav-menu.active { max-height: 400px; }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-link {
    display: block;
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin: 16px auto;
    display: inline-block;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .about-grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .services-grid-uniform { grid-template-columns: 1fr; gap: 20px; }
  .client-tagline {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
  }
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cliente-item {
    padding: 20px 12px;
    max-width: 100%;
  }
  .cliente-icon { font-size: 3.2rem; }
  .accreditation-banner { padding: 30px 20px; }
  .accred-details h3 { font-size: 1.4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column-reverse; text-align: center; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.3rem; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .clientes-grid { gap: 12px; }
  .cliente-item { padding: 16px 8px; }
  .cliente-icon { font-size: 2.6rem; }
}