/* styles.css - Diseño Premium para TINSA */
:root {
  /* Paleta industrial moderna */
  --azul-oscuro: #0D1B36;
  --azul-empresa: #1C4B8C;
  --azul-destacado: #3A7CB1;
  --gris-oscuro: #252F3D;
  --gris-medio: #5D6B7E;
  --gris-claro: #F0F3F7;
  --blanco: #FFFFFF;
  --degradado-azul: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--gris-oscuro) 100%);
  
  /* Efectos premium */
  --sombra-card: 0 12px 24px -8px rgba(0, 0, 0, 0.12);
  --sombra-hover: 0 16px 32px -8px rgba(0, 0, 0, 0.18);
  --transicion: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset mejorado */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gris-oscuro);
  line-height: 1.6;
  background-color: var(--blanco);
  overflow-x: hidden;
}

/* Tipografía moderna */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  position: relative;
}

/* Layout estructural */
.full-width-container {
  width: 100%;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header minimalista */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(13, 27, 54, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo {
  height: 90px; /* Altura fija mantiene proporción */
  width: auto; /* Ancho automático para mantener relación de aspecto */
  filter: 
    drop-shadow(0 0 10px white) 
    drop-shadow(0 0 10px white) 
    drop-shadow(0 0 10px white);
  transition: all 0.3s ease;
  z-index: 1001;
  object-fit: contain; /* Asegura que la imagen no se deforme */
}

/* Navegación premium */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: var(--azul-destacado);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul-destacado);
  transition: var(--transicion);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1002;
  padding: 0.5rem;
}


.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

@media (max-width: 992px) {
    .logo {
        width: 80px; /* Reduce tamaño en tablets */
        filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
      
      /* Asegurar visibilidad */
      -webkit-filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    }
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
  .header-container {
    justify-content: flex-end; /* Alinea elementos a la derecha */
  }
  
  /* Logo centrado */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
      
      /* Asegurar visibilidad */
      -webkit-filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  }
  
  /* Botón hamburguesa visible */
  .menu-toggle {
    display: block;
    order: 2;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 0.5rem;
    z-index: 1002;
  }
  
  /* Menú principal OCULTO por defecto */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(13, 27, 54, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.3s ease-in-out;
    padding-top: 80px;
    margin: 0;
    z-index: 1000;
  }
  
  /* Menú visible cuando tiene clase active */
  .nav-menu.active {
    display: flex;
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1.5rem 0;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  /* Asegurar que el nav ocupe todo el ancho */
  .nav {
    width: 100%;
  }
}

/* Versión móvil pequeña (≤ 576px) */
@media (max-width: 576px) {
  .header {
    padding: 0.5rem 0; /* Padding más reducido */
    height: 80px;
  }

  /* Logo perfectamente centrado */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 65px; /* Tamaño más pequeño para móviles pequeños */
    width: auto;
    object-fit: contain;
    top: 50%;
    filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
      
      /* Asegurar visibilidad */
      -webkit-filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  }

  /* Botón hamburguesa más compacto */
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    padding: 0.3rem;
    margin-left: auto; /* Lo empuja a la derecha */
    z-index: 1002;
    background: none;
    border: none;
    color: white;
  }

  /* Menú oculto por defecto */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%; /* Ocupa más ancho en pantallas pequeñas */
    height: 100vh;
    background-color: rgba(13, 27, 54, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 70px;
    margin: 0;
    transition: right 0.25s ease-out;
    z-index: 1001;
  }

  /* Menú visible */
  .nav-menu.active {
    display: flex;
    right: 0;
  }

  /* Elementos del menú */
  .nav-link {
    font-size: 1.1rem; /* Tamaño de fuente más pequeño */
    padding: 1.25rem 0; /* Espaciado ajustado */
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Asegurar contenedor nav ocupa todo el ancho */
  .nav {
    width: 100%;
  }
}

/* Hero section impactante */
.hero-section {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: var(--degradado-azul);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
  transform: scaleX(-1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--blanco);
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 9.8rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* Botones de diseño industrial */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transicion);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--azul-destacado);
  color: var(--blanco);
  box-shadow: 0 4px 12px rgba(58, 124, 177, 0.3);
}

.btn-primary:hover {
  background-color: #2F6A96;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 124, 177, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--azul-destacado);
  background: rgba(58, 124, 177, 0.1);
}

/* Sección de servicios - Tarjetas modernas */
.services-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--azul-destacado);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--blanco);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: var(--transicion);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
}

.service-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-card-title {
  color: var(--azul-oscuro);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card-text {
  color: var(--gris-medio);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.service-feature-icon {
  color: var(--azul-destacado);
  margin-right: 0.8rem;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.projects-section {
    padding: 5rem 0;
    background-color: var(--gris-claro);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra-card);
    transition: var(--transicion);
    aspect-ratio: 4/3;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 54, 0.45);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 0.9;
}

.project-info p {
    color: rgba(255, 255, 255, 1.9);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Responsividad */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-info p {
        font-size: 0.8rem;
    }
}

/* Sección "Sobre Nosotros" */
.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  box-shadow: var(--sombra-card);
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-img img {
  width: 100%;
  height: 95vh;
  display: block;
}

.about-content {
  padding-left: 2rem;
}

.about-badge {
  display: inline-block;
  background-color: rgba(58, 124, 177, 0.1);
  color: var(--azul-destacado);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Sección de Clientes */
.clients-section {
    padding: 4rem 0;
    background-color: var(--gris-claro);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--azul-oscuro);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gris-oscuro);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .clients-logos {
        gap: 2rem;
    }
    
    .client-logo {
        min-width: 150px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .clients-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .client-logo {
        min-width: 180px;
    }
}

/* Sección de contacto */
.contact-section {
  padding: 6rem 0;
  background-color: var(--azul-oscuro);
  color: var(--blanco);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--blanco);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--sombra-card);
}

.form-title {
  color: var(--azul-oscuro);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gris-oscuro);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  transition: var(--transicion);
  background-color: var(--gris-claro);
}

.form-control:focus {
  outline: none;
  border-color: var(--azul-destacado);
  box-shadow: 0 0 0 3px rgba(58, 124, 177, 0.2);
}

.contact-info {
  padding: 1rem 0;
}

/* Estilo para los enlaces de WhatsApp */
.whatsapp-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366; /* Color verde de WhatsApp */
}

.btn-primary i {
    margin-right: 8px;
}

/* Estilo para el ícono de WhatsApp en la info */
.fa-whatsapp {
    color: #25D366;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  margin-right: 1rem;
  color: var(--azul-destacado);
  font-size: 1.4rem;
  margin-top: 0.3rem;
}

/* Footer premium */
.footer {
  background-color: var(--gris-oscuro);
  color: var(--blanco);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 90px; /* Altura fija mantiene proporción */
  width: auto; /* Ancho automático para mantener relación de aspecto */
  filter: 
    drop-shadow(0 0 10px white) 
    drop-shadow(0 0 10px white) 
    drop-shadow(0 0 10px white);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.footer-text {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  color: var(--blanco);
  font-size: 1.3rem;
  transition: var(--transicion);
}

.social-link:hover {
  color: var(--azul-destacado);
}

.footer-links-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: var(--blanco);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transicion);
}

.footer-link a:hover {
  opacity: 1;
  color: var(--azul-destacado);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-container,
  .contact-container {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: 700px;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    padding-left: 0;
    order: 2;
  }
  
  .about-img {
    order: 1;
  }

  .about-section {
    padding: 3rem 0;
    position: relative;
  }
  
  .about-img img {
    width: 100%;
    height: 35vh;
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .hero-section {
    min-height: 600px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 3rem 0;
    position: relative;
  }
  
  .about-img img {
    width: 100%;
    height: 35vh;
    display: block;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    gap: 1rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card {
    margin: 0 1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  .about-section {
    padding: 3rem 0;
    position: relative;
  }
  
  .about-img img {
    width: 100%;
    height: 35vh;
    display: block;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

/* Estructura del panal */
.honeycomb-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  transform: translateY(50px);
}

.honeycomb-cell {
  flex: 0 1 500px;
  max-width: 400px;
  height: 385px;
  margin: 15px 7.5px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: var(--transicion);
}

.honeycomb-cell-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blanco);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--sombra-card);
}

.honeycomb-cell-content {
  width: 90%;
  height: 90%;
  background: var(--gris-claro);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: var(--transicion);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Efectos hover */
.honeycomb-cell:hover {
  transform: scale(1.05);
  z-index: 1;
}

.honeycomb-cell:hover .honeycomb-cell-inner {
  background: linear-gradient(135deg, var(--azul-empresa) 0%, var(--azul-destacado) 100%);
}

.honeycomb-cell:hover .honeycomb-cell-content {
  background: rgba(255, 255, 255, 0.95);
}

.honeycomb-cell:hover h3,
.honeycomb-cell:hover .honeycomb-icon {
  color: var(--azul-empresa);
}

/* Elementos internos */
.honeycomb-icon {
  font-size: 2.5rem;
  color: var(--azul-destacado);
  margin-bottom: 1rem;
  transition: var(--transicion);
}

.honeycomb-cell h3 {
  color: var(--gris-oscuro);
  margin-bottom: 1rem;
  transition: var(--transicion);
}

.honeycomb-cell ul {
  list-style: none;
  padding: 0;
}

.honeycomb-cell li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.honeycomb-cell li::before {
  content: "•";
  color: var(--azul-destacado);
  position: absolute;
  left: 0;
}

/* Hexágono central */
.honeycomb-center {
  background: var(--azul-empresa) !important;
  order: -1;
}

.honeycomb-center .honeycomb-cell-inner {
  background: transparent !important;
}

.honeycomb-center .honeycomb-cell-content {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--blanco);
}

.honeycomb-logo {
  width: 60px;
  margin-bottom: 1rem;
}

.honeycomb-details {
  height: calc(100% - 60px);
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--azul-destacado) transparent;
}

.honeycomb-details::-webkit-scrollbar {
  width: 4px;
}

.honeycomb-details::-webkit-scrollbar-thumb {
  background-color: var(--azul-destacado);
  border-radius: 2px;
}

.honeycomb-details ul {
  text-align: left;
  margin-bottom: 0.5rem;
}

.honeycomb-details li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 1.2rem;
}

.honeycomb-details li strong {
  color: var(--azul-empresa);
}


.honeycomb-processes {
  font-size: 0.85rem;
  color: var(--gris-medio);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(58, 124, 177, 0.3);
}

/* Sección complementaria */
.services-complement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.complement-card {
  background: var(--blanco);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--sombra-card);
  border-top: 3px solid var(--azul-destacado);
}

.complement-card h4 {
  color: var(--azul-empresa);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.complement-card i {
  margin-right: 0.5rem;
  color: var(--azul-destacado);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .honeycomb-details li {
    font-size: 0.8rem;
  }
  
  .services-complement {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  
  .honeycomb-center {
    order: 0;
  }
}

@media (max-width: 600px) {
  
  .honeycomb-icon {
    font-size: 1.8rem;
  }
  
  .honeycomb-cell h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .honeycomb-container {
    flex-direction: column;
    align-items: center;
  }
}