/* =========================================================
   NEOTROPIC — Iconografía / Visual cues
   ========================================================= */

/* Iconos generales */
.icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.icon:hover { opacity: 1; }

/* Variante más pequeña para listas o badges */
.icon-sm {
  width: 28px;
  height: 28px;
  margin: 0 8px 0 0;
  vertical-align: middle;
  opacity: 0.85;
}

/* Contenedor circular (para secciones “Por qué elegir Neotropic”) */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.icon-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Color base (respetando paleta institucional) */
.icon path, .icon svg {
  fill: #2b538d; /* azul corporativo Neotropic */
}

/* Animación sutil */
.icon-circle:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}
