* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(290deg, #f3ca78 0%, #7ab0e7 100%);
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Restore original palette */
body {
  background-color: #f8f5ef;
}
header {
  background-color: #0a263c;
}
nav a {
  color: white;
}
.activo {
  background-color: #ac8231 !important;
  color: white !important;
}
.hero h1,
.page-header h1,
.contacto-info h1 {
  color: #0a263c;
}
.page-header {
  border-bottom-color: #ac8231;
}
.content-section h2 {
  border-left-color: #ac8231;
}
.info-card {
  background: linear-gradient(135deg, #0a253b 10%, #004080 100%);
}
.info-card h3 {
  color: #ac8231;
}
.btn {
  background-color: #ac8231;
  color: #0a253b;
}
.btn:hover {
  background-color: #c19e2b;
}
.btn-submit {
  background: linear-gradient(135deg, #ac8231 0%, #c19e2b 100%);
  color: #0a253b;
}
.contacto-info {
  box-shadow: 0 6px 26px rgba(0, 43, 92, 0.06);
}
.info-item i {
  background: rgba(170, 129, 48, 0.9);
  color: #ac8231;
}

/* ===================================
   HEADER FIJO
   =================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0a263c;
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  height: 50px;
  margin-right: 50px;
  margin-left: 0px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #0a263c;
}

/* Enlace activo en el menú */
.activo {
  background-color: #ac8231 !important;
  color: white !important;
}

/* ===================================
   ESPACIADO GENERAL
   =================================== */
main {
  margin-top: 95px;
}

/* ===================================
   PÁGINA PRINCIPAL (INDEX.HTML)
   =================================== */
.hero {
  text-align: center;
  padding: 10px 20px;
  background-color: #f8f5ef;
  animation: fadeIn 1s ease-in;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
}

.hero h1 {
  font-size: 32px;
  color: #0a263c;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #444;
}

/* ===================================
   PÁGINAS SECUNDARIAS
   =================================== */
.page-content {
  max-width: 1200px;
  margin: 140px auto 40px;
  padding: 40px;
  background: linear-gradient(145deg, #fffbf2 50%, #c4e1ff 250%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1s ease-in;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #ac8231;
}

.page-header h1 {
  font-size: 36px;
  color: #0a253b;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 20px;
  color: #666;
}

.content-section {
  line-height: 1.8;
}

.content-section h2 {
  color: #0a253b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 28px;
  border-left: 4px solid #ac8231;
  padding-left: 15px;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 18px;
  color: #444;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.content-section ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 18px;
  color: #444;
}

.content-section ul li:before {
  content: "▸";
  color: #ac8231;
  position: absolute;
  left: 0;
  font-size: 20px;
  font-weight: bold;
}

/* ===================================
   BOTONES GENERALES
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ac8231;
  color: #0a253b;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  margin-top: 20px;
}

.btn:hover {
  background-color: #c19e2b;
  transform: scale(1.05);
}

/* ===================================
   PÁGINA DE CONTACTO
   =================================== */
.contacto-page {
  margin-top: 120px;
  padding: 40px 20px;
  background: linear-gradient(290deg, #f3ca78 0%, #7ab0e7 100%);
  min-height: calc(100vh - 200px);
}

.contacto-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  animation: fadeIn 0.8s ease-in;
}

/* SECCIÓN DE INFORMACIÓN */
.contacto-info {
  background: linear-gradient(100deg, #fffbf2 10%, #c4e1ff 250%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(2, 38, 64, 0.12);
  border: 1px solid rgba(10, 37, 60, 0.06);
  position: relative;
  overflow: visible;
}

/* Accent band on the left for visual weight */
.contacto-info::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ac8231 0%, #c19e2b 100%);
  box-shadow: 0 6px 18px rgba(172, 130, 49, 0.12);
}

.contacto-info h1 {
  font-size: 36px;
  color: #0a253b;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contacto-info .subtitulo {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-cards {
  display: grid;
  gap: 20px;
}

/* Estilo moderno para tarjetas de información */
.info-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  padding: 22px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.28s ease, background 0.28s ease;
  cursor: default;
  border: 1px solid rgba(10, 37, 60, 0.04);
  will-change: transform, box-shadow;
  animation: fadeInUp 420ms ease both;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(2, 38, 64, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.info-card .icon {
  font-size: 34px;
  background: linear-gradient(135deg, #0a253b 0%, #004080 100%);
  color: white;
  padding: 14px;
  border-radius: 14px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.info-card:hover .icon {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(10, 37, 60, 0.12);
}

.info-card h3 {
  color: #0a253b;
  font-size: 18px;
  margin-bottom: 6px;
}
.info-card p {
  color: #444;
  font-size: 15px;
  margin: 0;
}

/* Links and small UI touches */
.info-table td a {
  color: #0a253b;
  text-decoration: none;
  transition: color 180ms ease;
}
.info-table td a:hover {
  color: #ac8231;
  text-decoration: underline;
}

/* Fade in up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Transformar tabla de info en bloques en pantallas pequeñas */
.info-table {
  display: block;
}
.info-table thead {
  display: none;
}
.info-table tbody {
  display: grid;
  gap: 12px;
}
.info-table tr {
  display: grid;
  grid-template-columns: 1fr;
  background: transparent;
  border-radius: 10px;
  padding: 0;
}
.info-table td {
  padding: 0;
  border: 0;
}
.info-table td > a {
  color: #0a253b;
  text-decoration: none;
  font-weight: 700;
}

/* ESTILOS ADICIONALES PARA FORMULARIO DE CONTACTO */
.contacto-form {
  background: linear-gradient(100deg, #fffbf2 10%, #c4e1ff 250%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 43, 92, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacto-form .form-header h2 {
  font-size: 20px;
  color: #0a253b;
  margin-bottom: 12px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a253b;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #111827;
}
/* Estilo para la tabla completa */
.info-table {
  border-collapse: separate; /* Permite que border-radius funcione en las esquinas */
  border-spacing: 0; /* Elimina el espacio entre las celdas */
  border: 0px solid #f1f1f1; /* Borde para la tabla principal */
  border-radius: 10px; /* **APLICA el redondeo de esquinas** */
  overflow: hidden; /* **Oculta el contenido que sobresale** del borde redondeado */
}

/* Estilo para las celdas de encabezado y datos */
.info-table th,
.info-table td {
  text-align: left;
  padding: 8px 6px;
  border-radius: 10px; /* **APLICA el redondeo de esquinas** */
  border-bottom: 0px solid #f1f1f1;
  background-color: rgba(170, 129, 48, 0.85);
}

/* Si quieres que el borde inferior de la última fila sea invisible */
.info-table tr:last-child td {
  border-bottom: none;
}
.info-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #0a253c;
}
.info-item i {
  color: #fff;
  background: rgba(170, 129, 48, 0.9);
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicio-icon img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 12px;
}

/* Variantes de filtro para pruebas rápidas */
.filter-soft {
  filter: grayscale(0.8) brightness(1.05) sepia(0.3) saturate(1.6)
    hue-rotate(-8deg) contrast(1);
}
.filter-strong {
  filter: grayscale(1) brightness(0.85) sepia(1) saturate(8) hue-rotate(-6deg)
    contrast(1.05);
}
.filter-vintage {
  filter: sepia(0.6) contrast(0.95) saturate(0.9) hue-rotate(-12deg)
    brightness(0.98);
}
.filter-high-contrast {
  filter: grayscale(1) contrast(1.3) brightness(0.9) saturate(1.4);
}

/* Estilos para alertas JS y hover */
.app-alert-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 11990;
}

.app-alert {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 92%);
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  gap: 18px;
  align-items: center;
  z-index: 12000;
  font-weight: 700;
  font-size: 18px;
}
.app-alert .app-alert-icon {
  font-size: 28px;
}
.app-alert .app-alert-body {
  color: #111;
  font-size: 18px;
  line-height: 1.4;
}
.app-alert .app-alert-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 8px;
  margin-left: auto;
}
.app-alert-info {
  border-left: 6px solid #0a253c;
}
.app-alert-error {
  border-left: 6px solid #d9534f;
}
.app-alert-success {
  border-left: 6px solid #28a745;
}
.hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* (rest of original CSS continues unchanged below) */
.form-group input,
.form-group textarea,
.form-group select {
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ac8231;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23002b5c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* BOTÓN DE ENVÍO */
.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ac8231 0%, #c19e2b 100%);
  color: #0a253b;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #c19e2b 0%, #ac8231 100%);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 20px;
}

/* MENSAJE DE RESPUESTA */
#mensaje {
  margin-top: 25px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  display: none;
  animation: slideDown 0.4s ease;
}

#mensaje.show {
  display: block;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  text-align: center;
  padding: 25px;
  background-color: #0a253b;
  color: white;
  font-size: 15px;
  margin-top: 60px;
}

/* ===================================
   ANIMACIONES
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .contacto-container {
    grid-template-columns: 1fr;
  }

  .contacto-info {
    order: 2;
  }

  .contacto-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  /* Header responsive */
  header {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .logo {
    height: 50px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav a {
    font-size: 16px;
  }

  /* Espaciado main responsive */
  main {
    margin-top: 250px;
  }

  .page-content {
    margin-top: 270px;
    padding: 20px;
  }

  /* Hero responsive */
  .hero h1,
  .page-header h1 {
    font-size: 24px;
  }

  .hero p,
  .page-header p {
    font-size: 16px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section p,
  .content-section ul li {
    font-size: 16px;
    
  }

  /* Botones responsive */
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Contacto responsive */
  .contacto-page {
    margin-top: 250px;
    padding: 20px 15px;
  }

  .contacto-info,
  .contacto-form {
    padding: 25px 20px;
  }

  .contacto-info h1 {
    font-size: 28px;
  }

  .form-header h2 {
    font-size: 26px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-card .icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
/* ===================================
   ESTILOS ADICIONALES PARA INDEX.HTML
   =================================== */

/* Sección de Servicios */
.servicios-home {
  padding: 80px 20px;
  background-color: #f5f7fa;
}

.servicios-container {
  max-width: 1400px;
  margin: 0 auto;
}

.servicios-container h2 {
  text-align: center;
  font-size: 40px;
  color: #0a253b;
  margin-bottom: 15px;
}

.servicios-intro {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 50px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servicio-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ac8231;
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 43, 92, 0.15);
}

.servicio-card-especial {
  background: linear-gradient(135deg, #0a253b 0%, #004080 100%);
  color: white;
  border-top: 4px solid #ac8231;
}

.servicio-card-especial h3,
.servicio-card-especial p,
.servicio-card-especial .servicio-lista li {
  color: white;
}

.servicio-card-especial .servicio-link {
  color: #ac8231;
  border-color: #ac8231;
}

.servicio-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.servicio-card h3 {
  font-size: 24px;
  color: #0a253b;
  margin-bottom: 15px;
}

.servicio-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.servicio-lista {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.servicio-lista li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  color: #444;
}

.servicio-lista li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ac8231;
  font-weight: bold;
  font-size: 18px;
}

.servicio-link {
  display: inline-block;
  margin-top: 15px;
  color: #0a253b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.servicio-link:hover {
  border-bottom-color: #ac8231;
}

/* Sección Por Qué Elegirnos */
.por-que-elegirnos {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.por-que-elegirnos h2 {
  font-size: 40px;
  color: #0a253b;
  margin-bottom: 60px;
}

.razones-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.razon-item {
  padding: 30px 25px;
  text-align: left;
  position: relative;
}

.razon-numero {
  font-size: 60px;
  font-weight: bold;
  color: #ac8231;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 0;
}

.razon-item h3 {
  font-size: 22px;
  color: #0a253b;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.razon-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Sección de Industrias */
.industrias-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #e1ad45 0%, #04305d 50%);
  color: white;
  text-align: center;
}

.industrias-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: white;
}

.industrias-intro {
  font-size: 20px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
}

/* Mostrar items en una sola línea en escritorio; reducir tamaño de iconos y recuadros */
.industrias-grid {
  max-width: 90%;
  padding-top: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* espacio reducido */
  flex-wrap: auto; /* forzar una sola línea */
  overflow-x: auto; /* permitir scroll horizontal si es necesario */
  padding-bottom: 15px; /* espacio para scroll */
  scrollbar-color: #ac8231 rgba(255, 255, 255, 0.1);
}

.industria-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 15px 20px; /* recuadro más pequeño */
  border-radius: 8px;
  transition: transform 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px; /* ancho fijo para cajas iguales */
  height: 150px; /* alto fijo para cajas iguales */
  box-sizing: border-box;
}

.industria-item:hover {
  background: #ac8231;
  transform: translateY(-10px);
}

.industria-icono {
  font-size: 50px; /* reducido para caber en una sola línea */
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.industria-item h4 {
  font-size: 22px auto;
  color: white;
  font-weight: 600;
  margin: 6px 0 0 0;
  text-align: center;
  word-break: break-word;
}

/* Responsive: en pantallas pequeñas permitir wrapping y tamaños más grandes para legibilidad */
@media (max-width: 768px) {
  .industrias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    overflow-x: visible;
  }

  .industria-item {
    width: auto;
    height: auto;
    padding: 12px 14px;
  }

  .industria-icono {
    font-size: 28px;
  }
  .industrias-section h2 {
    font-size: 28px;
  }
  .industrias-intro {
    font-size: 16px;
  }
}

/* Sección CTA */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ac8231 0%, #c19e2b 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  color: #0a253b;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-content p {
  font-size: 20px;
  color: #0a253b;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: rgb(0, 26, 58, 0.85);
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #001a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 43, 92, 0.3);
}

.btn-secondary {
  background-color: rgba(37, 211, 102, 0.4);
  color: #0a253b;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #0a253b;
}

.btn-secondary:hover {
  background-color: #0a253b;
  color: white;
  transform: translateY(-2px);
}

/* Footer Mejorado */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 40px 20px 20px;
}

.footer-section h4 {
  color: #ac8231;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ac8231;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
}

/* Responsive para Index */
@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicios-container h2,
  .por-que-elegirnos h2,
  .industrias-section h2 {
    font-size: 28px;
  }

  .servicios-intro,
  .industrias-intro,
  .cta-content p {
    font-size: 16px;
  }

  .razones-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industrias-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
