/* CSS Document */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
  --orion-dark: #001f3f;
  --orion-blue: #0056b3;
  --maiten-gold: #b39359; /* Un color sofisticado para la alianza */
}
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}
/* Navbar estilizada */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}
.btn-primary {
  background-color: #0056b3;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
}
/* Hero Section */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top right, #f8f9ff, #ffffff);
}
.hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -1px;
}
/* Bento Grid para Módulos */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.bento-item {
  background: #fdfdfd;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.bento-item.featured {
  grid-column: span 2;
  background: #001f3f;
  color: white;
}
/* Pricing Cards */
.price-card {
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
  height: 100%;
}
.price-card.popular {
  border: 2px solid #0056b3;
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0056b3;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
}
/* Estilos actualizados para el Hero con Imagen */
.hero {
  position: relative;
  min-height: 80vh; /* Ocupa el 80% del alto de pantalla */
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.1) 100%), url('../img/hero_orion.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.hero-content {
  max-width: 600px; /* Limitamos el ancho para que no tape elementos clave de la imagen */
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Tamaño fluido según pantalla */
  letter-spacing: -1px;
  line-height: 1.1;
  color: #001f3f;
}
/* Ajuste para móviles: en pantallas chicas el degradado es más oscuro para legibilidad */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.7) 100%), url('../img/hero_orion.webp');
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
}
.services-header {
  padding: 80px 0;
  background: #001f3f;
  color: white;
  text-align: center;
}
/* Bento Box para Servicios */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #0056b3;
}
/* Estilo para el Servicio de Consultoría (Destacado) */
.consultancy-section {
  background: #f8f9fa;
  border-radius: 30px;
  padding: 60px;
  margin-top: 50px;
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #e7f0ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #0056b3;
}
/* Estilo de Tarjetas de Sistemas OaaS */
.card-oaas {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.card-oaas:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.badge-oaas {
  background: #e7f0ff;
  color: var(--orion-blue);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
/* Sección Consultoría SEO - Estilo Bento Light */
.consultancy-grid .box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s;
}
.consultancy-grid .box:hover {
  border-color: var(--orion-blue);
  background: #fdfdfd;
}
.consultancy-grid .title a {
  color: var(--orion-dark);
  text-decoration: none;
  font-weight: 700;
}
/* Sección Maitén de Boaria - Diseño Premium */
.maiten-highlight {
  background: linear-gradient(135deg, #001f3f 0%, #001122 100%);
  color: white;
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.maiten-highlight::before {
  content: 'IT';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 200px;
  font-weight: 900;
  opacity: 0.03;
  color: white;
}
.maiten-list li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.maiten-list li::before {
  content: '✓';
  margin-right: 12px;
  color: var(--maiten-gold);
  font-weight: bold;
}
/* Footer de sección */
.section-header h3 {
  font-weight: 800;
  color: var(--orion-dark);
  position: relative;
  padding-bottom: 15px;
}
.section-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orion-blue);
  border-radius: 2px;
}
/* Estilos específicos para la sección Hero de Sistemas y Servicios */
.services-hero {
  position: relative;
  min-height: 80vh; /* Ocupa el 80% del alto de la pantalla */
  display: flex;
  align-items: center;
  /* Reemplaza 'orion_hero_services.png' con la ruta de tu imagen generada */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.25) 100%), url('../img/orion_hero_services.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Opcional: efecto Parallax sutil */
  padding: 60px 0;
}
.services-hero h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.2rem); /* Tamaño fluido y más grande */
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--orion-dark);
}
.services-hero .lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem); /* Subtítulo fluido */
  color: #444; /* Un gris ligeramente más oscuro para legibilidad */
}
/* Adaptabilidad para móviles */
@media (max-width: 768px) {
  .services-hero {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.80) 70%, rgba(255, 255, 255, 0.25) 100%), url('../img/orion_hero_services.webp');
    text-align: center;
    min-height: 60vh;
  }
  .services-hero-content {
    margin: 0 auto;
  }
}



